1 /* Common target dependent code for GDB on ARM systems.
3 Copyright (C) 1988-2022 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"
42 #include "dwarf2/frame.h"
44 #include "prologue-value.h"
46 #include "target-descriptions.h"
47 #include "user-regs.h"
48 #include "observable.h"
49 #include "count-one-bits.h"
52 #include "arch/arm-get-next-pcs.h"
54 #include "gdb/sim-arm.h"
57 #include "coff/internal.h"
61 #include "record-full.h"
67 #include "gdbsupport/selftest.h"
70 static bool arm_debug
;
72 /* Print an "arm" debug statement. */
74 #define arm_debug_printf(fmt, ...) \
75 debug_prefixed_printf_cond (arm_debug, "arm", fmt, ##__VA_ARGS__)
77 /* Macros for setting and testing a bit in a minimal symbol that marks
78 it as Thumb function. The MSB of the minimal symbol's "info" field
79 is used for this purpose.
81 MSYMBOL_SET_SPECIAL Actually sets the "special" bit.
82 MSYMBOL_IS_SPECIAL Tests the "special" bit in a minimal symbol. */
84 #define MSYMBOL_SET_SPECIAL(msym) \
85 (msym)->set_target_flag_1 (true)
87 #define MSYMBOL_IS_SPECIAL(msym) \
88 (msym)->target_flag_1 ()
90 struct arm_mapping_symbol
95 bool operator< (const arm_mapping_symbol
&other
) const
96 { return this->value
< other
.value
; }
99 typedef std::vector
<arm_mapping_symbol
> arm_mapping_symbol_vec
;
103 explicit arm_per_bfd (size_t num_sections
)
104 : section_maps (new arm_mapping_symbol_vec
[num_sections
]),
105 section_maps_sorted (new bool[num_sections
] ())
108 DISABLE_COPY_AND_ASSIGN (arm_per_bfd
);
110 /* Information about mapping symbols ($a, $d, $t) in the objfile.
112 The format is an array of vectors of arm_mapping_symbols, there is one
113 vector for each section of the objfile (the array is index by BFD section
116 For each section, the vector of arm_mapping_symbol is sorted by
117 symbol value (address). */
118 std::unique_ptr
<arm_mapping_symbol_vec
[]> section_maps
;
120 /* For each corresponding element of section_maps above, is this vector
122 std::unique_ptr
<bool[]> section_maps_sorted
;
125 /* Per-bfd data used for mapping symbols. */
126 static bfd_key
<arm_per_bfd
> arm_bfd_data_key
;
128 /* The list of available "set arm ..." and "show arm ..." commands. */
129 static struct cmd_list_element
*setarmcmdlist
= NULL
;
130 static struct cmd_list_element
*showarmcmdlist
= NULL
;
132 /* The type of floating-point to use. Keep this in sync with enum
133 arm_float_model, and the help string in _initialize_arm_tdep. */
134 static const char *const fp_model_strings
[] =
144 /* A variable that can be configured by the user. */
145 static enum arm_float_model arm_fp_model
= ARM_FLOAT_AUTO
;
146 static const char *current_fp_model
= "auto";
148 /* The ABI to use. Keep this in sync with arm_abi_kind. */
149 static const char *const arm_abi_strings
[] =
157 /* A variable that can be configured by the user. */
158 static enum arm_abi_kind arm_abi_global
= ARM_ABI_AUTO
;
159 static const char *arm_abi_string
= "auto";
161 /* The execution mode to assume. */
162 static const char *const arm_mode_strings
[] =
170 static const char *arm_fallback_mode_string
= "auto";
171 static const char *arm_force_mode_string
= "auto";
173 /* The standard register names, and all the valid aliases for them. Note
174 that `fp', `sp' and `pc' are not added in this alias list, because they
175 have been added as builtin user registers in
176 std-regs.c:_initialize_frame_reg. */
181 } arm_register_aliases
[] = {
182 /* Basic register numbers. */
199 /* Synonyms (argument and variable registers). */
212 /* Other platform-specific names for r9. */
218 /* Names used by GCC (not listed in the ARM EABI). */
220 /* A special name from the older ATPCS. */
224 static const char *const arm_register_names
[] =
225 {"r0", "r1", "r2", "r3", /* 0 1 2 3 */
226 "r4", "r5", "r6", "r7", /* 4 5 6 7 */
227 "r8", "r9", "r10", "r11", /* 8 9 10 11 */
228 "r12", "sp", "lr", "pc", /* 12 13 14 15 */
229 "f0", "f1", "f2", "f3", /* 16 17 18 19 */
230 "f4", "f5", "f6", "f7", /* 20 21 22 23 */
231 "fps", "cpsr" }; /* 24 25 */
233 /* Holds the current set of options to be passed to the disassembler. */
234 static char *arm_disassembler_options
;
236 /* Valid register name styles. */
237 static const char **valid_disassembly_styles
;
239 /* Disassembly style to use. Default to "std" register names. */
240 static const char *disassembly_style
;
242 /* All possible arm target descriptors. */
243 static struct target_desc
*tdesc_arm_list
[ARM_FP_TYPE_INVALID
][2];
244 static struct target_desc
*tdesc_arm_mprofile_list
[ARM_M_TYPE_INVALID
];
246 /* This is used to keep the bfd arch_info in sync with the disassembly
248 static void set_disassembly_style_sfunc (const char *, int,
249 struct cmd_list_element
*);
250 static void show_disassembly_style_sfunc (struct ui_file
*, int,
251 struct cmd_list_element
*,
254 static enum register_status
arm_neon_quad_read (struct gdbarch
*gdbarch
,
255 readable_regcache
*regcache
,
256 int regnum
, gdb_byte
*buf
);
257 static void arm_neon_quad_write (struct gdbarch
*gdbarch
,
258 struct regcache
*regcache
,
259 int regnum
, const gdb_byte
*buf
);
262 arm_get_next_pcs_syscall_next_pc (struct arm_get_next_pcs
*self
);
265 /* get_next_pcs operations. */
266 static struct arm_get_next_pcs_ops arm_get_next_pcs_ops
= {
267 arm_get_next_pcs_read_memory_unsigned_integer
,
268 arm_get_next_pcs_syscall_next_pc
,
269 arm_get_next_pcs_addr_bits_remove
,
270 arm_get_next_pcs_is_thumb
,
274 struct arm_prologue_cache
276 /* The stack pointer at the time this frame was created; i.e. the
277 caller's stack pointer when this function was called. It is used
278 to identify this frame. */
281 /* Additional stack pointers used by M-profile with Security extension. */
282 /* Use msp_s / psp_s to hold the values of msp / psp when there is
283 no Security extension. */
289 /* Active stack pointer. */
290 int active_sp_regnum
;
291 int active_msp_regnum
;
292 int active_psp_regnum
;
294 /* The frame base for this frame is just prev_sp - frame size.
295 FRAMESIZE is the distance from the frame pointer to the
296 initial stack pointer. */
300 /* The register used to hold the frame pointer for this frame. */
303 /* True if the return address is signed, false otherwise. */
304 gdb::optional
<bool> ra_signed_state
;
306 /* Saved register offsets. */
307 trad_frame_saved_reg
*saved_regs
;
309 arm_prologue_cache() = default;
313 /* Reconstruct T bit in program status register from LR value. */
315 static inline ULONGEST
316 reconstruct_t_bit(struct gdbarch
*gdbarch
, CORE_ADDR lr
, ULONGEST psr
)
318 ULONGEST t_bit
= arm_psr_thumb_bit (gdbarch
);
319 if (IS_THUMB_ADDR (lr
))
327 /* Initialize stack pointers, and flag the active one. */
330 arm_cache_init_sp (int regnum
, CORE_ADDR
* member
,
331 struct arm_prologue_cache
*cache
,
332 struct frame_info
*frame
)
334 CORE_ADDR val
= get_frame_register_unsigned (frame
, regnum
);
335 if (val
== cache
->sp
)
336 cache
->active_sp_regnum
= regnum
;
341 /* Initialize CACHE fields for which zero is not adequate (CACHE is
342 expected to have been ZALLOC'ed before calling this function). */
345 arm_cache_init (struct arm_prologue_cache
*cache
, struct gdbarch
*gdbarch
)
347 cache
->active_sp_regnum
= ARM_SP_REGNUM
;
349 cache
->saved_regs
= trad_frame_alloc_saved_regs (gdbarch
);
352 /* Similar to the previous function, but extracts GDBARCH from FRAME. */
355 arm_cache_init (struct arm_prologue_cache
*cache
, struct frame_info
*frame
)
357 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
358 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
360 arm_cache_init (cache
, gdbarch
);
361 cache
->sp
= get_frame_register_unsigned (frame
, ARM_SP_REGNUM
);
363 if (tdep
->have_sec_ext
)
365 CORE_ADDR msp_val
= get_frame_register_unsigned (frame
, tdep
->m_profile_msp_regnum
);
366 CORE_ADDR psp_val
= get_frame_register_unsigned (frame
, tdep
->m_profile_psp_regnum
);
368 arm_cache_init_sp (tdep
->m_profile_msp_s_regnum
, &cache
->msp_s
, cache
, frame
);
369 arm_cache_init_sp (tdep
->m_profile_psp_s_regnum
, &cache
->psp_s
, cache
, frame
);
370 arm_cache_init_sp (tdep
->m_profile_msp_ns_regnum
, &cache
->msp_ns
, cache
, frame
);
371 arm_cache_init_sp (tdep
->m_profile_psp_ns_regnum
, &cache
->psp_ns
, cache
, frame
);
373 if (msp_val
== cache
->msp_s
)
374 cache
->active_msp_regnum
= tdep
->m_profile_msp_s_regnum
;
375 else if (msp_val
== cache
->msp_ns
)
376 cache
->active_msp_regnum
= tdep
->m_profile_msp_ns_regnum
;
377 if (psp_val
== cache
->psp_s
)
378 cache
->active_psp_regnum
= tdep
->m_profile_psp_s_regnum
;
379 else if (psp_val
== cache
->psp_ns
)
380 cache
->active_psp_regnum
= tdep
->m_profile_psp_ns_regnum
;
382 /* Use MSP_S as default stack pointer. */
383 if (cache
->active_sp_regnum
== ARM_SP_REGNUM
)
384 cache
->active_sp_regnum
= tdep
->m_profile_msp_s_regnum
;
388 arm_cache_init_sp (tdep
->m_profile_msp_regnum
, &cache
->msp_s
, cache
, frame
);
389 arm_cache_init_sp (tdep
->m_profile_psp_regnum
, &cache
->psp_s
, cache
, frame
);
392 arm_cache_init_sp (ARM_SP_REGNUM
, &cache
->msp_s
, cache
, frame
);
395 /* Return the requested stack pointer value (in REGNUM), taking into
396 account whether we have a Security extension or an M-profile
400 arm_cache_get_sp_register (struct arm_prologue_cache
*cache
,
401 arm_gdbarch_tdep
*tdep
, int regnum
)
403 if (tdep
->have_sec_ext
)
405 if (regnum
== tdep
->m_profile_msp_s_regnum
)
407 if (regnum
== tdep
->m_profile_msp_ns_regnum
)
408 return cache
->msp_ns
;
409 if (regnum
== tdep
->m_profile_psp_s_regnum
)
411 if (regnum
== tdep
->m_profile_psp_ns_regnum
)
412 return cache
->psp_ns
;
413 if (regnum
== tdep
->m_profile_msp_regnum
)
414 return arm_cache_get_sp_register (cache
, tdep
, cache
->active_msp_regnum
);
415 if (regnum
== tdep
->m_profile_psp_regnum
)
416 return arm_cache_get_sp_register (cache
, tdep
, cache
->active_psp_regnum
);
417 if (regnum
== ARM_SP_REGNUM
)
418 return arm_cache_get_sp_register (cache
, tdep
, cache
->active_sp_regnum
);
422 if (regnum
== tdep
->m_profile_msp_regnum
)
424 if (regnum
== tdep
->m_profile_psp_regnum
)
426 if (regnum
== ARM_SP_REGNUM
)
427 return arm_cache_get_sp_register (cache
, tdep
, cache
->active_sp_regnum
);
429 else if (regnum
== ARM_SP_REGNUM
)
432 gdb_assert_not_reached ("Invalid SP selection");
435 /* Return the previous stack address, depending on which SP register
439 arm_cache_get_prev_sp_value (struct arm_prologue_cache
*cache
, arm_gdbarch_tdep
*tdep
)
441 CORE_ADDR val
= arm_cache_get_sp_register (cache
, tdep
, cache
->active_sp_regnum
);
445 /* Set the active stack pointer to VAL. */
448 arm_cache_set_active_sp_value (struct arm_prologue_cache
*cache
,
449 arm_gdbarch_tdep
*tdep
, CORE_ADDR val
)
451 if (tdep
->have_sec_ext
)
453 if (cache
->active_sp_regnum
== tdep
->m_profile_msp_s_regnum
)
455 else if (cache
->active_sp_regnum
== tdep
->m_profile_msp_ns_regnum
)
457 else if (cache
->active_sp_regnum
== tdep
->m_profile_psp_s_regnum
)
459 else if (cache
->active_sp_regnum
== tdep
->m_profile_psp_ns_regnum
)
466 if (cache
->active_sp_regnum
== tdep
->m_profile_msp_regnum
)
468 else if (cache
->active_sp_regnum
== tdep
->m_profile_psp_regnum
)
473 else if (cache
->active_sp_regnum
== ARM_SP_REGNUM
)
479 gdb_assert_not_reached ("Invalid SP selection");
482 /* Return true if REGNUM is one of the stack pointers. */
485 arm_cache_is_sp_register (struct arm_prologue_cache
*cache
,
486 arm_gdbarch_tdep
*tdep
, int regnum
)
488 if ((regnum
== ARM_SP_REGNUM
)
489 || (regnum
== tdep
->m_profile_msp_regnum
)
490 || (regnum
== tdep
->m_profile_msp_s_regnum
)
491 || (regnum
== tdep
->m_profile_msp_ns_regnum
)
492 || (regnum
== tdep
->m_profile_psp_regnum
)
493 || (regnum
== tdep
->m_profile_psp_s_regnum
)
494 || (regnum
== tdep
->m_profile_psp_ns_regnum
))
500 /* Set the active stack pointer to SP_REGNUM. */
503 arm_cache_switch_prev_sp (struct arm_prologue_cache
*cache
,
504 arm_gdbarch_tdep
*tdep
, int sp_regnum
)
506 gdb_assert (sp_regnum
!= ARM_SP_REGNUM
);
507 gdb_assert (arm_cache_is_sp_register (cache
, tdep
, sp_regnum
));
509 if (tdep
->have_sec_ext
)
510 gdb_assert (sp_regnum
!= tdep
->m_profile_msp_regnum
511 && sp_regnum
!= tdep
->m_profile_psp_regnum
);
513 cache
->active_sp_regnum
= sp_regnum
;
518 /* Abstract class to read ARM instructions from memory. */
520 class arm_instruction_reader
523 /* Read a 4 bytes instruction from memory using the BYTE_ORDER endianness. */
524 virtual uint32_t read (CORE_ADDR memaddr
, bfd_endian byte_order
) const = 0;
527 /* Read instructions from target memory. */
529 class target_arm_instruction_reader
: public arm_instruction_reader
532 uint32_t read (CORE_ADDR memaddr
, bfd_endian byte_order
) const override
534 return read_code_unsigned_integer (memaddr
, 4, byte_order
);
540 static CORE_ADDR arm_analyze_prologue
541 (struct gdbarch
*gdbarch
, CORE_ADDR prologue_start
, CORE_ADDR prologue_end
,
542 struct arm_prologue_cache
*cache
, const arm_instruction_reader
&insn_reader
);
544 /* Architecture version for displaced stepping. This effects the behaviour of
545 certain instructions, and really should not be hard-wired. */
547 #define DISPLACED_STEPPING_ARCH_VERSION 5
549 /* See arm-tdep.h. */
551 bool arm_apcs_32
= true;
552 bool arm_unwind_secure_frames
= true;
554 /* Return the bit mask in ARM_PS_REGNUM that indicates Thumb mode. */
557 arm_psr_thumb_bit (struct gdbarch
*gdbarch
)
559 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
567 /* Determine if the processor is currently executing in Thumb mode. */
570 arm_is_thumb (struct regcache
*regcache
)
573 ULONGEST t_bit
= arm_psr_thumb_bit (regcache
->arch ());
575 cpsr
= regcache_raw_get_unsigned (regcache
, ARM_PS_REGNUM
);
577 return (cpsr
& t_bit
) != 0;
580 /* Determine if FRAME is executing in Thumb mode. */
583 arm_frame_is_thumb (struct frame_info
*frame
)
586 ULONGEST t_bit
= arm_psr_thumb_bit (get_frame_arch (frame
));
588 /* Every ARM frame unwinder can unwind the T bit of the CPSR, either
589 directly (from a signal frame or dummy frame) or by interpreting
590 the saved LR (from a prologue or DWARF frame). So consult it and
591 trust the unwinders. */
592 cpsr
= get_frame_register_unsigned (frame
, ARM_PS_REGNUM
);
594 return (cpsr
& t_bit
) != 0;
597 /* Search for the mapping symbol covering MEMADDR. If one is found,
598 return its type. Otherwise, return 0. If START is non-NULL,
599 set *START to the location of the mapping symbol. */
602 arm_find_mapping_symbol (CORE_ADDR memaddr
, CORE_ADDR
*start
)
604 struct obj_section
*sec
;
606 /* If there are mapping symbols, consult them. */
607 sec
= find_pc_section (memaddr
);
610 arm_per_bfd
*data
= arm_bfd_data_key
.get (sec
->objfile
->obfd
);
613 unsigned int section_idx
= sec
->the_bfd_section
->index
;
614 arm_mapping_symbol_vec
&map
615 = data
->section_maps
[section_idx
];
617 /* Sort the vector on first use. */
618 if (!data
->section_maps_sorted
[section_idx
])
620 std::sort (map
.begin (), map
.end ());
621 data
->section_maps_sorted
[section_idx
] = true;
624 arm_mapping_symbol map_key
= { memaddr
- sec
->addr (), 0 };
625 arm_mapping_symbol_vec::const_iterator it
626 = std::lower_bound (map
.begin (), map
.end (), map_key
);
628 /* std::lower_bound finds the earliest ordered insertion
629 point. If the symbol at this position starts at this exact
630 address, we use that; otherwise, the preceding
631 mapping symbol covers this address. */
634 if (it
->value
== map_key
.value
)
637 *start
= it
->value
+ sec
->addr ();
642 if (it
> map
.begin ())
644 arm_mapping_symbol_vec::const_iterator prev_it
648 *start
= prev_it
->value
+ sec
->addr ();
649 return prev_it
->type
;
657 /* Determine if the program counter specified in MEMADDR is in a Thumb
658 function. This function should be called for addresses unrelated to
659 any executing frame; otherwise, prefer arm_frame_is_thumb. */
662 arm_pc_is_thumb (struct gdbarch
*gdbarch
, CORE_ADDR memaddr
)
664 struct bound_minimal_symbol sym
;
666 arm_displaced_step_copy_insn_closure
*dsc
= nullptr;
667 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
669 if (gdbarch_displaced_step_copy_insn_closure_by_addr_p (gdbarch
))
670 dsc
= ((arm_displaced_step_copy_insn_closure
* )
671 gdbarch_displaced_step_copy_insn_closure_by_addr
672 (gdbarch
, current_inferior (), memaddr
));
674 /* If checking the mode of displaced instruction in copy area, the mode
675 should be determined by instruction on the original address. */
678 displaced_debug_printf ("check mode of %.8lx instead of %.8lx",
679 (unsigned long) dsc
->insn_addr
,
680 (unsigned long) memaddr
);
681 memaddr
= dsc
->insn_addr
;
684 /* If bit 0 of the address is set, assume this is a Thumb address. */
685 if (IS_THUMB_ADDR (memaddr
))
688 /* If the user wants to override the symbol table, let him. */
689 if (strcmp (arm_force_mode_string
, "arm") == 0)
691 if (strcmp (arm_force_mode_string
, "thumb") == 0)
694 /* ARM v6-M and v7-M are always in Thumb mode. */
698 /* If there are mapping symbols, consult them. */
699 type
= arm_find_mapping_symbol (memaddr
, NULL
);
703 /* Thumb functions have a "special" bit set in minimal symbols. */
704 sym
= lookup_minimal_symbol_by_pc (memaddr
);
706 return (MSYMBOL_IS_SPECIAL (sym
.minsym
));
708 /* If the user wants to override the fallback mode, let them. */
709 if (strcmp (arm_fallback_mode_string
, "arm") == 0)
711 if (strcmp (arm_fallback_mode_string
, "thumb") == 0)
714 /* If we couldn't find any symbol, but we're talking to a running
715 target, then trust the current value of $cpsr. This lets
716 "display/i $pc" always show the correct mode (though if there is
717 a symbol table we will not reach here, so it still may not be
718 displayed in the mode it will be executed). */
719 if (target_has_registers ())
720 return arm_frame_is_thumb (get_current_frame ());
722 /* Otherwise we're out of luck; we assume ARM. */
726 /* Determine if the address specified equals any of these magic return
727 values, called EXC_RETURN, defined by the ARM v6-M, v7-M and v8-M
730 From ARMv6-M Reference Manual B1.5.8
731 Table B1-5 Exception return behavior
733 EXC_RETURN Return To Return Stack
734 0xFFFFFFF1 Handler mode Main
735 0xFFFFFFF9 Thread mode Main
736 0xFFFFFFFD Thread mode Process
738 From ARMv7-M Reference Manual B1.5.8
739 Table B1-8 EXC_RETURN definition of exception return behavior, no FP
741 EXC_RETURN Return To Return Stack
742 0xFFFFFFF1 Handler mode Main
743 0xFFFFFFF9 Thread mode Main
744 0xFFFFFFFD Thread mode Process
746 Table B1-9 EXC_RETURN definition of exception return behavior, with
749 EXC_RETURN Return To Return Stack Frame Type
750 0xFFFFFFE1 Handler mode Main Extended
751 0xFFFFFFE9 Thread mode Main Extended
752 0xFFFFFFED Thread mode Process Extended
753 0xFFFFFFF1 Handler mode Main Basic
754 0xFFFFFFF9 Thread mode Main Basic
755 0xFFFFFFFD Thread mode Process Basic
757 For more details see "B1.5.8 Exception return behavior"
758 in both ARMv6-M and ARMv7-M Architecture Reference Manuals.
760 In the ARMv8-M Architecture Technical Reference also adds
761 for implementations without the Security Extension:
764 0xFFFFFFB0 Return to Handler mode.
765 0xFFFFFFB8 Return to Thread mode using the main stack.
766 0xFFFFFFBC Return to Thread mode using the process stack. */
769 arm_m_addr_is_magic (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
771 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
772 if (tdep
->have_sec_ext
)
774 switch ((addr
& 0xff000000))
776 case 0xff000000: /* EXC_RETURN pattern. */
777 case 0xfe000000: /* FNC_RETURN pattern. */
787 /* Values from ARMv8-M Architecture Technical Reference. */
791 /* Values from Tables in B1.5.8 the EXC_RETURN definitions of
792 the exception return behavior. */
799 /* Address is magic. */
803 /* Address is not magic. */
809 /* Remove useless bits from addresses in a running program. */
811 arm_addr_bits_remove (struct gdbarch
*gdbarch
, CORE_ADDR val
)
813 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
815 /* On M-profile devices, do not strip the low bit from EXC_RETURN
816 (the magic exception return address). */
817 if (tdep
->is_m
&& arm_m_addr_is_magic (gdbarch
, val
))
821 return UNMAKE_THUMB_ADDR (val
);
823 return (val
& 0x03fffffc);
826 /* Return 1 if PC is the start of a compiler helper function which
827 can be safely ignored during prologue skipping. IS_THUMB is true
828 if the function is known to be a Thumb function due to the way it
831 skip_prologue_function (struct gdbarch
*gdbarch
, CORE_ADDR pc
, int is_thumb
)
833 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
834 struct bound_minimal_symbol msym
;
836 msym
= lookup_minimal_symbol_by_pc (pc
);
837 if (msym
.minsym
!= NULL
838 && msym
.value_address () == pc
839 && msym
.minsym
->linkage_name () != NULL
)
841 const char *name
= msym
.minsym
->linkage_name ();
843 /* The GNU linker's Thumb call stub to foo is named
845 if (strstr (name
, "_from_thumb") != NULL
)
848 /* On soft-float targets, __truncdfsf2 is called to convert promoted
849 arguments to their argument types in non-prototyped
851 if (startswith (name
, "__truncdfsf2"))
853 if (startswith (name
, "__aeabi_d2f"))
856 /* Internal functions related to thread-local storage. */
857 if (startswith (name
, "__tls_get_addr"))
859 if (startswith (name
, "__aeabi_read_tp"))
864 /* If we run against a stripped glibc, we may be unable to identify
865 special functions by name. Check for one important case,
866 __aeabi_read_tp, by comparing the *code* against the default
867 implementation (this is hand-written ARM assembler in glibc). */
870 && read_code_unsigned_integer (pc
, 4, byte_order_for_code
)
871 == 0xe3e00a0f /* mov r0, #0xffff0fff */
872 && read_code_unsigned_integer (pc
+ 4, 4, byte_order_for_code
)
873 == 0xe240f01f) /* sub pc, r0, #31 */
880 /* Extract the immediate from instruction movw/movt of encoding T. INSN1 is
881 the first 16-bit of instruction, and INSN2 is the second 16-bit of
883 #define EXTRACT_MOVW_MOVT_IMM_T(insn1, insn2) \
884 ((bits ((insn1), 0, 3) << 12) \
885 | (bits ((insn1), 10, 10) << 11) \
886 | (bits ((insn2), 12, 14) << 8) \
887 | bits ((insn2), 0, 7))
889 /* Extract the immediate from instruction movw/movt of encoding A. INSN is
890 the 32-bit instruction. */
891 #define EXTRACT_MOVW_MOVT_IMM_A(insn) \
892 ((bits ((insn), 16, 19) << 12) \
893 | bits ((insn), 0, 11))
895 /* Decode immediate value; implements ThumbExpandImmediate pseudo-op. */
898 thumb_expand_immediate (unsigned int imm
)
900 unsigned int count
= imm
>> 7;
908 return (imm
& 0xff) | ((imm
& 0xff) << 16);
910 return ((imm
& 0xff) << 8) | ((imm
& 0xff) << 24);
912 return (imm
& 0xff) | ((imm
& 0xff) << 8)
913 | ((imm
& 0xff) << 16) | ((imm
& 0xff) << 24);
916 return (0x80 | (imm
& 0x7f)) << (32 - count
);
919 /* Return 1 if the 16-bit Thumb instruction INSN restores SP in
920 epilogue, 0 otherwise. */
923 thumb_instruction_restores_sp (unsigned short insn
)
925 return (insn
== 0x46bd /* mov sp, r7 */
926 || (insn
& 0xff80) == 0xb000 /* add sp, imm */
927 || (insn
& 0xfe00) == 0xbc00); /* pop <registers> */
930 /* Analyze a Thumb prologue, looking for a recognizable stack frame
931 and frame pointer. Scan until we encounter a store that could
932 clobber the stack frame unexpectedly, or an unknown instruction.
933 Return the last address which is definitely safe to skip for an
934 initial breakpoint. */
937 thumb_analyze_prologue (struct gdbarch
*gdbarch
,
938 CORE_ADDR start
, CORE_ADDR limit
,
939 struct arm_prologue_cache
*cache
)
941 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
942 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
943 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
947 CORE_ADDR unrecognized_pc
= 0;
949 for (i
= 0; i
< 16; i
++)
950 regs
[i
] = pv_register (i
, 0);
951 pv_area
stack (ARM_SP_REGNUM
, gdbarch_addr_bit (gdbarch
));
953 while (start
< limit
)
956 gdb::optional
<bool> ra_signed_state
;
958 insn
= read_code_unsigned_integer (start
, 2, byte_order_for_code
);
960 if ((insn
& 0xfe00) == 0xb400) /* push { rlist } */
965 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
968 /* Bits 0-7 contain a mask for registers R0-R7. Bit 8 says
969 whether to save LR (R14). */
970 mask
= (insn
& 0xff) | ((insn
& 0x100) << 6);
972 /* Calculate offsets of saved R0-R7 and LR. */
973 for (regno
= ARM_LR_REGNUM
; regno
>= 0; regno
--)
974 if (mask
& (1 << regno
))
976 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
],
978 stack
.store (regs
[ARM_SP_REGNUM
], 4, regs
[regno
]);
981 else if ((insn
& 0xff80) == 0xb080) /* sub sp, #imm */
983 offset
= (insn
& 0x7f) << 2; /* get scaled offset */
984 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
],
987 else if (thumb_instruction_restores_sp (insn
))
989 /* Don't scan past the epilogue. */
992 else if ((insn
& 0xf800) == 0xa800) /* add Rd, sp, #imm */
993 regs
[bits (insn
, 8, 10)] = pv_add_constant (regs
[ARM_SP_REGNUM
],
995 else if ((insn
& 0xfe00) == 0x1c00 /* add Rd, Rn, #imm */
996 && pv_is_register (regs
[bits (insn
, 3, 5)], ARM_SP_REGNUM
))
997 regs
[bits (insn
, 0, 2)] = pv_add_constant (regs
[bits (insn
, 3, 5)],
999 else if ((insn
& 0xf800) == 0x3000 /* add Rd, #imm */
1000 && pv_is_register (regs
[bits (insn
, 8, 10)], ARM_SP_REGNUM
))
1001 regs
[bits (insn
, 8, 10)] = pv_add_constant (regs
[bits (insn
, 8, 10)],
1003 else if ((insn
& 0xfe00) == 0x1800 /* add Rd, Rn, Rm */
1004 && pv_is_register (regs
[bits (insn
, 6, 8)], ARM_SP_REGNUM
)
1005 && pv_is_constant (regs
[bits (insn
, 3, 5)]))
1006 regs
[bits (insn
, 0, 2)] = pv_add (regs
[bits (insn
, 3, 5)],
1007 regs
[bits (insn
, 6, 8)]);
1008 else if ((insn
& 0xff00) == 0x4400 /* add Rd, Rm */
1009 && pv_is_constant (regs
[bits (insn
, 3, 6)]))
1011 int rd
= (bit (insn
, 7) << 3) + bits (insn
, 0, 2);
1012 int rm
= bits (insn
, 3, 6);
1013 regs
[rd
] = pv_add (regs
[rd
], regs
[rm
]);
1015 else if ((insn
& 0xff00) == 0x4600) /* mov hi, lo or mov lo, hi */
1017 int dst_reg
= (insn
& 0x7) + ((insn
& 0x80) >> 4);
1018 int src_reg
= (insn
& 0x78) >> 3;
1019 regs
[dst_reg
] = regs
[src_reg
];
1021 else if ((insn
& 0xf800) == 0x9000) /* str rd, [sp, #off] */
1023 /* Handle stores to the stack. Normally pushes are used,
1024 but with GCC -mtpcs-frame, there may be other stores
1025 in the prologue to create the frame. */
1026 int regno
= (insn
>> 8) & 0x7;
1029 offset
= (insn
& 0xff) << 2;
1030 addr
= pv_add_constant (regs
[ARM_SP_REGNUM
], offset
);
1032 if (stack
.store_would_trash (addr
))
1035 stack
.store (addr
, 4, regs
[regno
]);
1037 else if ((insn
& 0xf800) == 0x6000) /* str rd, [rn, #off] */
1039 int rd
= bits (insn
, 0, 2);
1040 int rn
= bits (insn
, 3, 5);
1043 offset
= bits (insn
, 6, 10) << 2;
1044 addr
= pv_add_constant (regs
[rn
], offset
);
1046 if (stack
.store_would_trash (addr
))
1049 stack
.store (addr
, 4, regs
[rd
]);
1051 else if (((insn
& 0xf800) == 0x7000 /* strb Rd, [Rn, #off] */
1052 || (insn
& 0xf800) == 0x8000) /* strh Rd, [Rn, #off] */
1053 && pv_is_register (regs
[bits (insn
, 3, 5)], ARM_SP_REGNUM
))
1054 /* Ignore stores of argument registers to the stack. */
1056 else if ((insn
& 0xf800) == 0xc800 /* ldmia Rn!, { registers } */
1057 && pv_is_register (regs
[bits (insn
, 8, 10)], ARM_SP_REGNUM
))
1058 /* Ignore block loads from the stack, potentially copying
1059 parameters from memory. */
1061 else if ((insn
& 0xf800) == 0x9800 /* ldr Rd, [Rn, #immed] */
1062 || ((insn
& 0xf800) == 0x6800 /* ldr Rd, [sp, #immed] */
1063 && pv_is_register (regs
[bits (insn
, 3, 5)], ARM_SP_REGNUM
)))
1064 /* Similarly ignore single loads from the stack. */
1066 else if ((insn
& 0xffc0) == 0x0000 /* lsls Rd, Rm, #0 */
1067 || (insn
& 0xffc0) == 0x1c00) /* add Rd, Rn, #0 */
1068 /* Skip register copies, i.e. saves to another register
1069 instead of the stack. */
1071 else if ((insn
& 0xf800) == 0x2000) /* movs Rd, #imm */
1072 /* Recognize constant loads; even with small stacks these are necessary
1074 regs
[bits (insn
, 8, 10)] = pv_constant (bits (insn
, 0, 7));
1075 else if ((insn
& 0xf800) == 0x4800) /* ldr Rd, [pc, #imm] */
1077 /* Constant pool loads, for the same reason. */
1078 unsigned int constant
;
1081 loc
= start
+ 4 + bits (insn
, 0, 7) * 4;
1082 constant
= read_memory_unsigned_integer (loc
, 4, byte_order
);
1083 regs
[bits (insn
, 8, 10)] = pv_constant (constant
);
1085 else if (thumb_insn_size (insn
) == 4) /* 32-bit Thumb-2 instructions. */
1087 unsigned short inst2
;
1089 inst2
= read_code_unsigned_integer (start
+ 2, 2,
1090 byte_order_for_code
);
1091 uint32_t whole_insn
= (insn
<< 16) | inst2
;
1093 if ((insn
& 0xf800) == 0xf000 && (inst2
& 0xe800) == 0xe800)
1095 /* BL, BLX. Allow some special function calls when
1096 skipping the prologue; GCC generates these before
1097 storing arguments to the stack. */
1099 int j1
, j2
, imm1
, imm2
;
1101 imm1
= sbits (insn
, 0, 10);
1102 imm2
= bits (inst2
, 0, 10);
1103 j1
= bit (inst2
, 13);
1104 j2
= bit (inst2
, 11);
1106 offset
= ((imm1
<< 12) + (imm2
<< 1));
1107 offset
^= ((!j2
) << 22) | ((!j1
) << 23);
1109 nextpc
= start
+ 4 + offset
;
1110 /* For BLX make sure to clear the low bits. */
1111 if (bit (inst2
, 12) == 0)
1112 nextpc
= nextpc
& 0xfffffffc;
1114 if (!skip_prologue_function (gdbarch
, nextpc
,
1115 bit (inst2
, 12) != 0))
1119 else if ((insn
& 0xffd0) == 0xe900 /* stmdb Rn{!},
1121 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1123 pv_t addr
= regs
[bits (insn
, 0, 3)];
1126 if (stack
.store_would_trash (addr
))
1129 /* Calculate offsets of saved registers. */
1130 for (regno
= ARM_LR_REGNUM
; regno
>= 0; regno
--)
1131 if (inst2
& (1 << regno
))
1133 addr
= pv_add_constant (addr
, -4);
1134 stack
.store (addr
, 4, regs
[regno
]);
1138 regs
[bits (insn
, 0, 3)] = addr
;
1141 /* vstmdb Rn{!}, { D-registers } (aka vpush). */
1142 else if ((insn
& 0xff20) == 0xed20
1143 && (inst2
& 0x0f00) == 0x0b00
1144 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1146 /* Address SP points to. */
1147 pv_t addr
= regs
[bits (insn
, 0, 3)];
1149 /* Number of registers saved. */
1150 unsigned int number
= bits (inst2
, 0, 7) >> 1;
1152 /* First register to save. */
1153 int vd
= bits (inst2
, 12, 15) | (bits (insn
, 6, 6) << 4);
1155 if (stack
.store_would_trash (addr
))
1158 /* Calculate offsets of saved registers. */
1159 for (; number
> 0; number
--)
1161 addr
= pv_add_constant (addr
, -8);
1162 stack
.store (addr
, 8, pv_register (ARM_D0_REGNUM
1166 /* Writeback SP to account for the saved registers. */
1167 regs
[bits (insn
, 0, 3)] = addr
;
1170 else if ((insn
& 0xff50) == 0xe940 /* strd Rt, Rt2,
1172 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1174 int regno1
= bits (inst2
, 12, 15);
1175 int regno2
= bits (inst2
, 8, 11);
1176 pv_t addr
= regs
[bits (insn
, 0, 3)];
1178 offset
= inst2
& 0xff;
1180 addr
= pv_add_constant (addr
, offset
);
1182 addr
= pv_add_constant (addr
, -offset
);
1184 if (stack
.store_would_trash (addr
))
1187 stack
.store (addr
, 4, regs
[regno1
]);
1188 stack
.store (pv_add_constant (addr
, 4),
1192 regs
[bits (insn
, 0, 3)] = addr
;
1195 else if ((insn
& 0xfff0) == 0xf8c0 /* str Rt,[Rn,+/-#imm]{!} */
1196 && (inst2
& 0x0c00) == 0x0c00
1197 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1199 int regno
= bits (inst2
, 12, 15);
1200 pv_t addr
= regs
[bits (insn
, 0, 3)];
1202 offset
= inst2
& 0xff;
1204 addr
= pv_add_constant (addr
, offset
);
1206 addr
= pv_add_constant (addr
, -offset
);
1208 if (stack
.store_would_trash (addr
))
1211 stack
.store (addr
, 4, regs
[regno
]);
1214 regs
[bits (insn
, 0, 3)] = addr
;
1217 else if ((insn
& 0xfff0) == 0xf8c0 /* str.w Rt,[Rn,#imm] */
1218 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1220 int regno
= bits (inst2
, 12, 15);
1223 offset
= inst2
& 0xfff;
1224 addr
= pv_add_constant (regs
[bits (insn
, 0, 3)], offset
);
1226 if (stack
.store_would_trash (addr
))
1229 stack
.store (addr
, 4, regs
[regno
]);
1232 else if ((insn
& 0xffd0) == 0xf880 /* str{bh}.w Rt,[Rn,#imm] */
1233 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1234 /* Ignore stores of argument registers to the stack. */
1237 else if ((insn
& 0xffd0) == 0xf800 /* str{bh} Rt,[Rn,#+/-imm] */
1238 && (inst2
& 0x0d00) == 0x0c00
1239 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1240 /* Ignore stores of argument registers to the stack. */
1243 else if ((insn
& 0xffd0) == 0xe890 /* ldmia Rn[!],
1245 && (inst2
& 0x8000) == 0x0000
1246 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1247 /* Ignore block loads from the stack, potentially copying
1248 parameters from memory. */
1251 else if ((insn
& 0xff70) == 0xe950 /* ldrd Rt, Rt2,
1253 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1254 /* Similarly ignore dual loads from the stack. */
1257 else if ((insn
& 0xfff0) == 0xf850 /* ldr Rt,[Rn,#+/-imm] */
1258 && (inst2
& 0x0d00) == 0x0c00
1259 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1260 /* Similarly ignore single loads from the stack. */
1263 else if ((insn
& 0xfff0) == 0xf8d0 /* ldr.w Rt,[Rn,#imm] */
1264 && pv_is_register (regs
[bits (insn
, 0, 3)], ARM_SP_REGNUM
))
1265 /* Similarly ignore single loads from the stack. */
1268 else if ((insn
& 0xfbf0) == 0xf100 /* add.w Rd, Rn, #imm */
1269 && (inst2
& 0x8000) == 0x0000)
1271 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
1272 | (bits (inst2
, 12, 14) << 8)
1273 | bits (inst2
, 0, 7));
1275 regs
[bits (inst2
, 8, 11)]
1276 = pv_add_constant (regs
[bits (insn
, 0, 3)],
1277 thumb_expand_immediate (imm
));
1280 else if ((insn
& 0xfbf0) == 0xf200 /* addw Rd, Rn, #imm */
1281 && (inst2
& 0x8000) == 0x0000)
1283 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
1284 | (bits (inst2
, 12, 14) << 8)
1285 | bits (inst2
, 0, 7));
1287 regs
[bits (inst2
, 8, 11)]
1288 = pv_add_constant (regs
[bits (insn
, 0, 3)], imm
);
1291 else if ((insn
& 0xfbf0) == 0xf1a0 /* sub.w Rd, Rn, #imm */
1292 && (inst2
& 0x8000) == 0x0000)
1294 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
1295 | (bits (inst2
, 12, 14) << 8)
1296 | bits (inst2
, 0, 7));
1298 regs
[bits (inst2
, 8, 11)]
1299 = pv_add_constant (regs
[bits (insn
, 0, 3)],
1300 - (CORE_ADDR
) thumb_expand_immediate (imm
));
1303 else if ((insn
& 0xfbf0) == 0xf2a0 /* subw Rd, Rn, #imm */
1304 && (inst2
& 0x8000) == 0x0000)
1306 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
1307 | (bits (inst2
, 12, 14) << 8)
1308 | bits (inst2
, 0, 7));
1310 regs
[bits (inst2
, 8, 11)]
1311 = pv_add_constant (regs
[bits (insn
, 0, 3)], - (CORE_ADDR
) imm
);
1314 else if ((insn
& 0xfbff) == 0xf04f) /* mov.w Rd, #const */
1316 unsigned int imm
= ((bits (insn
, 10, 10) << 11)
1317 | (bits (inst2
, 12, 14) << 8)
1318 | bits (inst2
, 0, 7));
1320 regs
[bits (inst2
, 8, 11)]
1321 = pv_constant (thumb_expand_immediate (imm
));
1324 else if ((insn
& 0xfbf0) == 0xf240) /* movw Rd, #const */
1327 = EXTRACT_MOVW_MOVT_IMM_T (insn
, inst2
);
1329 regs
[bits (inst2
, 8, 11)] = pv_constant (imm
);
1332 else if (insn
== 0xea5f /* mov.w Rd,Rm */
1333 && (inst2
& 0xf0f0) == 0)
1335 int dst_reg
= (inst2
& 0x0f00) >> 8;
1336 int src_reg
= inst2
& 0xf;
1337 regs
[dst_reg
] = regs
[src_reg
];
1340 else if ((insn
& 0xff7f) == 0xf85f) /* ldr.w Rt,<label> */
1342 /* Constant pool loads. */
1343 unsigned int constant
;
1346 offset
= bits (inst2
, 0, 11);
1348 loc
= start
+ 4 + offset
;
1350 loc
= start
+ 4 - offset
;
1352 constant
= read_memory_unsigned_integer (loc
, 4, byte_order
);
1353 regs
[bits (inst2
, 12, 15)] = pv_constant (constant
);
1356 else if ((insn
& 0xff7f) == 0xe95f) /* ldrd Rt,Rt2,<label> */
1358 /* Constant pool loads. */
1359 unsigned int constant
;
1362 offset
= bits (inst2
, 0, 7) << 2;
1364 loc
= start
+ 4 + offset
;
1366 loc
= start
+ 4 - offset
;
1368 constant
= read_memory_unsigned_integer (loc
, 4, byte_order
);
1369 regs
[bits (inst2
, 12, 15)] = pv_constant (constant
);
1371 constant
= read_memory_unsigned_integer (loc
+ 4, 4, byte_order
);
1372 regs
[bits (inst2
, 8, 11)] = pv_constant (constant
);
1374 /* Start of ARMv8.1-m PACBTI extension instructions. */
1375 else if (IS_PAC (whole_insn
))
1377 /* LR and SP are input registers. PAC is in R12. LR is
1378 signed from this point onwards. NOP space. */
1379 ra_signed_state
= true;
1381 else if (IS_PACBTI (whole_insn
))
1383 /* LR and SP are input registers. PAC is in R12 and PC is a
1384 valid BTI landing pad. LR is signed from this point onwards.
1386 ra_signed_state
= true;
1388 else if (IS_BTI (whole_insn
))
1390 /* Valid BTI landing pad. NOP space. */
1392 else if (IS_PACG (whole_insn
))
1394 /* Sign Rn using Rm and store the PAC in Rd. Rd is signed from
1395 this point onwards. */
1396 ra_signed_state
= true;
1398 else if (IS_AUT (whole_insn
) || IS_AUTG (whole_insn
))
1400 /* These instructions appear close to the epilogue, when signed
1401 pointers are getting authenticated. */
1402 ra_signed_state
= false;
1404 /* End of ARMv8.1-m PACBTI extension instructions */
1405 else if (thumb2_instruction_changes_pc (insn
, inst2
))
1407 /* Don't scan past anything that might change control flow. */
1412 /* The optimizer might shove anything into the prologue,
1413 so we just skip what we don't recognize. */
1414 unrecognized_pc
= start
;
1417 /* Make sure we are dealing with a target that supports ARMv8.1-m
1419 if (cache
!= nullptr && tdep
->have_pacbti
1420 && ra_signed_state
.has_value ())
1422 arm_debug_printf ("Found pacbti instruction at %s",
1423 paddress (gdbarch
, start
));
1424 arm_debug_printf ("RA is %s",
1425 *ra_signed_state
? "signed" : "not signed");
1426 cache
->ra_signed_state
= ra_signed_state
;
1431 else if (thumb_instruction_changes_pc (insn
))
1433 /* Don't scan past anything that might change control flow. */
1438 /* The optimizer might shove anything into the prologue,
1439 so we just skip what we don't recognize. */
1440 unrecognized_pc
= start
;
1446 arm_debug_printf ("Prologue scan stopped at %s",
1447 paddress (gdbarch
, start
));
1449 if (unrecognized_pc
== 0)
1450 unrecognized_pc
= start
;
1453 return unrecognized_pc
;
1455 if (pv_is_register (regs
[ARM_FP_REGNUM
], ARM_SP_REGNUM
))
1457 /* Frame pointer is fp. Frame size is constant. */
1458 cache
->framereg
= ARM_FP_REGNUM
;
1459 cache
->framesize
= -regs
[ARM_FP_REGNUM
].k
;
1461 else if (pv_is_register (regs
[THUMB_FP_REGNUM
], ARM_SP_REGNUM
))
1463 /* Frame pointer is r7. Frame size is constant. */
1464 cache
->framereg
= THUMB_FP_REGNUM
;
1465 cache
->framesize
= -regs
[THUMB_FP_REGNUM
].k
;
1469 /* Try the stack pointer... this is a bit desperate. */
1470 cache
->framereg
= ARM_SP_REGNUM
;
1471 cache
->framesize
= -regs
[ARM_SP_REGNUM
].k
;
1474 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
1475 if (stack
.find_reg (gdbarch
, i
, &offset
))
1477 cache
->saved_regs
[i
].set_addr (offset
);
1478 if (i
== ARM_SP_REGNUM
)
1479 arm_cache_set_active_sp_value(cache
, tdep
, offset
);
1482 return unrecognized_pc
;
1486 /* Try to analyze the instructions starting from PC, which load symbol
1487 __stack_chk_guard. Return the address of instruction after loading this
1488 symbol, set the dest register number to *BASEREG, and set the size of
1489 instructions for loading symbol in OFFSET. Return 0 if instructions are
1493 arm_analyze_load_stack_chk_guard(CORE_ADDR pc
, struct gdbarch
*gdbarch
,
1494 unsigned int *destreg
, int *offset
)
1496 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
1497 int is_thumb
= arm_pc_is_thumb (gdbarch
, pc
);
1498 unsigned int low
, high
, address
;
1503 unsigned short insn1
1504 = read_code_unsigned_integer (pc
, 2, byte_order_for_code
);
1506 if ((insn1
& 0xf800) == 0x4800) /* ldr Rd, #immed */
1508 *destreg
= bits (insn1
, 8, 10);
1510 address
= (pc
& 0xfffffffc) + 4 + (bits (insn1
, 0, 7) << 2);
1511 address
= read_memory_unsigned_integer (address
, 4,
1512 byte_order_for_code
);
1514 else if ((insn1
& 0xfbf0) == 0xf240) /* movw Rd, #const */
1516 unsigned short insn2
1517 = read_code_unsigned_integer (pc
+ 2, 2, byte_order_for_code
);
1519 low
= EXTRACT_MOVW_MOVT_IMM_T (insn1
, insn2
);
1522 = read_code_unsigned_integer (pc
+ 4, 2, byte_order_for_code
);
1524 = read_code_unsigned_integer (pc
+ 6, 2, byte_order_for_code
);
1526 /* movt Rd, #const */
1527 if ((insn1
& 0xfbc0) == 0xf2c0)
1529 high
= EXTRACT_MOVW_MOVT_IMM_T (insn1
, insn2
);
1530 *destreg
= bits (insn2
, 8, 11);
1532 address
= (high
<< 16 | low
);
1539 = read_code_unsigned_integer (pc
, 4, byte_order_for_code
);
1541 if ((insn
& 0x0e5f0000) == 0x041f0000) /* ldr Rd, [PC, #immed] */
1543 address
= bits (insn
, 0, 11) + pc
+ 8;
1544 address
= read_memory_unsigned_integer (address
, 4,
1545 byte_order_for_code
);
1547 *destreg
= bits (insn
, 12, 15);
1550 else if ((insn
& 0x0ff00000) == 0x03000000) /* movw Rd, #const */
1552 low
= EXTRACT_MOVW_MOVT_IMM_A (insn
);
1555 = read_code_unsigned_integer (pc
+ 4, 4, byte_order_for_code
);
1557 if ((insn
& 0x0ff00000) == 0x03400000) /* movt Rd, #const */
1559 high
= EXTRACT_MOVW_MOVT_IMM_A (insn
);
1560 *destreg
= bits (insn
, 12, 15);
1562 address
= (high
<< 16 | low
);
1570 /* Try to skip a sequence of instructions used for stack protector. If PC
1571 points to the first instruction of this sequence, return the address of
1572 first instruction after this sequence, otherwise, return original PC.
1574 On arm, this sequence of instructions is composed of mainly three steps,
1575 Step 1: load symbol __stack_chk_guard,
1576 Step 2: load from address of __stack_chk_guard,
1577 Step 3: store it to somewhere else.
1579 Usually, instructions on step 2 and step 3 are the same on various ARM
1580 architectures. On step 2, it is one instruction 'ldr Rx, [Rn, #0]', and
1581 on step 3, it is also one instruction 'str Rx, [r7, #immd]'. However,
1582 instructions in step 1 vary from different ARM architectures. On ARMv7,
1585 movw Rn, #:lower16:__stack_chk_guard
1586 movt Rn, #:upper16:__stack_chk_guard
1593 .word __stack_chk_guard
1595 Since ldr/str is a very popular instruction, we can't use them as
1596 'fingerprint' or 'signature' of stack protector sequence. Here we choose
1597 sequence {movw/movt, ldr}/ldr/str plus symbol __stack_chk_guard, if not
1598 stripped, as the 'fingerprint' of a stack protector cdoe sequence. */
1601 arm_skip_stack_protector(CORE_ADDR pc
, struct gdbarch
*gdbarch
)
1603 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
1604 unsigned int basereg
;
1605 struct bound_minimal_symbol stack_chk_guard
;
1607 int is_thumb
= arm_pc_is_thumb (gdbarch
, pc
);
1610 /* Try to parse the instructions in Step 1. */
1611 addr
= arm_analyze_load_stack_chk_guard (pc
, gdbarch
,
1616 stack_chk_guard
= lookup_minimal_symbol_by_pc (addr
);
1617 /* ADDR must correspond to a symbol whose name is __stack_chk_guard.
1618 Otherwise, this sequence cannot be for stack protector. */
1619 if (stack_chk_guard
.minsym
== NULL
1620 || !startswith (stack_chk_guard
.minsym
->linkage_name (), "__stack_chk_guard"))
1625 unsigned int destreg
;
1627 = read_code_unsigned_integer (pc
+ offset
, 2, byte_order_for_code
);
1629 /* Step 2: ldr Rd, [Rn, #immed], encoding T1. */
1630 if ((insn
& 0xf800) != 0x6800)
1632 if (bits (insn
, 3, 5) != basereg
)
1634 destreg
= bits (insn
, 0, 2);
1636 insn
= read_code_unsigned_integer (pc
+ offset
+ 2, 2,
1637 byte_order_for_code
);
1638 /* Step 3: str Rd, [Rn, #immed], encoding T1. */
1639 if ((insn
& 0xf800) != 0x6000)
1641 if (destreg
!= bits (insn
, 0, 2))
1646 unsigned int destreg
;
1648 = read_code_unsigned_integer (pc
+ offset
, 4, byte_order_for_code
);
1650 /* Step 2: ldr Rd, [Rn, #immed], encoding A1. */
1651 if ((insn
& 0x0e500000) != 0x04100000)
1653 if (bits (insn
, 16, 19) != basereg
)
1655 destreg
= bits (insn
, 12, 15);
1656 /* Step 3: str Rd, [Rn, #immed], encoding A1. */
1657 insn
= read_code_unsigned_integer (pc
+ offset
+ 4,
1658 4, byte_order_for_code
);
1659 if ((insn
& 0x0e500000) != 0x04000000)
1661 if (bits (insn
, 12, 15) != destreg
)
1664 /* The size of total two instructions ldr/str is 4 on Thumb-2, while 8
1667 return pc
+ offset
+ 4;
1669 return pc
+ offset
+ 8;
1672 /* Advance the PC across any function entry prologue instructions to
1673 reach some "real" code.
1675 The APCS (ARM Procedure Call Standard) defines the following
1679 [stmfd sp!, {a1,a2,a3,a4}]
1680 stmfd sp!, {...,fp,ip,lr,pc}
1681 [stfe f7, [sp, #-12]!]
1682 [stfe f6, [sp, #-12]!]
1683 [stfe f5, [sp, #-12]!]
1684 [stfe f4, [sp, #-12]!]
1685 sub fp, ip, #nn @@ nn == 20 or 4 depending on second insn. */
1688 arm_skip_prologue (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
1690 CORE_ADDR func_addr
, limit_pc
;
1692 /* See if we can determine the end of the prologue via the symbol table.
1693 If so, then return either PC, or the PC after the prologue, whichever
1695 if (find_pc_partial_function (pc
, NULL
, &func_addr
, NULL
))
1697 CORE_ADDR post_prologue_pc
1698 = skip_prologue_using_sal (gdbarch
, func_addr
);
1699 struct compunit_symtab
*cust
= find_pc_compunit_symtab (func_addr
);
1701 if (post_prologue_pc
)
1703 = arm_skip_stack_protector (post_prologue_pc
, gdbarch
);
1706 /* GCC always emits a line note before the prologue and another
1707 one after, even if the two are at the same address or on the
1708 same line. Take advantage of this so that we do not need to
1709 know every instruction that might appear in the prologue. We
1710 will have producer information for most binaries; if it is
1711 missing (e.g. for -gstabs), assuming the GNU tools. */
1712 if (post_prologue_pc
1714 || cust
->producer () == NULL
1715 || startswith (cust
->producer (), "GNU ")
1716 || producer_is_llvm (cust
->producer ())))
1717 return post_prologue_pc
;
1719 if (post_prologue_pc
!= 0)
1721 CORE_ADDR analyzed_limit
;
1723 /* For non-GCC compilers, make sure the entire line is an
1724 acceptable prologue; GDB will round this function's
1725 return value up to the end of the following line so we
1726 can not skip just part of a line (and we do not want to).
1728 RealView does not treat the prologue specially, but does
1729 associate prologue code with the opening brace; so this
1730 lets us skip the first line if we think it is the opening
1732 if (arm_pc_is_thumb (gdbarch
, func_addr
))
1733 analyzed_limit
= thumb_analyze_prologue (gdbarch
, func_addr
,
1734 post_prologue_pc
, NULL
);
1737 = arm_analyze_prologue (gdbarch
, func_addr
, post_prologue_pc
,
1738 NULL
, target_arm_instruction_reader ());
1740 if (analyzed_limit
!= post_prologue_pc
)
1743 return post_prologue_pc
;
1747 /* Can't determine prologue from the symbol table, need to examine
1750 /* Find an upper limit on the function prologue using the debug
1751 information. If the debug information could not be used to provide
1752 that bound, then use an arbitrary large number as the upper bound. */
1753 /* Like arm_scan_prologue, stop no later than pc + 64. */
1754 limit_pc
= skip_prologue_using_sal (gdbarch
, pc
);
1756 limit_pc
= pc
+ 64; /* Magic. */
1759 /* Check if this is Thumb code. */
1760 if (arm_pc_is_thumb (gdbarch
, pc
))
1761 return thumb_analyze_prologue (gdbarch
, pc
, limit_pc
, NULL
);
1763 return arm_analyze_prologue (gdbarch
, pc
, limit_pc
, NULL
,
1764 target_arm_instruction_reader ());
1768 /* Function: thumb_scan_prologue (helper function for arm_scan_prologue)
1769 This function decodes a Thumb function prologue to determine:
1770 1) the size of the stack frame
1771 2) which registers are saved on it
1772 3) the offsets of saved regs
1773 4) the offset from the stack pointer to the frame pointer
1775 A typical Thumb function prologue would create this stack frame
1776 (offsets relative to FP)
1777 old SP -> 24 stack parameters
1780 R7 -> 0 local variables (16 bytes)
1781 SP -> -12 additional stack space (12 bytes)
1782 The frame size would thus be 36 bytes, and the frame offset would be
1783 12 bytes. The frame register is R7.
1785 The comments for thumb_skip_prolog() describe the algorithm we use
1786 to detect the end of the prolog. */
1790 thumb_scan_prologue (struct gdbarch
*gdbarch
, CORE_ADDR prev_pc
,
1791 CORE_ADDR block_addr
, struct arm_prologue_cache
*cache
)
1793 CORE_ADDR prologue_start
;
1794 CORE_ADDR prologue_end
;
1796 if (find_pc_partial_function (block_addr
, NULL
, &prologue_start
,
1799 /* See comment in arm_scan_prologue for an explanation of
1801 if (prologue_end
> prologue_start
+ 64)
1803 prologue_end
= prologue_start
+ 64;
1807 /* We're in the boondocks: we have no idea where the start of the
1811 prologue_end
= std::min (prologue_end
, prev_pc
);
1813 thumb_analyze_prologue (gdbarch
, prologue_start
, prologue_end
, cache
);
1816 /* Return 1 if the ARM instruction INSN restores SP in epilogue, 0
1820 arm_instruction_restores_sp (unsigned int insn
)
1822 if (bits (insn
, 28, 31) != INST_NV
)
1824 if ((insn
& 0x0df0f000) == 0x0080d000
1825 /* ADD SP (register or immediate). */
1826 || (insn
& 0x0df0f000) == 0x0040d000
1827 /* SUB SP (register or immediate). */
1828 || (insn
& 0x0ffffff0) == 0x01a0d000
1830 || (insn
& 0x0fff0000) == 0x08bd0000
1832 || (insn
& 0x0fff0000) == 0x049d0000)
1833 /* POP of a single register. */
1840 /* Implement immediate value decoding, as described in section A5.2.4
1841 (Modified immediate constants in ARM instructions) of the ARM Architecture
1842 Reference Manual (ARMv7-A and ARMv7-R edition). */
1845 arm_expand_immediate (uint32_t imm
)
1847 /* Immediate values are 12 bits long. */
1848 gdb_assert ((imm
& 0xfffff000) == 0);
1850 uint32_t unrotated_value
= imm
& 0xff;
1851 uint32_t rotate_amount
= (imm
& 0xf00) >> 7;
1853 if (rotate_amount
== 0)
1854 return unrotated_value
;
1856 return ((unrotated_value
>> rotate_amount
)
1857 | (unrotated_value
<< (32 - rotate_amount
)));
1860 /* Analyze an ARM mode prologue starting at PROLOGUE_START and
1861 continuing no further than PROLOGUE_END. If CACHE is non-NULL,
1862 fill it in. Return the first address not recognized as a prologue
1865 We recognize all the instructions typically found in ARM prologues,
1866 plus harmless instructions which can be skipped (either for analysis
1867 purposes, or a more restrictive set that can be skipped when finding
1868 the end of the prologue). */
1871 arm_analyze_prologue (struct gdbarch
*gdbarch
,
1872 CORE_ADDR prologue_start
, CORE_ADDR prologue_end
,
1873 struct arm_prologue_cache
*cache
,
1874 const arm_instruction_reader
&insn_reader
)
1876 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
1878 CORE_ADDR offset
, current_pc
;
1879 pv_t regs
[ARM_FPS_REGNUM
];
1880 CORE_ADDR unrecognized_pc
= 0;
1881 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
1883 /* Search the prologue looking for instructions that set up the
1884 frame pointer, adjust the stack pointer, and save registers.
1886 Be careful, however, and if it doesn't look like a prologue,
1887 don't try to scan it. If, for instance, a frameless function
1888 begins with stmfd sp!, then we will tell ourselves there is
1889 a frame, which will confuse stack traceback, as well as "finish"
1890 and other operations that rely on a knowledge of the stack
1893 for (regno
= 0; regno
< ARM_FPS_REGNUM
; regno
++)
1894 regs
[regno
] = pv_register (regno
, 0);
1895 pv_area
stack (ARM_SP_REGNUM
, gdbarch_addr_bit (gdbarch
));
1897 for (current_pc
= prologue_start
;
1898 current_pc
< prologue_end
;
1901 uint32_t insn
= insn_reader
.read (current_pc
, byte_order_for_code
);
1903 if (insn
== 0xe1a0c00d) /* mov ip, sp */
1905 regs
[ARM_IP_REGNUM
] = regs
[ARM_SP_REGNUM
];
1908 else if ((insn
& 0xfff00000) == 0xe2800000 /* add Rd, Rn, #n */
1909 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
1911 uint32_t imm
= arm_expand_immediate (insn
& 0xfff);
1912 int rd
= bits (insn
, 12, 15);
1913 regs
[rd
] = pv_add_constant (regs
[bits (insn
, 16, 19)], imm
);
1916 else if ((insn
& 0xfff00000) == 0xe2400000 /* sub Rd, Rn, #n */
1917 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
1919 uint32_t imm
= arm_expand_immediate (insn
& 0xfff);
1920 int rd
= bits (insn
, 12, 15);
1921 regs
[rd
] = pv_add_constant (regs
[bits (insn
, 16, 19)], -imm
);
1924 else if ((insn
& 0xffff0fff) == 0xe52d0004) /* str Rd,
1927 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
1929 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
], -4);
1930 stack
.store (regs
[ARM_SP_REGNUM
], 4,
1931 regs
[bits (insn
, 12, 15)]);
1934 else if ((insn
& 0xffff0000) == 0xe92d0000)
1935 /* stmfd sp!, {..., fp, ip, lr, pc}
1937 stmfd sp!, {a1, a2, a3, a4} */
1939 int mask
= insn
& 0xffff;
1941 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
1944 /* Calculate offsets of saved registers. */
1945 for (regno
= ARM_PC_REGNUM
; regno
>= 0; regno
--)
1946 if (mask
& (1 << regno
))
1949 = pv_add_constant (regs
[ARM_SP_REGNUM
], -4);
1950 stack
.store (regs
[ARM_SP_REGNUM
], 4, regs
[regno
]);
1953 else if ((insn
& 0xffff0000) == 0xe54b0000 /* strb rx,[r11,#-n] */
1954 || (insn
& 0xffff00f0) == 0xe14b00b0 /* strh rx,[r11,#-n] */
1955 || (insn
& 0xffffc000) == 0xe50b0000) /* str rx,[r11,#-n] */
1957 /* No need to add this to saved_regs -- it's just an arg reg. */
1960 else if ((insn
& 0xffff0000) == 0xe5cd0000 /* strb rx,[sp,#n] */
1961 || (insn
& 0xffff00f0) == 0xe1cd00b0 /* strh rx,[sp,#n] */
1962 || (insn
& 0xffffc000) == 0xe58d0000) /* str rx,[sp,#n] */
1964 /* No need to add this to saved_regs -- it's just an arg reg. */
1967 else if ((insn
& 0xfff00000) == 0xe8800000 /* stm Rn,
1969 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
1971 /* No need to add this to saved_regs -- it's just arg regs. */
1974 else if ((insn
& 0xfffff000) == 0xe24cb000) /* sub fp, ip #n */
1976 uint32_t imm
= arm_expand_immediate (insn
& 0xfff);
1977 regs
[ARM_FP_REGNUM
] = pv_add_constant (regs
[ARM_IP_REGNUM
], -imm
);
1979 else if ((insn
& 0xfffff000) == 0xe24dd000) /* sub sp, sp #n */
1981 uint32_t imm
= arm_expand_immediate(insn
& 0xfff);
1982 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
], -imm
);
1984 else if ((insn
& 0xffff7fff) == 0xed6d0103 /* stfe f?,
1986 && tdep
->have_fpa_registers
)
1988 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
1991 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
], -12);
1992 regno
= ARM_F0_REGNUM
+ ((insn
>> 12) & 0x07);
1993 stack
.store (regs
[ARM_SP_REGNUM
], 12, regs
[regno
]);
1995 else if ((insn
& 0xffbf0fff) == 0xec2d0200 /* sfmfd f0, 4,
1997 && tdep
->have_fpa_registers
)
1999 int n_saved_fp_regs
;
2000 unsigned int fp_start_reg
, fp_bound_reg
;
2002 if (stack
.store_would_trash (regs
[ARM_SP_REGNUM
]))
2005 if ((insn
& 0x800) == 0x800) /* N0 is set */
2007 if ((insn
& 0x40000) == 0x40000) /* N1 is set */
2008 n_saved_fp_regs
= 3;
2010 n_saved_fp_regs
= 1;
2014 if ((insn
& 0x40000) == 0x40000) /* N1 is set */
2015 n_saved_fp_regs
= 2;
2017 n_saved_fp_regs
= 4;
2020 fp_start_reg
= ARM_F0_REGNUM
+ ((insn
>> 12) & 0x7);
2021 fp_bound_reg
= fp_start_reg
+ n_saved_fp_regs
;
2022 for (; fp_start_reg
< fp_bound_reg
; fp_start_reg
++)
2024 regs
[ARM_SP_REGNUM
] = pv_add_constant (regs
[ARM_SP_REGNUM
], -12);
2025 stack
.store (regs
[ARM_SP_REGNUM
], 12,
2026 regs
[fp_start_reg
++]);
2029 else if ((insn
& 0xff000000) == 0xeb000000 && cache
== NULL
) /* bl */
2031 /* Allow some special function calls when skipping the
2032 prologue; GCC generates these before storing arguments to
2034 CORE_ADDR dest
= BranchDest (current_pc
, insn
);
2036 if (skip_prologue_function (gdbarch
, dest
, 0))
2041 else if ((insn
& 0xf0000000) != 0xe0000000)
2042 break; /* Condition not true, exit early. */
2043 else if (arm_instruction_changes_pc (insn
))
2044 /* Don't scan past anything that might change control flow. */
2046 else if (arm_instruction_restores_sp (insn
))
2048 /* Don't scan past the epilogue. */
2051 else if ((insn
& 0xfe500000) == 0xe8100000 /* ldm */
2052 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
2053 /* Ignore block loads from the stack, potentially copying
2054 parameters from memory. */
2056 else if ((insn
& 0xfc500000) == 0xe4100000
2057 && pv_is_register (regs
[bits (insn
, 16, 19)], ARM_SP_REGNUM
))
2058 /* Similarly ignore single loads from the stack. */
2060 else if ((insn
& 0xffff0ff0) == 0xe1a00000)
2061 /* MOV Rd, Rm. Skip register copies, i.e. saves to another
2062 register instead of the stack. */
2066 /* The optimizer might shove anything into the prologue, if
2067 we build up cache (cache != NULL) from scanning prologue,
2068 we just skip what we don't recognize and scan further to
2069 make cache as complete as possible. However, if we skip
2070 prologue, we'll stop immediately on unrecognized
2072 unrecognized_pc
= current_pc
;
2080 if (unrecognized_pc
== 0)
2081 unrecognized_pc
= current_pc
;
2085 int framereg
, framesize
;
2087 /* The frame size is just the distance from the frame register
2088 to the original stack pointer. */
2089 if (pv_is_register (regs
[ARM_FP_REGNUM
], ARM_SP_REGNUM
))
2091 /* Frame pointer is fp. */
2092 framereg
= ARM_FP_REGNUM
;
2093 framesize
= -regs
[ARM_FP_REGNUM
].k
;
2097 /* Try the stack pointer... this is a bit desperate. */
2098 framereg
= ARM_SP_REGNUM
;
2099 framesize
= -regs
[ARM_SP_REGNUM
].k
;
2102 cache
->framereg
= framereg
;
2103 cache
->framesize
= framesize
;
2105 for (regno
= 0; regno
< ARM_FPS_REGNUM
; regno
++)
2106 if (stack
.find_reg (gdbarch
, regno
, &offset
))
2108 cache
->saved_regs
[regno
].set_addr (offset
);
2109 if (regno
== ARM_SP_REGNUM
)
2110 arm_cache_set_active_sp_value(cache
, tdep
, offset
);
2114 arm_debug_printf ("Prologue scan stopped at %s",
2115 paddress (gdbarch
, unrecognized_pc
));
2117 return unrecognized_pc
;
2121 arm_scan_prologue (struct frame_info
*this_frame
,
2122 struct arm_prologue_cache
*cache
)
2124 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2125 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2126 CORE_ADDR prologue_start
, prologue_end
;
2127 CORE_ADDR prev_pc
= get_frame_pc (this_frame
);
2128 CORE_ADDR block_addr
= get_frame_address_in_block (this_frame
);
2129 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
2131 /* Assume there is no frame until proven otherwise. */
2132 cache
->framereg
= ARM_SP_REGNUM
;
2133 cache
->framesize
= 0;
2135 /* Check for Thumb prologue. */
2136 if (arm_frame_is_thumb (this_frame
))
2138 thumb_scan_prologue (gdbarch
, prev_pc
, block_addr
, cache
);
2142 /* Find the function prologue. If we can't find the function in
2143 the symbol table, peek in the stack frame to find the PC. */
2144 if (find_pc_partial_function (block_addr
, NULL
, &prologue_start
,
2147 /* One way to find the end of the prologue (which works well
2148 for unoptimized code) is to do the following:
2150 struct symtab_and_line sal = find_pc_line (prologue_start, 0);
2153 prologue_end = prev_pc;
2154 else if (sal.end < prologue_end)
2155 prologue_end = sal.end;
2157 This mechanism is very accurate so long as the optimizer
2158 doesn't move any instructions from the function body into the
2159 prologue. If this happens, sal.end will be the last
2160 instruction in the first hunk of prologue code just before
2161 the first instruction that the scheduler has moved from
2162 the body to the prologue.
2164 In order to make sure that we scan all of the prologue
2165 instructions, we use a slightly less accurate mechanism which
2166 may scan more than necessary. To help compensate for this
2167 lack of accuracy, the prologue scanning loop below contains
2168 several clauses which'll cause the loop to terminate early if
2169 an implausible prologue instruction is encountered.
2175 is a suitable endpoint since it accounts for the largest
2176 possible prologue plus up to five instructions inserted by
2179 if (prologue_end
> prologue_start
+ 64)
2181 prologue_end
= prologue_start
+ 64; /* See above. */
2186 /* We have no symbol information. Our only option is to assume this
2187 function has a standard stack frame and the normal frame register.
2188 Then, we can find the value of our frame pointer on entrance to
2189 the callee (or at the present moment if this is the innermost frame).
2190 The value stored there should be the address of the stmfd + 8. */
2191 CORE_ADDR frame_loc
;
2192 ULONGEST return_value
;
2194 /* AAPCS does not use a frame register, so we can abort here. */
2195 if (tdep
->arm_abi
== ARM_ABI_AAPCS
)
2198 frame_loc
= get_frame_register_unsigned (this_frame
, ARM_FP_REGNUM
);
2199 if (!safe_read_memory_unsigned_integer (frame_loc
, 4, byte_order
,
2204 prologue_start
= gdbarch_addr_bits_remove
2205 (gdbarch
, return_value
) - 8;
2206 prologue_end
= prologue_start
+ 64; /* See above. */
2210 if (prev_pc
< prologue_end
)
2211 prologue_end
= prev_pc
;
2213 arm_analyze_prologue (gdbarch
, prologue_start
, prologue_end
, cache
,
2214 target_arm_instruction_reader ());
2217 static struct arm_prologue_cache
*
2218 arm_make_prologue_cache (struct frame_info
*this_frame
)
2221 struct arm_prologue_cache
*cache
;
2222 CORE_ADDR unwound_fp
, prev_sp
;
2224 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
2225 arm_cache_init (cache
, this_frame
);
2227 arm_scan_prologue (this_frame
, cache
);
2229 unwound_fp
= get_frame_register_unsigned (this_frame
, cache
->framereg
);
2230 if (unwound_fp
== 0)
2233 arm_gdbarch_tdep
*tdep
=
2234 (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
2236 prev_sp
= unwound_fp
+ cache
->framesize
;
2237 arm_cache_set_active_sp_value (cache
, tdep
, prev_sp
);
2239 /* Calculate actual addresses of saved registers using offsets
2240 determined by arm_scan_prologue. */
2241 for (reg
= 0; reg
< gdbarch_num_regs (get_frame_arch (this_frame
)); reg
++)
2242 if (cache
->saved_regs
[reg
].is_addr ())
2243 cache
->saved_regs
[reg
].set_addr (cache
->saved_regs
[reg
].addr () +
2249 /* Implementation of the stop_reason hook for arm_prologue frames. */
2251 static enum unwind_stop_reason
2252 arm_prologue_unwind_stop_reason (struct frame_info
*this_frame
,
2255 struct arm_prologue_cache
*cache
;
2258 if (*this_cache
== NULL
)
2259 *this_cache
= arm_make_prologue_cache (this_frame
);
2260 cache
= (struct arm_prologue_cache
*) *this_cache
;
2262 /* This is meant to halt the backtrace at "_start". */
2263 pc
= get_frame_pc (this_frame
);
2264 gdbarch
*arch
= get_frame_arch (this_frame
);
2265 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (arch
);
2266 if (pc
<= tdep
->lowest_pc
)
2267 return UNWIND_OUTERMOST
;
2269 /* If we've hit a wall, stop. */
2270 if (arm_cache_get_prev_sp_value (cache
, tdep
) == 0)
2271 return UNWIND_OUTERMOST
;
2273 return UNWIND_NO_REASON
;
2276 /* Our frame ID for a normal frame is the current function's starting PC
2277 and the caller's SP when we were called. */
2280 arm_prologue_this_id (struct frame_info
*this_frame
,
2282 struct frame_id
*this_id
)
2284 struct arm_prologue_cache
*cache
;
2288 if (*this_cache
== NULL
)
2289 *this_cache
= arm_make_prologue_cache (this_frame
);
2290 cache
= (struct arm_prologue_cache
*) *this_cache
;
2292 arm_gdbarch_tdep
*tdep
2293 = (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
2295 /* Use function start address as part of the frame ID. If we cannot
2296 identify the start address (due to missing symbol information),
2297 fall back to just using the current PC. */
2298 pc
= get_frame_pc (this_frame
);
2299 func
= get_frame_func (this_frame
);
2303 id
= frame_id_build (arm_cache_get_prev_sp_value (cache
, tdep
), func
);
2307 static struct value
*
2308 arm_prologue_prev_register (struct frame_info
*this_frame
,
2312 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2313 struct arm_prologue_cache
*cache
;
2316 if (*this_cache
== NULL
)
2317 *this_cache
= arm_make_prologue_cache (this_frame
);
2318 cache
= (struct arm_prologue_cache
*) *this_cache
;
2320 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
2322 /* If this frame has signed the return address, mark it as so. */
2323 if (tdep
->have_pacbti
&& cache
->ra_signed_state
.has_value ()
2324 && *cache
->ra_signed_state
)
2325 set_frame_previous_pc_masked (this_frame
);
2327 /* If we are asked to unwind the PC, then we need to return the LR
2328 instead. The prologue may save PC, but it will point into this
2329 frame's prologue, not the next frame's resume location. Also
2330 strip the saved T bit. A valid LR may have the low bit set, but
2331 a valid PC never does. */
2332 if (prev_regnum
== ARM_PC_REGNUM
)
2336 lr
= frame_unwind_register_unsigned (this_frame
, ARM_LR_REGNUM
);
2337 return frame_unwind_got_constant (this_frame
, prev_regnum
,
2338 arm_addr_bits_remove (gdbarch
, lr
));
2341 /* SP is generally not saved to the stack, but this frame is
2342 identified by the next frame's stack pointer at the time of the call.
2343 The value was already reconstructed into PREV_SP. */
2344 if (prev_regnum
== ARM_SP_REGNUM
)
2345 return frame_unwind_got_constant (this_frame
, prev_regnum
,
2346 arm_cache_get_prev_sp_value (cache
, tdep
));
2348 /* The value might be one of the alternative SP, if so, use the
2349 value already constructed. */
2350 if (arm_cache_is_sp_register (cache
, tdep
, prev_regnum
))
2352 sp_value
= arm_cache_get_sp_register (cache
, tdep
, prev_regnum
);
2353 return frame_unwind_got_constant (this_frame
, prev_regnum
, sp_value
);
2356 /* The CPSR may have been changed by the call instruction and by the
2357 called function. The only bit we can reconstruct is the T bit,
2358 by checking the low bit of LR as of the call. This is a reliable
2359 indicator of Thumb-ness except for some ARM v4T pre-interworking
2360 Thumb code, which could get away with a clear low bit as long as
2361 the called function did not use bx. Guess that all other
2362 bits are unchanged; the condition flags are presumably lost,
2363 but the processor status is likely valid. */
2364 if (prev_regnum
== ARM_PS_REGNUM
)
2366 ULONGEST cpsr
= get_frame_register_unsigned (this_frame
, prev_regnum
);
2367 CORE_ADDR lr
= frame_unwind_register_unsigned (this_frame
, ARM_LR_REGNUM
);
2369 cpsr
= reconstruct_t_bit (gdbarch
, lr
, cpsr
);
2370 return frame_unwind_got_constant (this_frame
, prev_regnum
, cpsr
);
2373 return trad_frame_get_prev_register (this_frame
, cache
->saved_regs
,
2377 static frame_unwind arm_prologue_unwind
= {
2380 arm_prologue_unwind_stop_reason
,
2381 arm_prologue_this_id
,
2382 arm_prologue_prev_register
,
2384 default_frame_sniffer
2387 /* Maintain a list of ARM exception table entries per objfile, similar to the
2388 list of mapping symbols. We only cache entries for standard ARM-defined
2389 personality routines; the cache will contain only the frame unwinding
2390 instructions associated with the entry (not the descriptors). */
2392 struct arm_exidx_entry
2397 bool operator< (const arm_exidx_entry
&other
) const
2399 return addr
< other
.addr
;
2403 struct arm_exidx_data
2405 std::vector
<std::vector
<arm_exidx_entry
>> section_maps
;
2408 /* Per-BFD key to store exception handling information. */
2409 static const struct bfd_key
<arm_exidx_data
> arm_exidx_data_key
;
2411 static struct obj_section
*
2412 arm_obj_section_from_vma (struct objfile
*objfile
, bfd_vma vma
)
2414 struct obj_section
*osect
;
2416 ALL_OBJFILE_OSECTIONS (objfile
, osect
)
2417 if (bfd_section_flags (osect
->the_bfd_section
) & SEC_ALLOC
)
2419 bfd_vma start
, size
;
2420 start
= bfd_section_vma (osect
->the_bfd_section
);
2421 size
= bfd_section_size (osect
->the_bfd_section
);
2423 if (start
<= vma
&& vma
< start
+ size
)
2430 /* Parse contents of exception table and exception index sections
2431 of OBJFILE, and fill in the exception table entry cache.
2433 For each entry that refers to a standard ARM-defined personality
2434 routine, extract the frame unwinding instructions (from either
2435 the index or the table section). The unwinding instructions
2437 - extracting them from the rest of the table data
2438 - converting to host endianness
2439 - appending the implicit 0xb0 ("Finish") code
2441 The extracted and normalized instructions are stored for later
2442 retrieval by the arm_find_exidx_entry routine. */
2445 arm_exidx_new_objfile (struct objfile
*objfile
)
2447 struct arm_exidx_data
*data
;
2448 asection
*exidx
, *extab
;
2449 bfd_vma exidx_vma
= 0, extab_vma
= 0;
2452 /* If we've already touched this file, do nothing. */
2453 if (!objfile
|| arm_exidx_data_key
.get (objfile
->obfd
) != NULL
)
2456 /* Read contents of exception table and index. */
2457 exidx
= bfd_get_section_by_name (objfile
->obfd
, ELF_STRING_ARM_unwind
);
2458 gdb::byte_vector exidx_data
;
2461 exidx_vma
= bfd_section_vma (exidx
);
2462 exidx_data
.resize (bfd_section_size (exidx
));
2464 if (!bfd_get_section_contents (objfile
->obfd
, exidx
,
2465 exidx_data
.data (), 0,
2466 exidx_data
.size ()))
2470 extab
= bfd_get_section_by_name (objfile
->obfd
, ".ARM.extab");
2471 gdb::byte_vector extab_data
;
2474 extab_vma
= bfd_section_vma (extab
);
2475 extab_data
.resize (bfd_section_size (extab
));
2477 if (!bfd_get_section_contents (objfile
->obfd
, extab
,
2478 extab_data
.data (), 0,
2479 extab_data
.size ()))
2483 /* Allocate exception table data structure. */
2484 data
= arm_exidx_data_key
.emplace (objfile
->obfd
);
2485 data
->section_maps
.resize (objfile
->obfd
->section_count
);
2487 /* Fill in exception table. */
2488 for (i
= 0; i
< exidx_data
.size () / 8; i
++)
2490 struct arm_exidx_entry new_exidx_entry
;
2491 bfd_vma idx
= bfd_h_get_32 (objfile
->obfd
, exidx_data
.data () + i
* 8);
2492 bfd_vma val
= bfd_h_get_32 (objfile
->obfd
,
2493 exidx_data
.data () + i
* 8 + 4);
2494 bfd_vma addr
= 0, word
= 0;
2495 int n_bytes
= 0, n_words
= 0;
2496 struct obj_section
*sec
;
2497 gdb_byte
*entry
= NULL
;
2499 /* Extract address of start of function. */
2500 idx
= ((idx
& 0x7fffffff) ^ 0x40000000) - 0x40000000;
2501 idx
+= exidx_vma
+ i
* 8;
2503 /* Find section containing function and compute section offset. */
2504 sec
= arm_obj_section_from_vma (objfile
, idx
);
2507 idx
-= bfd_section_vma (sec
->the_bfd_section
);
2509 /* Determine address of exception table entry. */
2512 /* EXIDX_CANTUNWIND -- no exception table entry present. */
2514 else if ((val
& 0xff000000) == 0x80000000)
2516 /* Exception table entry embedded in .ARM.exidx
2517 -- must be short form. */
2521 else if (!(val
& 0x80000000))
2523 /* Exception table entry in .ARM.extab. */
2524 addr
= ((val
& 0x7fffffff) ^ 0x40000000) - 0x40000000;
2525 addr
+= exidx_vma
+ i
* 8 + 4;
2527 if (addr
>= extab_vma
&& addr
+ 4 <= extab_vma
+ extab_data
.size ())
2529 word
= bfd_h_get_32 (objfile
->obfd
,
2530 extab_data
.data () + addr
- extab_vma
);
2533 if ((word
& 0xff000000) == 0x80000000)
2538 else if ((word
& 0xff000000) == 0x81000000
2539 || (word
& 0xff000000) == 0x82000000)
2543 n_words
= ((word
>> 16) & 0xff);
2545 else if (!(word
& 0x80000000))
2548 struct obj_section
*pers_sec
;
2549 int gnu_personality
= 0;
2551 /* Custom personality routine. */
2552 pers
= ((word
& 0x7fffffff) ^ 0x40000000) - 0x40000000;
2553 pers
= UNMAKE_THUMB_ADDR (pers
+ addr
- 4);
2555 /* Check whether we've got one of the variants of the
2556 GNU personality routines. */
2557 pers_sec
= arm_obj_section_from_vma (objfile
, pers
);
2560 static const char *personality
[] =
2562 "__gcc_personality_v0",
2563 "__gxx_personality_v0",
2564 "__gcj_personality_v0",
2565 "__gnu_objc_personality_v0",
2569 CORE_ADDR pc
= pers
+ pers_sec
->offset ();
2572 for (k
= 0; personality
[k
]; k
++)
2573 if (lookup_minimal_symbol_by_pc_name
2574 (pc
, personality
[k
], objfile
))
2576 gnu_personality
= 1;
2581 /* If so, the next word contains a word count in the high
2582 byte, followed by the same unwind instructions as the
2583 pre-defined forms. */
2585 && addr
+ 4 <= extab_vma
+ extab_data
.size ())
2587 word
= bfd_h_get_32 (objfile
->obfd
,
2589 + addr
- extab_vma
));
2592 n_words
= ((word
>> 24) & 0xff);
2598 /* Sanity check address. */
2600 if (addr
< extab_vma
2601 || addr
+ 4 * n_words
> extab_vma
+ extab_data
.size ())
2602 n_words
= n_bytes
= 0;
2604 /* The unwind instructions reside in WORD (only the N_BYTES least
2605 significant bytes are valid), followed by N_WORDS words in the
2606 extab section starting at ADDR. */
2607 if (n_bytes
|| n_words
)
2610 = (gdb_byte
*) obstack_alloc (&objfile
->objfile_obstack
,
2611 n_bytes
+ n_words
* 4 + 1);
2614 *p
++ = (gdb_byte
) ((word
>> (8 * n_bytes
)) & 0xff);
2618 word
= bfd_h_get_32 (objfile
->obfd
,
2619 extab_data
.data () + addr
- extab_vma
);
2622 *p
++ = (gdb_byte
) ((word
>> 24) & 0xff);
2623 *p
++ = (gdb_byte
) ((word
>> 16) & 0xff);
2624 *p
++ = (gdb_byte
) ((word
>> 8) & 0xff);
2625 *p
++ = (gdb_byte
) (word
& 0xff);
2628 /* Implied "Finish" to terminate the list. */
2632 /* Push entry onto vector. They are guaranteed to always
2633 appear in order of increasing addresses. */
2634 new_exidx_entry
.addr
= idx
;
2635 new_exidx_entry
.entry
= entry
;
2636 data
->section_maps
[sec
->the_bfd_section
->index
].push_back
2641 /* Search for the exception table entry covering MEMADDR. If one is found,
2642 return a pointer to its data. Otherwise, return 0. If START is non-NULL,
2643 set *START to the start of the region covered by this entry. */
2646 arm_find_exidx_entry (CORE_ADDR memaddr
, CORE_ADDR
*start
)
2648 struct obj_section
*sec
;
2650 sec
= find_pc_section (memaddr
);
2653 struct arm_exidx_data
*data
;
2654 struct arm_exidx_entry map_key
= { memaddr
- sec
->addr (), 0 };
2656 data
= arm_exidx_data_key
.get (sec
->objfile
->obfd
);
2659 std::vector
<arm_exidx_entry
> &map
2660 = data
->section_maps
[sec
->the_bfd_section
->index
];
2663 auto idx
= std::lower_bound (map
.begin (), map
.end (), map_key
);
2665 /* std::lower_bound finds the earliest ordered insertion
2666 point. If the following symbol starts at this exact
2667 address, we use that; otherwise, the preceding
2668 exception table entry covers this address. */
2669 if (idx
< map
.end ())
2671 if (idx
->addr
== map_key
.addr
)
2674 *start
= idx
->addr
+ sec
->addr ();
2679 if (idx
> map
.begin ())
2683 *start
= idx
->addr
+ sec
->addr ();
2693 /* Given the current frame THIS_FRAME, and its associated frame unwinding
2694 instruction list from the ARM exception table entry ENTRY, allocate and
2695 return a prologue cache structure describing how to unwind this frame.
2697 Return NULL if the unwinding instruction list contains a "spare",
2698 "reserved" or "refuse to unwind" instruction as defined in section
2699 "9.3 Frame unwinding instructions" of the "Exception Handling ABI
2700 for the ARM Architecture" document. */
2702 static struct arm_prologue_cache
*
2703 arm_exidx_fill_cache (struct frame_info
*this_frame
, gdb_byte
*entry
)
2708 struct arm_prologue_cache
*cache
;
2709 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
2710 arm_cache_init (cache
, this_frame
);
2716 /* Whenever we reload SP, we actually have to retrieve its
2717 actual value in the current frame. */
2720 if (cache
->saved_regs
[ARM_SP_REGNUM
].is_realreg ())
2722 int reg
= cache
->saved_regs
[ARM_SP_REGNUM
].realreg ();
2723 vsp
= get_frame_register_unsigned (this_frame
, reg
);
2727 CORE_ADDR addr
= cache
->saved_regs
[ARM_SP_REGNUM
].addr ();
2728 vsp
= get_frame_memory_unsigned (this_frame
, addr
, 4);
2734 /* Decode next unwind instruction. */
2737 if ((insn
& 0xc0) == 0)
2739 int offset
= insn
& 0x3f;
2740 vsp
+= (offset
<< 2) + 4;
2742 else if ((insn
& 0xc0) == 0x40)
2744 int offset
= insn
& 0x3f;
2745 vsp
-= (offset
<< 2) + 4;
2747 else if ((insn
& 0xf0) == 0x80)
2749 int mask
= ((insn
& 0xf) << 8) | *entry
++;
2752 /* The special case of an all-zero mask identifies
2753 "Refuse to unwind". We return NULL to fall back
2754 to the prologue analyzer. */
2758 /* Pop registers r4..r15 under mask. */
2759 for (i
= 0; i
< 12; i
++)
2760 if (mask
& (1 << i
))
2762 cache
->saved_regs
[4 + i
].set_addr (vsp
);
2766 /* Special-case popping SP -- we need to reload vsp. */
2767 if (mask
& (1 << (ARM_SP_REGNUM
- 4)))
2770 else if ((insn
& 0xf0) == 0x90)
2772 int reg
= insn
& 0xf;
2774 /* Reserved cases. */
2775 if (reg
== ARM_SP_REGNUM
|| reg
== ARM_PC_REGNUM
)
2778 /* Set SP from another register and mark VSP for reload. */
2779 cache
->saved_regs
[ARM_SP_REGNUM
] = cache
->saved_regs
[reg
];
2782 else if ((insn
& 0xf0) == 0xa0)
2784 int count
= insn
& 0x7;
2785 int pop_lr
= (insn
& 0x8) != 0;
2788 /* Pop r4..r[4+count]. */
2789 for (i
= 0; i
<= count
; i
++)
2791 cache
->saved_regs
[4 + i
].set_addr (vsp
);
2795 /* If indicated by flag, pop LR as well. */
2798 cache
->saved_regs
[ARM_LR_REGNUM
].set_addr (vsp
);
2802 else if (insn
== 0xb0)
2804 /* We could only have updated PC by popping into it; if so, it
2805 will show up as address. Otherwise, copy LR into PC. */
2806 if (!cache
->saved_regs
[ARM_PC_REGNUM
].is_addr ())
2807 cache
->saved_regs
[ARM_PC_REGNUM
]
2808 = cache
->saved_regs
[ARM_LR_REGNUM
];
2813 else if (insn
== 0xb1)
2815 int mask
= *entry
++;
2818 /* All-zero mask and mask >= 16 is "spare". */
2819 if (mask
== 0 || mask
>= 16)
2822 /* Pop r0..r3 under mask. */
2823 for (i
= 0; i
< 4; i
++)
2824 if (mask
& (1 << i
))
2826 cache
->saved_regs
[i
].set_addr (vsp
);
2830 else if (insn
== 0xb2)
2832 ULONGEST offset
= 0;
2837 offset
|= (*entry
& 0x7f) << shift
;
2840 while (*entry
++ & 0x80);
2842 vsp
+= 0x204 + (offset
<< 2);
2844 else if (insn
== 0xb3)
2846 int start
= *entry
>> 4;
2847 int count
= (*entry
++) & 0xf;
2850 /* Only registers D0..D15 are valid here. */
2851 if (start
+ count
>= 16)
2854 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2855 for (i
= 0; i
<= count
; i
++)
2857 cache
->saved_regs
[ARM_D0_REGNUM
+ start
+ i
].set_addr (vsp
);
2861 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2864 else if ((insn
& 0xf8) == 0xb8)
2866 int count
= insn
& 0x7;
2869 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2870 for (i
= 0; i
<= count
; i
++)
2872 cache
->saved_regs
[ARM_D0_REGNUM
+ 8 + i
].set_addr (vsp
);
2876 /* Add an extra 4 bytes for FSTMFDX-style stack. */
2879 else if (insn
== 0xc6)
2881 int start
= *entry
>> 4;
2882 int count
= (*entry
++) & 0xf;
2885 /* Only registers WR0..WR15 are valid. */
2886 if (start
+ count
>= 16)
2889 /* Pop iwmmx registers WR[start]..WR[start+count]. */
2890 for (i
= 0; i
<= count
; i
++)
2892 cache
->saved_regs
[ARM_WR0_REGNUM
+ start
+ i
].set_addr (vsp
);
2896 else if (insn
== 0xc7)
2898 int mask
= *entry
++;
2901 /* All-zero mask and mask >= 16 is "spare". */
2902 if (mask
== 0 || mask
>= 16)
2905 /* Pop iwmmx general-purpose registers WCGR0..WCGR3 under mask. */
2906 for (i
= 0; i
< 4; i
++)
2907 if (mask
& (1 << i
))
2909 cache
->saved_regs
[ARM_WCGR0_REGNUM
+ i
].set_addr (vsp
);
2913 else if ((insn
& 0xf8) == 0xc0)
2915 int count
= insn
& 0x7;
2918 /* Pop iwmmx registers WR[10]..WR[10+count]. */
2919 for (i
= 0; i
<= count
; i
++)
2921 cache
->saved_regs
[ARM_WR0_REGNUM
+ 10 + i
].set_addr (vsp
);
2925 else if (insn
== 0xc8)
2927 int start
= *entry
>> 4;
2928 int count
= (*entry
++) & 0xf;
2931 /* Only registers D0..D31 are valid. */
2932 if (start
+ count
>= 16)
2935 /* Pop VFP double-precision registers
2936 D[16+start]..D[16+start+count]. */
2937 for (i
= 0; i
<= count
; i
++)
2939 cache
->saved_regs
[ARM_D0_REGNUM
+ 16 + start
+ i
].set_addr (vsp
);
2943 else if (insn
== 0xc9)
2945 int start
= *entry
>> 4;
2946 int count
= (*entry
++) & 0xf;
2949 /* Pop VFP double-precision registers D[start]..D[start+count]. */
2950 for (i
= 0; i
<= count
; i
++)
2952 cache
->saved_regs
[ARM_D0_REGNUM
+ start
+ i
].set_addr (vsp
);
2956 else if ((insn
& 0xf8) == 0xd0)
2958 int count
= insn
& 0x7;
2961 /* Pop VFP double-precision registers D[8]..D[8+count]. */
2962 for (i
= 0; i
<= count
; i
++)
2964 cache
->saved_regs
[ARM_D0_REGNUM
+ 8 + i
].set_addr (vsp
);
2970 /* Everything else is "spare". */
2975 /* If we restore SP from a register, assume this was the frame register.
2976 Otherwise just fall back to SP as frame register. */
2977 if (cache
->saved_regs
[ARM_SP_REGNUM
].is_realreg ())
2978 cache
->framereg
= cache
->saved_regs
[ARM_SP_REGNUM
].realreg ();
2980 cache
->framereg
= ARM_SP_REGNUM
;
2982 /* Determine offset to previous frame. */
2984 = vsp
- get_frame_register_unsigned (this_frame
, cache
->framereg
);
2986 /* We already got the previous SP. */
2987 arm_gdbarch_tdep
*tdep
2988 = (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
2989 arm_cache_set_active_sp_value (cache
, tdep
, vsp
);
2994 /* Unwinding via ARM exception table entries. Note that the sniffer
2995 already computes a filled-in prologue cache, which is then used
2996 with the same arm_prologue_this_id and arm_prologue_prev_register
2997 routines also used for prologue-parsing based unwinding. */
3000 arm_exidx_unwind_sniffer (const struct frame_unwind
*self
,
3001 struct frame_info
*this_frame
,
3002 void **this_prologue_cache
)
3004 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
3005 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
3006 CORE_ADDR addr_in_block
, exidx_region
, func_start
;
3007 struct arm_prologue_cache
*cache
;
3010 /* See if we have an ARM exception table entry covering this address. */
3011 addr_in_block
= get_frame_address_in_block (this_frame
);
3012 entry
= arm_find_exidx_entry (addr_in_block
, &exidx_region
);
3016 /* The ARM exception table does not describe unwind information
3017 for arbitrary PC values, but is guaranteed to be correct only
3018 at call sites. We have to decide here whether we want to use
3019 ARM exception table information for this frame, or fall back
3020 to using prologue parsing. (Note that if we have DWARF CFI,
3021 this sniffer isn't even called -- CFI is always preferred.)
3023 Before we make this decision, however, we check whether we
3024 actually have *symbol* information for the current frame.
3025 If not, prologue parsing would not work anyway, so we might
3026 as well use the exception table and hope for the best. */
3027 if (find_pc_partial_function (addr_in_block
, NULL
, &func_start
, NULL
))
3031 /* If the next frame is "normal", we are at a call site in this
3032 frame, so exception information is guaranteed to be valid. */
3033 if (get_next_frame (this_frame
)
3034 && get_frame_type (get_next_frame (this_frame
)) == NORMAL_FRAME
)
3037 /* We also assume exception information is valid if we're currently
3038 blocked in a system call. The system library is supposed to
3039 ensure this, so that e.g. pthread cancellation works. */
3040 if (arm_frame_is_thumb (this_frame
))
3044 if (safe_read_memory_unsigned_integer (get_frame_pc (this_frame
) - 2,
3045 2, byte_order_for_code
, &insn
)
3046 && (insn
& 0xff00) == 0xdf00 /* svc */)
3053 if (safe_read_memory_unsigned_integer (get_frame_pc (this_frame
) - 4,
3054 4, byte_order_for_code
, &insn
)
3055 && (insn
& 0x0f000000) == 0x0f000000 /* svc */)
3059 /* Bail out if we don't know that exception information is valid. */
3063 /* The ARM exception index does not mark the *end* of the region
3064 covered by the entry, and some functions will not have any entry.
3065 To correctly recognize the end of the covered region, the linker
3066 should have inserted dummy records with a CANTUNWIND marker.
3068 Unfortunately, current versions of GNU ld do not reliably do
3069 this, and thus we may have found an incorrect entry above.
3070 As a (temporary) sanity check, we only use the entry if it
3071 lies *within* the bounds of the function. Note that this check
3072 might reject perfectly valid entries that just happen to cover
3073 multiple functions; therefore this check ought to be removed
3074 once the linker is fixed. */
3075 if (func_start
> exidx_region
)
3079 /* Decode the list of unwinding instructions into a prologue cache.
3080 Note that this may fail due to e.g. a "refuse to unwind" code. */
3081 cache
= arm_exidx_fill_cache (this_frame
, entry
);
3085 *this_prologue_cache
= cache
;
3089 struct frame_unwind arm_exidx_unwind
= {
3092 default_frame_unwind_stop_reason
,
3093 arm_prologue_this_id
,
3094 arm_prologue_prev_register
,
3096 arm_exidx_unwind_sniffer
3099 static struct arm_prologue_cache
*
3100 arm_make_epilogue_frame_cache (struct frame_info
*this_frame
)
3102 struct arm_prologue_cache
*cache
;
3105 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
3106 arm_cache_init (cache
, this_frame
);
3108 /* Still rely on the offset calculated from prologue. */
3109 arm_scan_prologue (this_frame
, cache
);
3111 /* Since we are in epilogue, the SP has been restored. */
3112 arm_gdbarch_tdep
*tdep
3113 = (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
3114 arm_cache_set_active_sp_value (cache
, tdep
,
3115 get_frame_register_unsigned (this_frame
,
3118 /* Calculate actual addresses of saved registers using offsets
3119 determined by arm_scan_prologue. */
3120 for (reg
= 0; reg
< gdbarch_num_regs (get_frame_arch (this_frame
)); reg
++)
3121 if (cache
->saved_regs
[reg
].is_addr ())
3122 cache
->saved_regs
[reg
].set_addr (cache
->saved_regs
[reg
].addr ()
3123 + arm_cache_get_prev_sp_value (cache
, tdep
));
3128 /* Implementation of function hook 'this_id' in
3129 'struct frame_uwnind' for epilogue unwinder. */
3132 arm_epilogue_frame_this_id (struct frame_info
*this_frame
,
3134 struct frame_id
*this_id
)
3136 struct arm_prologue_cache
*cache
;
3139 if (*this_cache
== NULL
)
3140 *this_cache
= arm_make_epilogue_frame_cache (this_frame
);
3141 cache
= (struct arm_prologue_cache
*) *this_cache
;
3143 /* Use function start address as part of the frame ID. If we cannot
3144 identify the start address (due to missing symbol information),
3145 fall back to just using the current PC. */
3146 pc
= get_frame_pc (this_frame
);
3147 func
= get_frame_func (this_frame
);
3151 arm_gdbarch_tdep
*tdep
3152 = (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
3153 *this_id
= frame_id_build (arm_cache_get_prev_sp_value (cache
, tdep
), pc
);
3156 /* Implementation of function hook 'prev_register' in
3157 'struct frame_uwnind' for epilogue unwinder. */
3159 static struct value
*
3160 arm_epilogue_frame_prev_register (struct frame_info
*this_frame
,
3161 void **this_cache
, int regnum
)
3163 if (*this_cache
== NULL
)
3164 *this_cache
= arm_make_epilogue_frame_cache (this_frame
);
3166 return arm_prologue_prev_register (this_frame
, this_cache
, regnum
);
3169 static int arm_stack_frame_destroyed_p_1 (struct gdbarch
*gdbarch
,
3171 static int thumb_stack_frame_destroyed_p (struct gdbarch
*gdbarch
,
3174 /* Implementation of function hook 'sniffer' in
3175 'struct frame_uwnind' for epilogue unwinder. */
3178 arm_epilogue_frame_sniffer (const struct frame_unwind
*self
,
3179 struct frame_info
*this_frame
,
3180 void **this_prologue_cache
)
3182 if (frame_relative_level (this_frame
) == 0)
3184 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
3185 CORE_ADDR pc
= get_frame_pc (this_frame
);
3187 if (arm_frame_is_thumb (this_frame
))
3188 return thumb_stack_frame_destroyed_p (gdbarch
, pc
);
3190 return arm_stack_frame_destroyed_p_1 (gdbarch
, pc
);
3196 /* Frame unwinder from epilogue. */
3198 static const struct frame_unwind arm_epilogue_frame_unwind
=
3202 default_frame_unwind_stop_reason
,
3203 arm_epilogue_frame_this_id
,
3204 arm_epilogue_frame_prev_register
,
3206 arm_epilogue_frame_sniffer
,
3209 /* Recognize GCC's trampoline for thumb call-indirect. If we are in a
3210 trampoline, return the target PC. Otherwise return 0.
3212 void call0a (char c, short s, int i, long l) {}
3216 (*pointer_to_call0a) (c, s, i, l);
3219 Instead of calling a stub library function _call_via_xx (xx is
3220 the register name), GCC may inline the trampoline in the object
3221 file as below (register r2 has the address of call0a).
3224 .type main, %function
3233 The trampoline 'bx r2' doesn't belong to main. */
3236 arm_skip_bx_reg (struct frame_info
*frame
, CORE_ADDR pc
)
3238 /* The heuristics of recognizing such trampoline is that FRAME is
3239 executing in Thumb mode and the instruction on PC is 'bx Rm'. */
3240 if (arm_frame_is_thumb (frame
))
3244 if (target_read_memory (pc
, buf
, 2) == 0)
3246 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
3247 enum bfd_endian byte_order_for_code
3248 = gdbarch_byte_order_for_code (gdbarch
);
3250 = extract_unsigned_integer (buf
, 2, byte_order_for_code
);
3252 if ((insn
& 0xff80) == 0x4700) /* bx <Rm> */
3255 = get_frame_register_unsigned (frame
, bits (insn
, 3, 6));
3257 /* Clear the LSB so that gdb core sets step-resume
3258 breakpoint at the right address. */
3259 return UNMAKE_THUMB_ADDR (dest
);
3267 static struct arm_prologue_cache
*
3268 arm_make_stub_cache (struct frame_info
*this_frame
)
3270 struct arm_prologue_cache
*cache
;
3272 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
3273 arm_cache_init (cache
, this_frame
);
3275 arm_gdbarch_tdep
*tdep
3276 = (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
3277 arm_cache_set_active_sp_value (cache
, tdep
,
3278 get_frame_register_unsigned (this_frame
,
3284 /* Our frame ID for a stub frame is the current SP and LR. */
3287 arm_stub_this_id (struct frame_info
*this_frame
,
3289 struct frame_id
*this_id
)
3291 struct arm_prologue_cache
*cache
;
3293 if (*this_cache
== NULL
)
3294 *this_cache
= arm_make_stub_cache (this_frame
);
3295 cache
= (struct arm_prologue_cache
*) *this_cache
;
3297 arm_gdbarch_tdep
*tdep
3298 = (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
3299 *this_id
= frame_id_build (arm_cache_get_prev_sp_value (cache
, tdep
),
3300 get_frame_pc (this_frame
));
3304 arm_stub_unwind_sniffer (const struct frame_unwind
*self
,
3305 struct frame_info
*this_frame
,
3306 void **this_prologue_cache
)
3308 CORE_ADDR addr_in_block
;
3310 CORE_ADDR pc
, start_addr
;
3313 addr_in_block
= get_frame_address_in_block (this_frame
);
3314 pc
= get_frame_pc (this_frame
);
3315 if (in_plt_section (addr_in_block
)
3316 /* We also use the stub winder if the target memory is unreadable
3317 to avoid having the prologue unwinder trying to read it. */
3318 || target_read_memory (pc
, dummy
, 4) != 0)
3321 if (find_pc_partial_function (pc
, &name
, &start_addr
, NULL
) == 0
3322 && arm_skip_bx_reg (this_frame
, pc
) != 0)
3328 struct frame_unwind arm_stub_unwind
= {
3331 default_frame_unwind_stop_reason
,
3333 arm_prologue_prev_register
,
3335 arm_stub_unwind_sniffer
3338 /* Put here the code to store, into CACHE->saved_regs, the addresses
3339 of the saved registers of frame described by THIS_FRAME. CACHE is
3342 static struct arm_prologue_cache
*
3343 arm_m_exception_cache (struct frame_info
*this_frame
)
3345 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
3346 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
3347 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
3348 struct arm_prologue_cache
*cache
;
3351 CORE_ADDR unwound_sp
;
3352 uint32_t sp_r0_offset
= 0;
3354 uint32_t exc_return
;
3356 uint32_t extended_frame_used
;
3357 bool secure_stack_used
= false;
3358 bool default_callee_register_stacking
= false;
3359 bool exception_domain_is_secure
= false;
3361 cache
= FRAME_OBSTACK_ZALLOC (struct arm_prologue_cache
);
3362 arm_cache_init (cache
, this_frame
);
3364 /* ARMv7-M Architecture Reference "B1.5.6 Exception entry behavior"
3365 describes which bits in LR that define which stack was used prior
3366 to the exception and if FPU is used (causing extended stack frame). */
3368 lr
= get_frame_register_unsigned (this_frame
, ARM_LR_REGNUM
);
3369 sp
= get_frame_register_unsigned (this_frame
, ARM_SP_REGNUM
);
3371 /* ARMv7-M Architecture Reference "A2.3.1 Arm core registers"
3372 states that LR is set to 0xffffffff on reset. ARMv8-M Architecture
3373 Reference "B3.3 Registers" states that LR is set to 0xffffffff on warm
3374 reset if Main Extension is implemented, otherwise the value is unknown. */
3375 if (lr
== 0xffffffff)
3377 /* Terminate any further stack unwinding by referring to self. */
3378 arm_cache_set_active_sp_value (cache
, tdep
, sp
);
3382 fnc_return
= (((lr
>> 24) & 0xff) == 0xfe);
3383 if (tdep
->have_sec_ext
&& fnc_return
)
3385 if (!arm_unwind_secure_frames
)
3387 warning (_("Non-secure to secure stack unwinding disabled."));
3389 /* Terminate any further stack unwinding by referring to self. */
3390 arm_cache_set_active_sp_value (cache
, tdep
, sp
);
3394 xpsr
= get_frame_register_unsigned (this_frame
, ARM_PS_REGNUM
);
3395 if ((xpsr
& 0xff) != 0)
3396 /* Handler mode: This is the mode that exceptions are handled in. */
3397 arm_cache_switch_prev_sp (cache
, tdep
, tdep
->m_profile_msp_s_regnum
);
3399 /* Thread mode: This is the normal mode that programs run in. */
3400 arm_cache_switch_prev_sp (cache
, tdep
, tdep
->m_profile_psp_s_regnum
);
3402 unwound_sp
= arm_cache_get_prev_sp_value (cache
, tdep
);
3404 /* Stack layout for a function call from Secure to Non-Secure state
3405 (ARMv8-M section B3.16):
3409 +-------------------+
3411 +-------------------+ <-- Original SP
3412 0x04 | Partial xPSR |
3413 +-------------------+
3414 0x00 | Return Address |
3415 +===================+ <-- New SP */
3417 cache
->saved_regs
[ARM_PC_REGNUM
].set_addr (unwound_sp
+ 0x00);
3418 cache
->saved_regs
[ARM_LR_REGNUM
].set_addr (unwound_sp
+ 0x00);
3419 cache
->saved_regs
[ARM_PS_REGNUM
].set_addr (unwound_sp
+ 0x04);
3421 arm_cache_set_active_sp_value (cache
, tdep
, unwound_sp
+ 0x08);
3426 /* Check EXC_RETURN indicator bits (24-31). */
3427 exc_return
= (((lr
>> 24) & 0xff) == 0xff);
3430 /* Check EXC_RETURN bit SPSEL if Main or Thread (process) stack used. */
3431 bool process_stack_used
= ((lr
& (1 << 2)) != 0);
3433 if (tdep
->have_sec_ext
)
3435 secure_stack_used
= ((lr
& (1 << 6)) != 0);
3436 default_callee_register_stacking
= ((lr
& (1 << 5)) != 0);
3437 exception_domain_is_secure
= ((lr
& (1 << 0)) == 0);
3439 /* Unwinding from non-secure to secure can trip security
3440 measures. In order to avoid the debugger being
3441 intrusive, rely on the user to configure the requested
3443 if (secure_stack_used
&& !exception_domain_is_secure
3444 && !arm_unwind_secure_frames
)
3446 warning (_("Non-secure to secure stack unwinding disabled."));
3448 /* Terminate any further stack unwinding by referring to self. */
3449 arm_cache_set_active_sp_value (cache
, tdep
, sp
);
3453 if (process_stack_used
)
3455 if (secure_stack_used
)
3456 /* Secure thread (process) stack used, use PSP_S as SP. */
3457 arm_cache_switch_prev_sp (cache
, tdep
, tdep
->m_profile_psp_s_regnum
);
3459 /* Non-secure thread (process) stack used, use PSP_NS as SP. */
3460 arm_cache_switch_prev_sp (cache
, tdep
, tdep
->m_profile_psp_ns_regnum
);
3464 if (secure_stack_used
)
3465 /* Secure main stack used, use MSP_S as SP. */
3466 arm_cache_switch_prev_sp (cache
, tdep
, tdep
->m_profile_msp_s_regnum
);
3468 /* Non-secure main stack used, use MSP_NS as SP. */
3469 arm_cache_switch_prev_sp (cache
, tdep
, tdep
->m_profile_msp_ns_regnum
);
3474 if (process_stack_used
)
3475 /* Thread (process) stack used, use PSP as SP. */
3476 arm_cache_switch_prev_sp (cache
, tdep
, tdep
->m_profile_psp_regnum
);
3478 /* Main stack used, use MSP as SP. */
3479 arm_cache_switch_prev_sp (cache
, tdep
, tdep
->m_profile_msp_regnum
);
3483 /* Fetch the SP to use for this frame. */
3484 unwound_sp
= arm_cache_get_prev_sp_value (cache
, tdep
);
3486 /* Exception entry context stacking are described in ARMv8-M (section B3.19)
3487 and ARMv7-M (sections B1.5.6 and B1.5.7) Architecture Reference Manuals.
3489 The following figure shows the structure of the stack frame when Security
3490 and Floating-point extensions are present.
3494 Callee Regs Callee Regs
3495 (Secure -> Non-Secure)
3496 +-------------------+
3498 +===================+ --+ <-- Original SP
3500 +-------------------+ |
3501 ... | Additional FP context
3502 +-------------------+ |
3504 +===================+ --+
3505 0x64 | Reserved | 0x8C |
3506 +-------------------+ |
3507 0x60 | FPSCR | 0x88 |
3508 +-------------------+ |
3509 0x5C | S15 | 0x84 | FP context
3510 +-------------------+ |
3512 +-------------------+ |
3514 +===================+ --+
3515 0x1C | xPSR | 0x44 |
3516 +-------------------+ |
3517 0x18 | Return address | 0x40 |
3518 +-------------------+ |
3519 0x14 | LR(R14) | 0x3C |
3520 +-------------------+ |
3521 0x10 | R12 | 0x38 | State context
3522 +-------------------+ |
3524 +-------------------+ |
3526 +-------------------+ |
3528 +===================+ --+
3530 +-------------------+ |
3532 +-------------------+ | Additional state context
3533 | R4 | 0x08 | when transitioning from
3534 +-------------------+ | Secure to Non-Secure
3536 +-------------------+ |
3537 | Magic signature | 0x00 |
3538 +===================+ --+ <-- New SP */
3540 /* With the Security extension, the hardware saves R4..R11 too. */
3541 if (exc_return
&& tdep
->have_sec_ext
&& secure_stack_used
3542 && (!default_callee_register_stacking
|| exception_domain_is_secure
))
3544 /* Read R4..R11 from the integer callee registers. */
3545 cache
->saved_regs
[4].set_addr (unwound_sp
+ 0x08);
3546 cache
->saved_regs
[5].set_addr (unwound_sp
+ 0x0C);
3547 cache
->saved_regs
[6].set_addr (unwound_sp
+ 0x10);
3548 cache
->saved_regs
[7].set_addr (unwound_sp
+ 0x14);
3549 cache
->saved_regs
[8].set_addr (unwound_sp
+ 0x18);
3550 cache
->saved_regs
[9].set_addr (unwound_sp
+ 0x1C);
3551 cache
->saved_regs
[10].set_addr (unwound_sp
+ 0x20);
3552 cache
->saved_regs
[11].set_addr (unwound_sp
+ 0x24);
3553 sp_r0_offset
= 0x28;
3556 /* The hardware saves eight 32-bit words, comprising xPSR,
3557 ReturnAddress, LR (R14), R12, R3, R2, R1, R0. See details in
3558 "B1.5.6 Exception entry behavior" in
3559 "ARMv7-M Architecture Reference Manual". */
3560 cache
->saved_regs
[0].set_addr (unwound_sp
+ sp_r0_offset
);
3561 cache
->saved_regs
[1].set_addr (unwound_sp
+ sp_r0_offset
+ 0x04);
3562 cache
->saved_regs
[2].set_addr (unwound_sp
+ sp_r0_offset
+ 0x08);
3563 cache
->saved_regs
[3].set_addr (unwound_sp
+ sp_r0_offset
+ 0x0C);
3564 cache
->saved_regs
[ARM_IP_REGNUM
].set_addr (unwound_sp
+ sp_r0_offset
+ 0x10);
3565 cache
->saved_regs
[ARM_LR_REGNUM
].set_addr (unwound_sp
+ sp_r0_offset
+ 0x14);
3566 cache
->saved_regs
[ARM_PC_REGNUM
].set_addr (unwound_sp
+ sp_r0_offset
+ 0x18);
3567 cache
->saved_regs
[ARM_PS_REGNUM
].set_addr (unwound_sp
+ sp_r0_offset
+ 0x1C);
3569 /* Check EXC_RETURN bit FTYPE if extended stack frame (FPU regs stored)
3571 extended_frame_used
= ((lr
& (1 << 4)) == 0);
3572 if (exc_return
&& extended_frame_used
)
3575 int fpu_regs_stack_offset
;
3578 /* Read FPCCR register. */
3579 gdb_assert (safe_read_memory_unsigned_integer (FPCCR
,
3580 ARM_INT_REGISTER_SIZE
,
3581 byte_order
, &fpccr
));
3582 bool fpccr_ts
= bit (fpccr
,26);
3584 /* This code does not take into account the lazy stacking, see "Lazy
3585 context save of FP state", in B1.5.7, also ARM AN298, supported
3586 by Cortex-M4F architecture.
3587 To fully handle this the FPCCR register (Floating-point Context
3588 Control Register) needs to be read out and the bits ASPEN and LSPEN
3589 could be checked to setup correct lazy stacked FP registers.
3590 This register is located at address 0xE000EF34. */
3592 /* Extended stack frame type used. */
3593 fpu_regs_stack_offset
= unwound_sp
+ sp_r0_offset
+ 0x20;
3594 for (i
= 0; i
< 8; i
++)
3596 cache
->saved_regs
[ARM_D0_REGNUM
+ i
].set_addr (fpu_regs_stack_offset
);
3597 fpu_regs_stack_offset
+= 8;
3599 cache
->saved_regs
[ARM_FPSCR_REGNUM
].set_addr (unwound_sp
+ sp_r0_offset
+ 0x60);
3600 fpu_regs_stack_offset
+= 4;
3602 if (tdep
->have_sec_ext
&& !default_callee_register_stacking
&& fpccr_ts
)
3604 /* Handle floating-point callee saved registers. */
3605 fpu_regs_stack_offset
= unwound_sp
+ sp_r0_offset
+ 0x68;
3606 for (i
= 8; i
< 16; i
++)
3608 cache
->saved_regs
[ARM_D0_REGNUM
+ i
].set_addr (fpu_regs_stack_offset
);
3609 fpu_regs_stack_offset
+= 8;
3612 arm_cache_set_active_sp_value (cache
, tdep
,
3613 unwound_sp
+ sp_r0_offset
+ 0xA8);
3617 /* Offset 0x64 is reserved. */
3618 arm_cache_set_active_sp_value (cache
, tdep
,
3619 unwound_sp
+ sp_r0_offset
+ 0x68);
3624 /* Standard stack frame type used. */
3625 arm_cache_set_active_sp_value (cache
, tdep
,
3626 unwound_sp
+ sp_r0_offset
+ 0x20);
3629 /* If bit 9 of the saved xPSR is set, then there is a four-byte
3630 aligner between the top of the 32-byte stack frame and the
3631 previous context's stack pointer. */
3632 if (safe_read_memory_integer (unwound_sp
+ sp_r0_offset
+ 0x1C, 4,
3634 && (xpsr
& (1 << 9)) != 0)
3635 arm_cache_set_active_sp_value (cache
, tdep
,
3636 arm_cache_get_prev_sp_value (cache
, tdep
) + 4);
3641 /* Implementation of function hook 'this_id' in
3642 'struct frame_uwnind'. */
3645 arm_m_exception_this_id (struct frame_info
*this_frame
,
3647 struct frame_id
*this_id
)
3649 struct arm_prologue_cache
*cache
;
3651 if (*this_cache
== NULL
)
3652 *this_cache
= arm_m_exception_cache (this_frame
);
3653 cache
= (struct arm_prologue_cache
*) *this_cache
;
3655 /* Our frame ID for a stub frame is the current SP and LR. */
3656 arm_gdbarch_tdep
*tdep
3657 = (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
3658 *this_id
= frame_id_build (arm_cache_get_prev_sp_value (cache
, tdep
),
3659 get_frame_pc (this_frame
));
3662 /* Implementation of function hook 'prev_register' in
3663 'struct frame_uwnind'. */
3665 static struct value
*
3666 arm_m_exception_prev_register (struct frame_info
*this_frame
,
3670 struct arm_prologue_cache
*cache
;
3673 if (*this_cache
== NULL
)
3674 *this_cache
= arm_m_exception_cache (this_frame
);
3675 cache
= (struct arm_prologue_cache
*) *this_cache
;
3677 /* The value was already reconstructed into PREV_SP. */
3678 arm_gdbarch_tdep
*tdep
3679 = (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
3680 if (prev_regnum
== ARM_SP_REGNUM
)
3681 return frame_unwind_got_constant (this_frame
, prev_regnum
,
3682 arm_cache_get_prev_sp_value (cache
, tdep
));
3684 /* If we are asked to unwind the PC, strip the saved T bit. */
3685 if (prev_regnum
== ARM_PC_REGNUM
)
3687 struct value
*value
= trad_frame_get_prev_register (this_frame
,
3690 CORE_ADDR pc
= value_as_address (value
);
3691 return frame_unwind_got_constant (this_frame
, prev_regnum
,
3692 UNMAKE_THUMB_ADDR (pc
));
3695 /* The value might be one of the alternative SP, if so, use the
3696 value already constructed. */
3697 if (arm_cache_is_sp_register (cache
, tdep
, prev_regnum
))
3699 sp_value
= arm_cache_get_sp_register (cache
, tdep
, prev_regnum
);
3700 return frame_unwind_got_constant (this_frame
, prev_regnum
, sp_value
);
3703 /* If we are asked to unwind the xPSR, set T bit if PC is in thumb mode.
3704 LR register is unreliable as it contains FNC_RETURN or EXC_RETURN
3706 if (prev_regnum
== ARM_PS_REGNUM
)
3708 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
3709 struct value
*value
= trad_frame_get_prev_register (this_frame
,
3712 CORE_ADDR pc
= value_as_address (value
);
3713 value
= trad_frame_get_prev_register (this_frame
, cache
->saved_regs
,
3715 ULONGEST xpsr
= value_as_long (value
);
3717 /* Reconstruct the T bit; see arm_prologue_prev_register for details. */
3718 xpsr
= reconstruct_t_bit (gdbarch
, pc
, xpsr
);
3719 return frame_unwind_got_constant (this_frame
, ARM_PS_REGNUM
, xpsr
);
3722 return trad_frame_get_prev_register (this_frame
, cache
->saved_regs
,
3726 /* Implementation of function hook 'sniffer' in
3727 'struct frame_uwnind'. */
3730 arm_m_exception_unwind_sniffer (const struct frame_unwind
*self
,
3731 struct frame_info
*this_frame
,
3732 void **this_prologue_cache
)
3734 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
3735 CORE_ADDR this_pc
= get_frame_pc (this_frame
);
3737 /* No need to check is_m; this sniffer is only registered for
3738 M-profile architectures. */
3740 /* Check if exception frame returns to a magic PC value. */
3741 return arm_m_addr_is_magic (gdbarch
, this_pc
);
3744 /* Frame unwinder for M-profile exceptions. */
3746 struct frame_unwind arm_m_exception_unwind
=
3750 default_frame_unwind_stop_reason
,
3751 arm_m_exception_this_id
,
3752 arm_m_exception_prev_register
,
3754 arm_m_exception_unwind_sniffer
3758 arm_normal_frame_base (struct frame_info
*this_frame
, void **this_cache
)
3760 struct arm_prologue_cache
*cache
;
3762 if (*this_cache
== NULL
)
3763 *this_cache
= arm_make_prologue_cache (this_frame
);
3764 cache
= (struct arm_prologue_cache
*) *this_cache
;
3766 arm_gdbarch_tdep
*tdep
3767 = (arm_gdbarch_tdep
*) gdbarch_tdep (get_frame_arch (this_frame
));
3768 return arm_cache_get_prev_sp_value (cache
, tdep
) - cache
->framesize
;
3771 struct frame_base arm_normal_base
= {
3772 &arm_prologue_unwind
,
3773 arm_normal_frame_base
,
3774 arm_normal_frame_base
,
3775 arm_normal_frame_base
3778 static struct value
*
3779 arm_dwarf2_prev_register (struct frame_info
*this_frame
, void **this_cache
,
3782 struct gdbarch
* gdbarch
= get_frame_arch (this_frame
);
3783 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
3790 /* The PC is normally copied from the return column, which
3791 describes saves of LR. However, that version may have an
3792 extra bit set to indicate Thumb state. The bit is not
3795 /* Record in the frame whether the return address was signed. */
3796 if (tdep
->have_pacbti
)
3798 CORE_ADDR ra_auth_code
3799 = frame_unwind_register_unsigned (this_frame
,
3800 tdep
->pacbti_pseudo_base
);
3802 if (ra_auth_code
!= 0)
3803 set_frame_previous_pc_masked (this_frame
);
3806 lr
= frame_unwind_register_unsigned (this_frame
, ARM_LR_REGNUM
);
3807 return frame_unwind_got_constant (this_frame
, regnum
,
3808 arm_addr_bits_remove (gdbarch
, lr
));
3811 /* Reconstruct the T bit; see arm_prologue_prev_register for details. */
3812 cpsr
= get_frame_register_unsigned (this_frame
, regnum
);
3813 lr
= frame_unwind_register_unsigned (this_frame
, ARM_LR_REGNUM
);
3814 cpsr
= reconstruct_t_bit (gdbarch
, lr
, cpsr
);
3815 return frame_unwind_got_constant (this_frame
, regnum
, cpsr
);
3818 internal_error (__FILE__
, __LINE__
,
3819 _("Unexpected register %d"), regnum
);
3823 /* Implement the stack_frame_destroyed_p gdbarch method. */
3826 thumb_stack_frame_destroyed_p (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
3828 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
3829 unsigned int insn
, insn2
;
3830 int found_return
= 0, found_stack_adjust
= 0;
3831 CORE_ADDR func_start
, func_end
;
3835 if (!find_pc_partial_function (pc
, NULL
, &func_start
, &func_end
))
3838 /* The epilogue is a sequence of instructions along the following lines:
3840 - add stack frame size to SP or FP
3841 - [if frame pointer used] restore SP from FP
3842 - restore registers from SP [may include PC]
3843 - a return-type instruction [if PC wasn't already restored]
3845 In a first pass, we scan forward from the current PC and verify the
3846 instructions we find as compatible with this sequence, ending in a
3849 However, this is not sufficient to distinguish indirect function calls
3850 within a function from indirect tail calls in the epilogue in some cases.
3851 Therefore, if we didn't already find any SP-changing instruction during
3852 forward scan, we add a backward scanning heuristic to ensure we actually
3853 are in the epilogue. */
3856 while (scan_pc
< func_end
&& !found_return
)
3858 if (target_read_memory (scan_pc
, buf
, 2))
3862 insn
= extract_unsigned_integer (buf
, 2, byte_order_for_code
);
3864 if ((insn
& 0xff80) == 0x4700) /* bx <Rm> */
3866 else if (insn
== 0x46f7) /* mov pc, lr */
3868 else if (thumb_instruction_restores_sp (insn
))
3870 if ((insn
& 0xff00) == 0xbd00) /* pop <registers, PC> */
3873 else if (thumb_insn_size (insn
) == 4) /* 32-bit Thumb-2 instruction */
3875 if (target_read_memory (scan_pc
, buf
, 2))
3879 insn2
= extract_unsigned_integer (buf
, 2, byte_order_for_code
);
3881 if (insn
== 0xe8bd) /* ldm.w sp!, <registers> */
3883 if (insn2
& 0x8000) /* <registers> include PC. */
3886 else if (insn
== 0xf85d /* ldr.w <Rt>, [sp], #4 */
3887 && (insn2
& 0x0fff) == 0x0b04)
3889 if ((insn2
& 0xf000) == 0xf000) /* <Rt> is PC. */
3892 else if ((insn
& 0xffbf) == 0xecbd /* vldm sp!, <list> */
3893 && (insn2
& 0x0e00) == 0x0a00)
3905 /* Since any instruction in the epilogue sequence, with the possible
3906 exception of return itself, updates the stack pointer, we need to
3907 scan backwards for at most one instruction. Try either a 16-bit or
3908 a 32-bit instruction. This is just a heuristic, so we do not worry
3909 too much about false positives. */
3911 if (pc
- 4 < func_start
)
3913 if (target_read_memory (pc
- 4, buf
, 4))
3916 insn
= extract_unsigned_integer (buf
, 2, byte_order_for_code
);
3917 insn2
= extract_unsigned_integer (buf
+ 2, 2, byte_order_for_code
);
3919 if (thumb_instruction_restores_sp (insn2
))
3920 found_stack_adjust
= 1;
3921 else if (insn
== 0xe8bd) /* ldm.w sp!, <registers> */
3922 found_stack_adjust
= 1;
3923 else if (insn
== 0xf85d /* ldr.w <Rt>, [sp], #4 */
3924 && (insn2
& 0x0fff) == 0x0b04)
3925 found_stack_adjust
= 1;
3926 else if ((insn
& 0xffbf) == 0xecbd /* vldm sp!, <list> */
3927 && (insn2
& 0x0e00) == 0x0a00)
3928 found_stack_adjust
= 1;
3930 return found_stack_adjust
;
3934 arm_stack_frame_destroyed_p_1 (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
3936 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
3939 CORE_ADDR func_start
, func_end
;
3941 if (!find_pc_partial_function (pc
, NULL
, &func_start
, &func_end
))
3944 /* We are in the epilogue if the previous instruction was a stack
3945 adjustment and the next instruction is a possible return (bx, mov
3946 pc, or pop). We could have to scan backwards to find the stack
3947 adjustment, or forwards to find the return, but this is a decent
3948 approximation. First scan forwards. */
3951 insn
= read_memory_unsigned_integer (pc
, 4, byte_order_for_code
);
3952 if (bits (insn
, 28, 31) != INST_NV
)
3954 if ((insn
& 0x0ffffff0) == 0x012fff10)
3957 else if ((insn
& 0x0ffffff0) == 0x01a0f000)
3960 else if ((insn
& 0x0fff0000) == 0x08bd0000
3961 && (insn
& 0x0000c000) != 0)
3962 /* POP (LDMIA), including PC or LR. */
3969 /* Scan backwards. This is just a heuristic, so do not worry about
3970 false positives from mode changes. */
3972 if (pc
< func_start
+ 4)
3975 insn
= read_memory_unsigned_integer (pc
- 4, 4, byte_order_for_code
);
3976 if (arm_instruction_restores_sp (insn
))
3982 /* Implement the stack_frame_destroyed_p gdbarch method. */
3985 arm_stack_frame_destroyed_p (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
3987 if (arm_pc_is_thumb (gdbarch
, pc
))
3988 return thumb_stack_frame_destroyed_p (gdbarch
, pc
);
3990 return arm_stack_frame_destroyed_p_1 (gdbarch
, pc
);
3993 /* When arguments must be pushed onto the stack, they go on in reverse
3994 order. The code below implements a FILO (stack) to do this. */
3996 struct arm_stack_item
3999 struct arm_stack_item
*prev
;
4003 static struct arm_stack_item
*
4004 push_stack_item (struct arm_stack_item
*prev
, const gdb_byte
*contents
,
4007 struct arm_stack_item
*si
;
4008 si
= XNEW (struct arm_stack_item
);
4009 si
->data
= (gdb_byte
*) xmalloc (len
);
4012 memcpy (si
->data
, contents
, len
);
4016 static struct arm_stack_item
*
4017 pop_stack_item (struct arm_stack_item
*si
)
4019 struct arm_stack_item
*dead
= si
;
4026 /* Implement the gdbarch type alignment method, overrides the generic
4027 alignment algorithm for anything that is arm specific. */
4030 arm_type_align (gdbarch
*gdbarch
, struct type
*t
)
4032 t
= check_typedef (t
);
4033 if (t
->code () == TYPE_CODE_ARRAY
&& t
->is_vector ())
4035 /* Use the natural alignment for vector types (the same for
4036 scalar type), but the maximum alignment is 64-bit. */
4037 if (TYPE_LENGTH (t
) > 8)
4040 return TYPE_LENGTH (t
);
4043 /* Allow the common code to calculate the alignment. */
4047 /* Possible base types for a candidate for passing and returning in
4050 enum arm_vfp_cprc_base_type
4059 /* The length of one element of base type B. */
4062 arm_vfp_cprc_unit_length (enum arm_vfp_cprc_base_type b
)
4066 case VFP_CPRC_SINGLE
:
4068 case VFP_CPRC_DOUBLE
:
4070 case VFP_CPRC_VEC64
:
4072 case VFP_CPRC_VEC128
:
4075 internal_error (__FILE__
, __LINE__
, _("Invalid VFP CPRC type: %d."),
4080 /* The character ('s', 'd' or 'q') for the type of VFP register used
4081 for passing base type B. */
4084 arm_vfp_cprc_reg_char (enum arm_vfp_cprc_base_type b
)
4088 case VFP_CPRC_SINGLE
:
4090 case VFP_CPRC_DOUBLE
:
4092 case VFP_CPRC_VEC64
:
4094 case VFP_CPRC_VEC128
:
4097 internal_error (__FILE__
, __LINE__
, _("Invalid VFP CPRC type: %d."),
4102 /* Determine whether T may be part of a candidate for passing and
4103 returning in VFP registers, ignoring the limit on the total number
4104 of components. If *BASE_TYPE is VFP_CPRC_UNKNOWN, set it to the
4105 classification of the first valid component found; if it is not
4106 VFP_CPRC_UNKNOWN, all components must have the same classification
4107 as *BASE_TYPE. If it is found that T contains a type not permitted
4108 for passing and returning in VFP registers, a type differently
4109 classified from *BASE_TYPE, or two types differently classified
4110 from each other, return -1, otherwise return the total number of
4111 base-type elements found (possibly 0 in an empty structure or
4112 array). Vector types are not currently supported, matching the
4113 generic AAPCS support. */
4116 arm_vfp_cprc_sub_candidate (struct type
*t
,
4117 enum arm_vfp_cprc_base_type
*base_type
)
4119 t
= check_typedef (t
);
4123 switch (TYPE_LENGTH (t
))
4126 if (*base_type
== VFP_CPRC_UNKNOWN
)
4127 *base_type
= VFP_CPRC_SINGLE
;
4128 else if (*base_type
!= VFP_CPRC_SINGLE
)
4133 if (*base_type
== VFP_CPRC_UNKNOWN
)
4134 *base_type
= VFP_CPRC_DOUBLE
;
4135 else if (*base_type
!= VFP_CPRC_DOUBLE
)
4144 case TYPE_CODE_COMPLEX
:
4145 /* Arguments of complex T where T is one of the types float or
4146 double get treated as if they are implemented as:
4155 switch (TYPE_LENGTH (t
))
4158 if (*base_type
== VFP_CPRC_UNKNOWN
)
4159 *base_type
= VFP_CPRC_SINGLE
;
4160 else if (*base_type
!= VFP_CPRC_SINGLE
)
4165 if (*base_type
== VFP_CPRC_UNKNOWN
)
4166 *base_type
= VFP_CPRC_DOUBLE
;
4167 else if (*base_type
!= VFP_CPRC_DOUBLE
)
4176 case TYPE_CODE_ARRAY
:
4178 if (t
->is_vector ())
4180 /* A 64-bit or 128-bit containerized vector type are VFP
4182 switch (TYPE_LENGTH (t
))
4185 if (*base_type
== VFP_CPRC_UNKNOWN
)
4186 *base_type
= VFP_CPRC_VEC64
;
4189 if (*base_type
== VFP_CPRC_UNKNOWN
)
4190 *base_type
= VFP_CPRC_VEC128
;
4201 count
= arm_vfp_cprc_sub_candidate (TYPE_TARGET_TYPE (t
),
4205 if (TYPE_LENGTH (t
) == 0)
4207 gdb_assert (count
== 0);
4210 else if (count
== 0)
4212 unitlen
= arm_vfp_cprc_unit_length (*base_type
);
4213 gdb_assert ((TYPE_LENGTH (t
) % unitlen
) == 0);
4214 return TYPE_LENGTH (t
) / unitlen
;
4219 case TYPE_CODE_STRUCT
:
4224 for (i
= 0; i
< t
->num_fields (); i
++)
4228 if (!field_is_static (&t
->field (i
)))
4229 sub_count
= arm_vfp_cprc_sub_candidate (t
->field (i
).type (),
4231 if (sub_count
== -1)
4235 if (TYPE_LENGTH (t
) == 0)
4237 gdb_assert (count
== 0);
4240 else if (count
== 0)
4242 unitlen
= arm_vfp_cprc_unit_length (*base_type
);
4243 if (TYPE_LENGTH (t
) != unitlen
* count
)
4248 case TYPE_CODE_UNION
:
4253 for (i
= 0; i
< t
->num_fields (); i
++)
4255 int sub_count
= arm_vfp_cprc_sub_candidate (t
->field (i
).type (),
4257 if (sub_count
== -1)
4259 count
= (count
> sub_count
? count
: sub_count
);
4261 if (TYPE_LENGTH (t
) == 0)
4263 gdb_assert (count
== 0);
4266 else if (count
== 0)
4268 unitlen
= arm_vfp_cprc_unit_length (*base_type
);
4269 if (TYPE_LENGTH (t
) != unitlen
* count
)
4281 /* Determine whether T is a VFP co-processor register candidate (CPRC)
4282 if passed to or returned from a non-variadic function with the VFP
4283 ABI in effect. Return 1 if it is, 0 otherwise. If it is, set
4284 *BASE_TYPE to the base type for T and *COUNT to the number of
4285 elements of that base type before returning. */
4288 arm_vfp_call_candidate (struct type
*t
, enum arm_vfp_cprc_base_type
*base_type
,
4291 enum arm_vfp_cprc_base_type b
= VFP_CPRC_UNKNOWN
;
4292 int c
= arm_vfp_cprc_sub_candidate (t
, &b
);
4293 if (c
<= 0 || c
> 4)
4300 /* Return 1 if the VFP ABI should be used for passing arguments to and
4301 returning values from a function of type FUNC_TYPE, 0
4305 arm_vfp_abi_for_function (struct gdbarch
*gdbarch
, struct type
*func_type
)
4307 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4309 /* Variadic functions always use the base ABI. Assume that functions
4310 without debug info are not variadic. */
4311 if (func_type
&& check_typedef (func_type
)->has_varargs ())
4314 /* The VFP ABI is only supported as a variant of AAPCS. */
4315 if (tdep
->arm_abi
!= ARM_ABI_AAPCS
)
4318 return tdep
->fp_model
== ARM_FLOAT_VFP
;
4321 /* We currently only support passing parameters in integer registers, which
4322 conforms with GCC's default model, and VFP argument passing following
4323 the VFP variant of AAPCS. Several other variants exist and
4324 we should probably support some of them based on the selected ABI. */
4327 arm_push_dummy_call (struct gdbarch
*gdbarch
, struct value
*function
,
4328 struct regcache
*regcache
, CORE_ADDR bp_addr
, int nargs
,
4329 struct value
**args
, CORE_ADDR sp
,
4330 function_call_return_method return_method
,
4331 CORE_ADDR struct_addr
)
4333 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
4337 struct arm_stack_item
*si
= NULL
;
4340 unsigned vfp_regs_free
= (1 << 16) - 1;
4341 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4343 /* Determine the type of this function and whether the VFP ABI
4345 ftype
= check_typedef (value_type (function
));
4346 if (ftype
->code () == TYPE_CODE_PTR
)
4347 ftype
= check_typedef (TYPE_TARGET_TYPE (ftype
));
4348 use_vfp_abi
= arm_vfp_abi_for_function (gdbarch
, ftype
);
4350 /* Set the return address. For the ARM, the return breakpoint is
4351 always at BP_ADDR. */
4352 if (arm_pc_is_thumb (gdbarch
, bp_addr
))
4354 regcache_cooked_write_unsigned (regcache
, ARM_LR_REGNUM
, bp_addr
);
4356 /* Walk through the list of args and determine how large a temporary
4357 stack is required. Need to take care here as structs may be
4358 passed on the stack, and we have to push them. */
4361 argreg
= ARM_A1_REGNUM
;
4364 /* The struct_return pointer occupies the first parameter
4365 passing register. */
4366 if (return_method
== return_method_struct
)
4368 arm_debug_printf ("struct return in %s = %s",
4369 gdbarch_register_name (gdbarch
, argreg
),
4370 paddress (gdbarch
, struct_addr
));
4372 regcache_cooked_write_unsigned (regcache
, argreg
, struct_addr
);
4376 for (argnum
= 0; argnum
< nargs
; argnum
++)
4379 struct type
*arg_type
;
4380 struct type
*target_type
;
4381 enum type_code typecode
;
4382 const bfd_byte
*val
;
4384 enum arm_vfp_cprc_base_type vfp_base_type
;
4386 int may_use_core_reg
= 1;
4388 arg_type
= check_typedef (value_type (args
[argnum
]));
4389 len
= TYPE_LENGTH (arg_type
);
4390 target_type
= TYPE_TARGET_TYPE (arg_type
);
4391 typecode
= arg_type
->code ();
4392 val
= value_contents (args
[argnum
]).data ();
4394 align
= type_align (arg_type
);
4395 /* Round alignment up to a whole number of words. */
4396 align
= (align
+ ARM_INT_REGISTER_SIZE
- 1)
4397 & ~(ARM_INT_REGISTER_SIZE
- 1);
4398 /* Different ABIs have different maximum alignments. */
4399 if (tdep
->arm_abi
== ARM_ABI_APCS
)
4401 /* The APCS ABI only requires word alignment. */
4402 align
= ARM_INT_REGISTER_SIZE
;
4406 /* The AAPCS requires at most doubleword alignment. */
4407 if (align
> ARM_INT_REGISTER_SIZE
* 2)
4408 align
= ARM_INT_REGISTER_SIZE
* 2;
4412 && arm_vfp_call_candidate (arg_type
, &vfp_base_type
,
4420 /* Because this is a CPRC it cannot go in a core register or
4421 cause a core register to be skipped for alignment.
4422 Either it goes in VFP registers and the rest of this loop
4423 iteration is skipped for this argument, or it goes on the
4424 stack (and the stack alignment code is correct for this
4426 may_use_core_reg
= 0;
4428 unit_length
= arm_vfp_cprc_unit_length (vfp_base_type
);
4429 shift
= unit_length
/ 4;
4430 mask
= (1 << (shift
* vfp_base_count
)) - 1;
4431 for (regno
= 0; regno
< 16; regno
+= shift
)
4432 if (((vfp_regs_free
>> regno
) & mask
) == mask
)
4441 vfp_regs_free
&= ~(mask
<< regno
);
4442 reg_scaled
= regno
/ shift
;
4443 reg_char
= arm_vfp_cprc_reg_char (vfp_base_type
);
4444 for (i
= 0; i
< vfp_base_count
; i
++)
4448 if (reg_char
== 'q')
4449 arm_neon_quad_write (gdbarch
, regcache
, reg_scaled
+ i
,
4450 val
+ i
* unit_length
);
4453 xsnprintf (name_buf
, sizeof (name_buf
), "%c%d",
4454 reg_char
, reg_scaled
+ i
);
4455 regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
4457 regcache
->cooked_write (regnum
, val
+ i
* unit_length
);
4464 /* This CPRC could not go in VFP registers, so all VFP
4465 registers are now marked as used. */
4470 /* Push stack padding for doubleword alignment. */
4471 if (nstack
& (align
- 1))
4473 si
= push_stack_item (si
, val
, ARM_INT_REGISTER_SIZE
);
4474 nstack
+= ARM_INT_REGISTER_SIZE
;
4477 /* Doubleword aligned quantities must go in even register pairs. */
4478 if (may_use_core_reg
4479 && argreg
<= ARM_LAST_ARG_REGNUM
4480 && align
> ARM_INT_REGISTER_SIZE
4484 /* If the argument is a pointer to a function, and it is a
4485 Thumb function, create a LOCAL copy of the value and set
4486 the THUMB bit in it. */
4487 if (TYPE_CODE_PTR
== typecode
4488 && target_type
!= NULL
4489 && TYPE_CODE_FUNC
== check_typedef (target_type
)->code ())
4491 CORE_ADDR regval
= extract_unsigned_integer (val
, len
, byte_order
);
4492 if (arm_pc_is_thumb (gdbarch
, regval
))
4494 bfd_byte
*copy
= (bfd_byte
*) alloca (len
);
4495 store_unsigned_integer (copy
, len
, byte_order
,
4496 MAKE_THUMB_ADDR (regval
));
4501 /* Copy the argument to general registers or the stack in
4502 register-sized pieces. Large arguments are split between
4503 registers and stack. */
4506 int partial_len
= len
< ARM_INT_REGISTER_SIZE
4507 ? len
: ARM_INT_REGISTER_SIZE
;
4509 = extract_unsigned_integer (val
, partial_len
, byte_order
);
4511 if (may_use_core_reg
&& argreg
<= ARM_LAST_ARG_REGNUM
)
4513 /* The argument is being passed in a general purpose
4515 if (byte_order
== BFD_ENDIAN_BIG
)
4516 regval
<<= (ARM_INT_REGISTER_SIZE
- partial_len
) * 8;
4518 arm_debug_printf ("arg %d in %s = 0x%s", argnum
,
4519 gdbarch_register_name (gdbarch
, argreg
),
4520 phex (regval
, ARM_INT_REGISTER_SIZE
));
4522 regcache_cooked_write_unsigned (regcache
, argreg
, regval
);
4527 gdb_byte buf
[ARM_INT_REGISTER_SIZE
];
4529 memset (buf
, 0, sizeof (buf
));
4530 store_unsigned_integer (buf
, partial_len
, byte_order
, regval
);
4532 /* Push the arguments onto the stack. */
4533 arm_debug_printf ("arg %d @ sp + %d", argnum
, nstack
);
4534 si
= push_stack_item (si
, buf
, ARM_INT_REGISTER_SIZE
);
4535 nstack
+= ARM_INT_REGISTER_SIZE
;
4542 /* If we have an odd number of words to push, then decrement the stack
4543 by one word now, so first stack argument will be dword aligned. */
4550 write_memory (sp
, si
->data
, si
->len
);
4551 si
= pop_stack_item (si
);
4554 /* Finally, update teh SP register. */
4555 regcache_cooked_write_unsigned (regcache
, ARM_SP_REGNUM
, sp
);
4561 /* Always align the frame to an 8-byte boundary. This is required on
4562 some platforms and harmless on the rest. */
4565 arm_frame_align (struct gdbarch
*gdbarch
, CORE_ADDR sp
)
4567 /* Align the stack to eight bytes. */
4568 return sp
& ~ (CORE_ADDR
) 7;
4572 print_fpu_flags (struct ui_file
*file
, int flags
)
4574 if (flags
& (1 << 0))
4575 gdb_puts ("IVO ", file
);
4576 if (flags
& (1 << 1))
4577 gdb_puts ("DVZ ", file
);
4578 if (flags
& (1 << 2))
4579 gdb_puts ("OFL ", file
);
4580 if (flags
& (1 << 3))
4581 gdb_puts ("UFL ", file
);
4582 if (flags
& (1 << 4))
4583 gdb_puts ("INX ", file
);
4584 gdb_putc ('\n', file
);
4587 /* Print interesting information about the floating point processor
4588 (if present) or emulator. */
4590 arm_print_float_info (struct gdbarch
*gdbarch
, struct ui_file
*file
,
4591 struct frame_info
*frame
, const char *args
)
4593 unsigned long status
= get_frame_register_unsigned (frame
, ARM_FPS_REGNUM
);
4596 type
= (status
>> 24) & 127;
4597 if (status
& (1 << 31))
4598 gdb_printf (file
, _("Hardware FPU type %d\n"), type
);
4600 gdb_printf (file
, _("Software FPU type %d\n"), type
);
4601 /* i18n: [floating point unit] mask */
4602 gdb_puts (_("mask: "), file
);
4603 print_fpu_flags (file
, status
>> 16);
4604 /* i18n: [floating point unit] flags */
4605 gdb_puts (_("flags: "), file
);
4606 print_fpu_flags (file
, status
);
4609 /* Construct the ARM extended floating point type. */
4610 static struct type
*
4611 arm_ext_type (struct gdbarch
*gdbarch
)
4613 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4615 if (!tdep
->arm_ext_type
)
4617 = arch_float_type (gdbarch
, -1, "builtin_type_arm_ext",
4618 floatformats_arm_ext
);
4620 return tdep
->arm_ext_type
;
4623 static struct type
*
4624 arm_neon_double_type (struct gdbarch
*gdbarch
)
4626 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4628 if (tdep
->neon_double_type
== NULL
)
4630 struct type
*t
, *elem
;
4632 t
= arch_composite_type (gdbarch
, "__gdb_builtin_type_neon_d",
4634 elem
= builtin_type (gdbarch
)->builtin_uint8
;
4635 append_composite_type_field (t
, "u8", init_vector_type (elem
, 8));
4636 elem
= builtin_type (gdbarch
)->builtin_uint16
;
4637 append_composite_type_field (t
, "u16", init_vector_type (elem
, 4));
4638 elem
= builtin_type (gdbarch
)->builtin_uint32
;
4639 append_composite_type_field (t
, "u32", init_vector_type (elem
, 2));
4640 elem
= builtin_type (gdbarch
)->builtin_uint64
;
4641 append_composite_type_field (t
, "u64", elem
);
4642 elem
= builtin_type (gdbarch
)->builtin_float
;
4643 append_composite_type_field (t
, "f32", init_vector_type (elem
, 2));
4644 elem
= builtin_type (gdbarch
)->builtin_double
;
4645 append_composite_type_field (t
, "f64", elem
);
4647 t
->set_is_vector (true);
4648 t
->set_name ("neon_d");
4649 tdep
->neon_double_type
= t
;
4652 return tdep
->neon_double_type
;
4655 /* FIXME: The vector types are not correctly ordered on big-endian
4656 targets. Just as s0 is the low bits of d0, d0[0] is also the low
4657 bits of d0 - regardless of what unit size is being held in d0. So
4658 the offset of the first uint8 in d0 is 7, but the offset of the
4659 first float is 4. This code works as-is for little-endian
4662 static struct type
*
4663 arm_neon_quad_type (struct gdbarch
*gdbarch
)
4665 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4667 if (tdep
->neon_quad_type
== NULL
)
4669 struct type
*t
, *elem
;
4671 t
= arch_composite_type (gdbarch
, "__gdb_builtin_type_neon_q",
4673 elem
= builtin_type (gdbarch
)->builtin_uint8
;
4674 append_composite_type_field (t
, "u8", init_vector_type (elem
, 16));
4675 elem
= builtin_type (gdbarch
)->builtin_uint16
;
4676 append_composite_type_field (t
, "u16", init_vector_type (elem
, 8));
4677 elem
= builtin_type (gdbarch
)->builtin_uint32
;
4678 append_composite_type_field (t
, "u32", init_vector_type (elem
, 4));
4679 elem
= builtin_type (gdbarch
)->builtin_uint64
;
4680 append_composite_type_field (t
, "u64", init_vector_type (elem
, 2));
4681 elem
= builtin_type (gdbarch
)->builtin_float
;
4682 append_composite_type_field (t
, "f32", init_vector_type (elem
, 4));
4683 elem
= builtin_type (gdbarch
)->builtin_double
;
4684 append_composite_type_field (t
, "f64", init_vector_type (elem
, 2));
4686 t
->set_is_vector (true);
4687 t
->set_name ("neon_q");
4688 tdep
->neon_quad_type
= t
;
4691 return tdep
->neon_quad_type
;
4694 /* Return true if REGNUM is a Q pseudo register. Return false
4697 REGNUM is the raw register number and not a pseudo-relative register
4701 is_q_pseudo (struct gdbarch
*gdbarch
, int regnum
)
4703 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4705 /* Q pseudo registers are available for both NEON (Q0~Q15) and
4706 MVE (Q0~Q7) features. */
4707 if (tdep
->have_q_pseudos
4708 && regnum
>= tdep
->q_pseudo_base
4709 && regnum
< (tdep
->q_pseudo_base
+ tdep
->q_pseudo_count
))
4715 /* Return true if REGNUM is a VFP S pseudo register. Return false
4718 REGNUM is the raw register number and not a pseudo-relative register
4722 is_s_pseudo (struct gdbarch
*gdbarch
, int regnum
)
4724 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4726 if (tdep
->have_s_pseudos
4727 && regnum
>= tdep
->s_pseudo_base
4728 && regnum
< (tdep
->s_pseudo_base
+ tdep
->s_pseudo_count
))
4734 /* Return true if REGNUM is a MVE pseudo register (P0). Return false
4737 REGNUM is the raw register number and not a pseudo-relative register
4741 is_mve_pseudo (struct gdbarch
*gdbarch
, int regnum
)
4743 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4746 && regnum
>= tdep
->mve_pseudo_base
4747 && regnum
< tdep
->mve_pseudo_base
+ tdep
->mve_pseudo_count
)
4753 /* Return true if REGNUM is a PACBTI pseudo register (ra_auth_code). Return
4756 REGNUM is the raw register number and not a pseudo-relative register
4760 is_pacbti_pseudo (struct gdbarch
*gdbarch
, int regnum
)
4762 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4764 if (tdep
->have_pacbti
4765 && regnum
>= tdep
->pacbti_pseudo_base
4766 && regnum
< tdep
->pacbti_pseudo_base
+ tdep
->pacbti_pseudo_count
)
4772 /* Return the GDB type object for the "standard" data type of data in
4775 static struct type
*
4776 arm_register_type (struct gdbarch
*gdbarch
, int regnum
)
4778 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4780 if (is_s_pseudo (gdbarch
, regnum
))
4781 return builtin_type (gdbarch
)->builtin_float
;
4783 if (is_q_pseudo (gdbarch
, regnum
))
4784 return arm_neon_quad_type (gdbarch
);
4786 if (is_mve_pseudo (gdbarch
, regnum
))
4787 return builtin_type (gdbarch
)->builtin_int16
;
4789 if (is_pacbti_pseudo (gdbarch
, regnum
))
4790 return builtin_type (gdbarch
)->builtin_uint32
;
4792 /* If the target description has register information, we are only
4793 in this function so that we can override the types of
4794 double-precision registers for NEON. */
4795 if (tdesc_has_registers (gdbarch_target_desc (gdbarch
)))
4797 struct type
*t
= tdesc_register_type (gdbarch
, regnum
);
4799 if (regnum
>= ARM_D0_REGNUM
&& regnum
< ARM_D0_REGNUM
+ 32
4800 && t
->code () == TYPE_CODE_FLT
4802 return arm_neon_double_type (gdbarch
);
4807 if (regnum
>= ARM_F0_REGNUM
&& regnum
< ARM_F0_REGNUM
+ NUM_FREGS
)
4809 if (!tdep
->have_fpa_registers
)
4810 return builtin_type (gdbarch
)->builtin_void
;
4812 return arm_ext_type (gdbarch
);
4814 else if (regnum
== ARM_SP_REGNUM
)
4815 return builtin_type (gdbarch
)->builtin_data_ptr
;
4816 else if (regnum
== ARM_PC_REGNUM
)
4817 return builtin_type (gdbarch
)->builtin_func_ptr
;
4818 else if (regnum
>= ARRAY_SIZE (arm_register_names
))
4819 /* These registers are only supported on targets which supply
4820 an XML description. */
4821 return builtin_type (gdbarch
)->builtin_int0
;
4823 return builtin_type (gdbarch
)->builtin_uint32
;
4826 /* Map a DWARF register REGNUM onto the appropriate GDB register
4830 arm_dwarf_reg_to_regnum (struct gdbarch
*gdbarch
, int reg
)
4832 /* Core integer regs. */
4833 if (reg
>= 0 && reg
<= 15)
4836 /* Legacy FPA encoding. These were once used in a way which
4837 overlapped with VFP register numbering, so their use is
4838 discouraged, but GDB doesn't support the ARM toolchain
4839 which used them for VFP. */
4840 if (reg
>= 16 && reg
<= 23)
4841 return ARM_F0_REGNUM
+ reg
- 16;
4843 /* New assignments for the FPA registers. */
4844 if (reg
>= 96 && reg
<= 103)
4845 return ARM_F0_REGNUM
+ reg
- 96;
4847 /* WMMX register assignments. */
4848 if (reg
>= 104 && reg
<= 111)
4849 return ARM_WCGR0_REGNUM
+ reg
- 104;
4851 if (reg
>= 112 && reg
<= 127)
4852 return ARM_WR0_REGNUM
+ reg
- 112;
4854 /* PACBTI register containing the Pointer Authentication Code. */
4855 if (reg
== ARM_DWARF_RA_AUTH_CODE
)
4857 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
4859 if (tdep
->have_pacbti
)
4860 return tdep
->pacbti_pseudo_base
;
4865 if (reg
>= 192 && reg
<= 199)
4866 return ARM_WC0_REGNUM
+ reg
- 192;
4868 /* VFP v2 registers. A double precision value is actually
4869 in d1 rather than s2, but the ABI only defines numbering
4870 for the single precision registers. This will "just work"
4871 in GDB for little endian targets (we'll read eight bytes,
4872 starting in s0 and then progressing to s1), but will be
4873 reversed on big endian targets with VFP. This won't
4874 be a problem for the new Neon quad registers; you're supposed
4875 to use DW_OP_piece for those. */
4876 if (reg
>= 64 && reg
<= 95)
4880 xsnprintf (name_buf
, sizeof (name_buf
), "s%d", reg
- 64);
4881 return user_reg_map_name_to_regnum (gdbarch
, name_buf
,
4885 /* VFP v3 / Neon registers. This range is also used for VFP v2
4886 registers, except that it now describes d0 instead of s0. */
4887 if (reg
>= 256 && reg
<= 287)
4891 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", reg
- 256);
4892 return user_reg_map_name_to_regnum (gdbarch
, name_buf
,
4899 /* Map GDB internal REGNUM onto the Arm simulator register numbers. */
4901 arm_register_sim_regno (struct gdbarch
*gdbarch
, int regnum
)
4904 gdb_assert (reg
>= 0 && reg
< gdbarch_num_regs (gdbarch
));
4906 if (regnum
>= ARM_WR0_REGNUM
&& regnum
<= ARM_WR15_REGNUM
)
4907 return regnum
- ARM_WR0_REGNUM
+ SIM_ARM_IWMMXT_COP0R0_REGNUM
;
4909 if (regnum
>= ARM_WC0_REGNUM
&& regnum
<= ARM_WC7_REGNUM
)
4910 return regnum
- ARM_WC0_REGNUM
+ SIM_ARM_IWMMXT_COP1R0_REGNUM
;
4912 if (regnum
>= ARM_WCGR0_REGNUM
&& regnum
<= ARM_WCGR7_REGNUM
)
4913 return regnum
- ARM_WCGR0_REGNUM
+ SIM_ARM_IWMMXT_COP1R8_REGNUM
;
4915 if (reg
< NUM_GREGS
)
4916 return SIM_ARM_R0_REGNUM
+ reg
;
4919 if (reg
< NUM_FREGS
)
4920 return SIM_ARM_FP0_REGNUM
+ reg
;
4923 if (reg
< NUM_SREGS
)
4924 return SIM_ARM_FPS_REGNUM
+ reg
;
4927 internal_error (__FILE__
, __LINE__
, _("Bad REGNUM %d"), regnum
);
4930 static const unsigned char op_lit0
= DW_OP_lit0
;
4933 arm_dwarf2_frame_init_reg (struct gdbarch
*gdbarch
, int regnum
,
4934 struct dwarf2_frame_state_reg
*reg
,
4935 struct frame_info
*this_frame
)
4937 if (is_pacbti_pseudo (gdbarch
, regnum
))
4939 /* Initialize RA_AUTH_CODE to zero. */
4940 reg
->how
= DWARF2_FRAME_REG_SAVED_VAL_EXP
;
4941 reg
->loc
.exp
.start
= &op_lit0
;
4942 reg
->loc
.exp
.len
= 1;
4950 reg
->how
= DWARF2_FRAME_REG_FN
;
4951 reg
->loc
.fn
= arm_dwarf2_prev_register
;
4954 reg
->how
= DWARF2_FRAME_REG_CFA
;
4959 /* Given BUF, which is OLD_LEN bytes ending at ENDADDR, expand
4960 the buffer to be NEW_LEN bytes ending at ENDADDR. Return
4961 NULL if an error occurs. BUF is freed. */
4964 extend_buffer_earlier (gdb_byte
*buf
, CORE_ADDR endaddr
,
4965 int old_len
, int new_len
)
4968 int bytes_to_read
= new_len
- old_len
;
4970 new_buf
= (gdb_byte
*) xmalloc (new_len
);
4971 memcpy (new_buf
+ bytes_to_read
, buf
, old_len
);
4973 if (target_read_code (endaddr
- new_len
, new_buf
, bytes_to_read
) != 0)
4981 /* An IT block is at most the 2-byte IT instruction followed by
4982 four 4-byte instructions. The furthest back we must search to
4983 find an IT block that affects the current instruction is thus
4984 2 + 3 * 4 == 14 bytes. */
4985 #define MAX_IT_BLOCK_PREFIX 14
4987 /* Use a quick scan if there are more than this many bytes of
4989 #define IT_SCAN_THRESHOLD 32
4991 /* Adjust a breakpoint's address to move breakpoints out of IT blocks.
4992 A breakpoint in an IT block may not be hit, depending on the
4995 arm_adjust_breakpoint_address (struct gdbarch
*gdbarch
, CORE_ADDR bpaddr
)
4999 CORE_ADDR boundary
, func_start
;
5001 enum bfd_endian order
= gdbarch_byte_order_for_code (gdbarch
);
5002 int i
, any
, last_it
, last_it_count
;
5003 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
5005 /* If we are using BKPT breakpoints, none of this is necessary. */
5006 if (tdep
->thumb2_breakpoint
== NULL
)
5009 /* ARM mode does not have this problem. */
5010 if (!arm_pc_is_thumb (gdbarch
, bpaddr
))
5013 /* We are setting a breakpoint in Thumb code that could potentially
5014 contain an IT block. The first step is to find how much Thumb
5015 code there is; we do not need to read outside of known Thumb
5017 map_type
= arm_find_mapping_symbol (bpaddr
, &boundary
);
5019 /* Thumb-2 code must have mapping symbols to have a chance. */
5022 bpaddr
= gdbarch_addr_bits_remove (gdbarch
, bpaddr
);
5024 if (find_pc_partial_function (bpaddr
, NULL
, &func_start
, NULL
)
5025 && func_start
> boundary
)
5026 boundary
= func_start
;
5028 /* Search for a candidate IT instruction. We have to do some fancy
5029 footwork to distinguish a real IT instruction from the second
5030 half of a 32-bit instruction, but there is no need for that if
5031 there's no candidate. */
5032 buf_len
= std::min (bpaddr
- boundary
, (CORE_ADDR
) MAX_IT_BLOCK_PREFIX
);
5034 /* No room for an IT instruction. */
5037 buf
= (gdb_byte
*) xmalloc (buf_len
);
5038 if (target_read_code (bpaddr
- buf_len
, buf
, buf_len
) != 0)
5041 for (i
= 0; i
< buf_len
; i
+= 2)
5043 unsigned short inst1
= extract_unsigned_integer (&buf
[i
], 2, order
);
5044 if ((inst1
& 0xff00) == 0xbf00 && (inst1
& 0x000f) != 0)
5057 /* OK, the code bytes before this instruction contain at least one
5058 halfword which resembles an IT instruction. We know that it's
5059 Thumb code, but there are still two possibilities. Either the
5060 halfword really is an IT instruction, or it is the second half of
5061 a 32-bit Thumb instruction. The only way we can tell is to
5062 scan forwards from a known instruction boundary. */
5063 if (bpaddr
- boundary
> IT_SCAN_THRESHOLD
)
5067 /* There's a lot of code before this instruction. Start with an
5068 optimistic search; it's easy to recognize halfwords that can
5069 not be the start of a 32-bit instruction, and use that to
5070 lock on to the instruction boundaries. */
5071 buf
= extend_buffer_earlier (buf
, bpaddr
, buf_len
, IT_SCAN_THRESHOLD
);
5074 buf_len
= IT_SCAN_THRESHOLD
;
5077 for (i
= 0; i
< buf_len
- sizeof (buf
) && ! definite
; i
+= 2)
5079 unsigned short inst1
= extract_unsigned_integer (&buf
[i
], 2, order
);
5080 if (thumb_insn_size (inst1
) == 2)
5087 /* At this point, if DEFINITE, BUF[I] is the first place we
5088 are sure that we know the instruction boundaries, and it is far
5089 enough from BPADDR that we could not miss an IT instruction
5090 affecting BPADDR. If ! DEFINITE, give up - start from a
5094 buf
= extend_buffer_earlier (buf
, bpaddr
, buf_len
,
5098 buf_len
= bpaddr
- boundary
;
5104 buf
= extend_buffer_earlier (buf
, bpaddr
, buf_len
, bpaddr
- boundary
);
5107 buf_len
= bpaddr
- boundary
;
5111 /* Scan forwards. Find the last IT instruction before BPADDR. */
5116 unsigned short inst1
= extract_unsigned_integer (&buf
[i
], 2, order
);
5118 if ((inst1
& 0xff00) == 0xbf00 && (inst1
& 0x000f) != 0)
5123 else if (inst1
& 0x0002)
5125 else if (inst1
& 0x0004)
5130 i
+= thumb_insn_size (inst1
);
5136 /* There wasn't really an IT instruction after all. */
5139 if (last_it_count
< 1)
5140 /* It was too far away. */
5143 /* This really is a trouble spot. Move the breakpoint to the IT
5145 return bpaddr
- buf_len
+ last_it
;
5148 /* ARM displaced stepping support.
5150 Generally ARM displaced stepping works as follows:
5152 1. When an instruction is to be single-stepped, it is first decoded by
5153 arm_process_displaced_insn. Depending on the type of instruction, it is
5154 then copied to a scratch location, possibly in a modified form. The
5155 copy_* set of functions performs such modification, as necessary. A
5156 breakpoint is placed after the modified instruction in the scratch space
5157 to return control to GDB. Note in particular that instructions which
5158 modify the PC will no longer do so after modification.
5160 2. The instruction is single-stepped, by setting the PC to the scratch
5161 location address, and resuming. Control returns to GDB when the
5164 3. A cleanup function (cleanup_*) is called corresponding to the copy_*
5165 function used for the current instruction. This function's job is to
5166 put the CPU/memory state back to what it would have been if the
5167 instruction had been executed unmodified in its original location. */
5169 /* NOP instruction (mov r0, r0). */
5170 #define ARM_NOP 0xe1a00000
5171 #define THUMB_NOP 0x4600
5173 /* Helper for register reads for displaced stepping. In particular, this
5174 returns the PC as it would be seen by the instruction at its original
5178 displaced_read_reg (regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
,
5182 CORE_ADDR from
= dsc
->insn_addr
;
5184 if (regno
== ARM_PC_REGNUM
)
5186 /* Compute pipeline offset:
5187 - When executing an ARM instruction, PC reads as the address of the
5188 current instruction plus 8.
5189 - When executing a Thumb instruction, PC reads as the address of the
5190 current instruction plus 4. */
5197 displaced_debug_printf ("read pc value %.8lx",
5198 (unsigned long) from
);
5199 return (ULONGEST
) from
;
5203 regcache_cooked_read_unsigned (regs
, regno
, &ret
);
5205 displaced_debug_printf ("read r%d value %.8lx",
5206 regno
, (unsigned long) ret
);
5213 displaced_in_arm_mode (struct regcache
*regs
)
5216 ULONGEST t_bit
= arm_psr_thumb_bit (regs
->arch ());
5218 regcache_cooked_read_unsigned (regs
, ARM_PS_REGNUM
, &ps
);
5220 return (ps
& t_bit
) == 0;
5223 /* Write to the PC as from a branch instruction. */
5226 branch_write_pc (regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
,
5230 /* Note: If bits 0/1 are set, this branch would be unpredictable for
5231 architecture versions < 6. */
5232 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
,
5233 val
& ~(ULONGEST
) 0x3);
5235 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
,
5236 val
& ~(ULONGEST
) 0x1);
5239 /* Write to the PC as from a branch-exchange instruction. */
5242 bx_write_pc (struct regcache
*regs
, ULONGEST val
)
5245 ULONGEST t_bit
= arm_psr_thumb_bit (regs
->arch ());
5247 regcache_cooked_read_unsigned (regs
, ARM_PS_REGNUM
, &ps
);
5251 regcache_cooked_write_unsigned (regs
, ARM_PS_REGNUM
, ps
| t_bit
);
5252 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
, val
& 0xfffffffe);
5254 else if ((val
& 2) == 0)
5256 regcache_cooked_write_unsigned (regs
, ARM_PS_REGNUM
, ps
& ~t_bit
);
5257 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
, val
);
5261 /* Unpredictable behaviour. Try to do something sensible (switch to ARM
5262 mode, align dest to 4 bytes). */
5263 warning (_("Single-stepping BX to non-word-aligned ARM instruction."));
5264 regcache_cooked_write_unsigned (regs
, ARM_PS_REGNUM
, ps
& ~t_bit
);
5265 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
, val
& 0xfffffffc);
5269 /* Write to the PC as if from a load instruction. */
5272 load_write_pc (regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
,
5275 if (DISPLACED_STEPPING_ARCH_VERSION
>= 5)
5276 bx_write_pc (regs
, val
);
5278 branch_write_pc (regs
, dsc
, val
);
5281 /* Write to the PC as if from an ALU instruction. */
5284 alu_write_pc (regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
,
5287 if (DISPLACED_STEPPING_ARCH_VERSION
>= 7 && !dsc
->is_thumb
)
5288 bx_write_pc (regs
, val
);
5290 branch_write_pc (regs
, dsc
, val
);
5293 /* Helper for writing to registers for displaced stepping. Writing to the PC
5294 has a varying effects depending on the instruction which does the write:
5295 this is controlled by the WRITE_PC argument. */
5298 displaced_write_reg (regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
,
5299 int regno
, ULONGEST val
, enum pc_write_style write_pc
)
5301 if (regno
== ARM_PC_REGNUM
)
5303 displaced_debug_printf ("writing pc %.8lx", (unsigned long) val
);
5307 case BRANCH_WRITE_PC
:
5308 branch_write_pc (regs
, dsc
, val
);
5312 bx_write_pc (regs
, val
);
5316 load_write_pc (regs
, dsc
, val
);
5320 alu_write_pc (regs
, dsc
, val
);
5323 case CANNOT_WRITE_PC
:
5324 warning (_("Instruction wrote to PC in an unexpected way when "
5325 "single-stepping"));
5329 internal_error (__FILE__
, __LINE__
,
5330 _("Invalid argument to displaced_write_reg"));
5333 dsc
->wrote_to_pc
= 1;
5337 displaced_debug_printf ("writing r%d value %.8lx",
5338 regno
, (unsigned long) val
);
5339 regcache_cooked_write_unsigned (regs
, regno
, val
);
5343 /* This function is used to concisely determine if an instruction INSN
5344 references PC. Register fields of interest in INSN should have the
5345 corresponding fields of BITMASK set to 0b1111. The function
5346 returns return 1 if any of these fields in INSN reference the PC
5347 (also 0b1111, r15), else it returns 0. */
5350 insn_references_pc (uint32_t insn
, uint32_t bitmask
)
5352 uint32_t lowbit
= 1;
5354 while (bitmask
!= 0)
5358 for (; lowbit
&& (bitmask
& lowbit
) == 0; lowbit
<<= 1)
5364 mask
= lowbit
* 0xf;
5366 if ((insn
& mask
) == mask
)
5375 /* The simplest copy function. Many instructions have the same effect no
5376 matter what address they are executed at: in those cases, use this. */
5379 arm_copy_unmodified (struct gdbarch
*gdbarch
, uint32_t insn
, const char *iname
,
5380 arm_displaced_step_copy_insn_closure
*dsc
)
5382 displaced_debug_printf ("copying insn %.8lx, opcode/class '%s' unmodified",
5383 (unsigned long) insn
, iname
);
5385 dsc
->modinsn
[0] = insn
;
5391 thumb_copy_unmodified_32bit (struct gdbarch
*gdbarch
, uint16_t insn1
,
5392 uint16_t insn2
, const char *iname
,
5393 arm_displaced_step_copy_insn_closure
*dsc
)
5395 displaced_debug_printf ("copying insn %.4x %.4x, opcode/class '%s' "
5396 "unmodified", insn1
, insn2
, iname
);
5398 dsc
->modinsn
[0] = insn1
;
5399 dsc
->modinsn
[1] = insn2
;
5405 /* Copy 16-bit Thumb(Thumb and 16-bit Thumb-2) instruction without any
5408 thumb_copy_unmodified_16bit (struct gdbarch
*gdbarch
, uint16_t insn
,
5410 arm_displaced_step_copy_insn_closure
*dsc
)
5412 displaced_debug_printf ("copying insn %.4x, opcode/class '%s' unmodified",
5415 dsc
->modinsn
[0] = insn
;
5420 /* Preload instructions with immediate offset. */
5423 cleanup_preload (struct gdbarch
*gdbarch
, regcache
*regs
,
5424 arm_displaced_step_copy_insn_closure
*dsc
)
5426 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
5427 if (!dsc
->u
.preload
.immed
)
5428 displaced_write_reg (regs
, dsc
, 1, dsc
->tmp
[1], CANNOT_WRITE_PC
);
5432 install_preload (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5433 arm_displaced_step_copy_insn_closure
*dsc
, unsigned int rn
)
5436 /* Preload instructions:
5438 {pli/pld} [rn, #+/-imm]
5440 {pli/pld} [r0, #+/-imm]. */
5442 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5443 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5444 displaced_write_reg (regs
, dsc
, 0, rn_val
, CANNOT_WRITE_PC
);
5445 dsc
->u
.preload
.immed
= 1;
5447 dsc
->cleanup
= &cleanup_preload
;
5451 arm_copy_preload (struct gdbarch
*gdbarch
, uint32_t insn
, struct regcache
*regs
,
5452 arm_displaced_step_copy_insn_closure
*dsc
)
5454 unsigned int rn
= bits (insn
, 16, 19);
5456 if (!insn_references_pc (insn
, 0x000f0000ul
))
5457 return arm_copy_unmodified (gdbarch
, insn
, "preload", dsc
);
5459 displaced_debug_printf ("copying preload insn %.8lx", (unsigned long) insn
);
5461 dsc
->modinsn
[0] = insn
& 0xfff0ffff;
5463 install_preload (gdbarch
, regs
, dsc
, rn
);
5469 thumb2_copy_preload (struct gdbarch
*gdbarch
, uint16_t insn1
, uint16_t insn2
,
5470 regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
)
5472 unsigned int rn
= bits (insn1
, 0, 3);
5473 unsigned int u_bit
= bit (insn1
, 7);
5474 int imm12
= bits (insn2
, 0, 11);
5477 if (rn
!= ARM_PC_REGNUM
)
5478 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "preload", dsc
);
5480 /* PC is only allowed to use in PLI (immediate,literal) Encoding T3, and
5481 PLD (literal) Encoding T1. */
5482 displaced_debug_printf ("copying pld/pli pc (0x%x) %c imm12 %.4x",
5483 (unsigned int) dsc
->insn_addr
, u_bit
? '+' : '-',
5489 /* Rewrite instruction {pli/pld} PC imm12 into:
5490 Prepare: tmp[0] <- r0, tmp[1] <- r1, r0 <- pc, r1 <- imm12
5494 Cleanup: r0 <- tmp[0], r1 <- tmp[1]. */
5496 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5497 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
5499 pc_val
= displaced_read_reg (regs
, dsc
, ARM_PC_REGNUM
);
5501 displaced_write_reg (regs
, dsc
, 0, pc_val
, CANNOT_WRITE_PC
);
5502 displaced_write_reg (regs
, dsc
, 1, imm12
, CANNOT_WRITE_PC
);
5503 dsc
->u
.preload
.immed
= 0;
5505 /* {pli/pld} [r0, r1] */
5506 dsc
->modinsn
[0] = insn1
& 0xfff0;
5507 dsc
->modinsn
[1] = 0xf001;
5510 dsc
->cleanup
= &cleanup_preload
;
5514 /* Preload instructions with register offset. */
5517 install_preload_reg(struct gdbarch
*gdbarch
, struct regcache
*regs
,
5518 arm_displaced_step_copy_insn_closure
*dsc
, unsigned int rn
,
5521 ULONGEST rn_val
, rm_val
;
5523 /* Preload register-offset instructions:
5525 {pli/pld} [rn, rm {, shift}]
5527 {pli/pld} [r0, r1 {, shift}]. */
5529 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5530 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
5531 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5532 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
5533 displaced_write_reg (regs
, dsc
, 0, rn_val
, CANNOT_WRITE_PC
);
5534 displaced_write_reg (regs
, dsc
, 1, rm_val
, CANNOT_WRITE_PC
);
5535 dsc
->u
.preload
.immed
= 0;
5537 dsc
->cleanup
= &cleanup_preload
;
5541 arm_copy_preload_reg (struct gdbarch
*gdbarch
, uint32_t insn
,
5542 struct regcache
*regs
,
5543 arm_displaced_step_copy_insn_closure
*dsc
)
5545 unsigned int rn
= bits (insn
, 16, 19);
5546 unsigned int rm
= bits (insn
, 0, 3);
5549 if (!insn_references_pc (insn
, 0x000f000ful
))
5550 return arm_copy_unmodified (gdbarch
, insn
, "preload reg", dsc
);
5552 displaced_debug_printf ("copying preload insn %.8lx",
5553 (unsigned long) insn
);
5555 dsc
->modinsn
[0] = (insn
& 0xfff0fff0) | 0x1;
5557 install_preload_reg (gdbarch
, regs
, dsc
, rn
, rm
);
5561 /* Copy/cleanup coprocessor load and store instructions. */
5564 cleanup_copro_load_store (struct gdbarch
*gdbarch
,
5565 struct regcache
*regs
,
5566 arm_displaced_step_copy_insn_closure
*dsc
)
5568 ULONGEST rn_val
= displaced_read_reg (regs
, dsc
, 0);
5570 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
5572 if (dsc
->u
.ldst
.writeback
)
5573 displaced_write_reg (regs
, dsc
, dsc
->u
.ldst
.rn
, rn_val
, LOAD_WRITE_PC
);
5577 install_copro_load_store (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5578 arm_displaced_step_copy_insn_closure
*dsc
,
5579 int writeback
, unsigned int rn
)
5583 /* Coprocessor load/store instructions:
5585 {stc/stc2} [<Rn>, #+/-imm] (and other immediate addressing modes)
5587 {stc/stc2} [r0, #+/-imm].
5589 ldc/ldc2 are handled identically. */
5591 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5592 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5593 /* PC should be 4-byte aligned. */
5594 rn_val
= rn_val
& 0xfffffffc;
5595 displaced_write_reg (regs
, dsc
, 0, rn_val
, CANNOT_WRITE_PC
);
5597 dsc
->u
.ldst
.writeback
= writeback
;
5598 dsc
->u
.ldst
.rn
= rn
;
5600 dsc
->cleanup
= &cleanup_copro_load_store
;
5604 arm_copy_copro_load_store (struct gdbarch
*gdbarch
, uint32_t insn
,
5605 struct regcache
*regs
,
5606 arm_displaced_step_copy_insn_closure
*dsc
)
5608 unsigned int rn
= bits (insn
, 16, 19);
5610 if (!insn_references_pc (insn
, 0x000f0000ul
))
5611 return arm_copy_unmodified (gdbarch
, insn
, "copro load/store", dsc
);
5613 displaced_debug_printf ("copying coprocessor load/store insn %.8lx",
5614 (unsigned long) insn
);
5616 dsc
->modinsn
[0] = insn
& 0xfff0ffff;
5618 install_copro_load_store (gdbarch
, regs
, dsc
, bit (insn
, 25), rn
);
5624 thumb2_copy_copro_load_store (struct gdbarch
*gdbarch
, uint16_t insn1
,
5625 uint16_t insn2
, struct regcache
*regs
,
5626 arm_displaced_step_copy_insn_closure
*dsc
)
5628 unsigned int rn
= bits (insn1
, 0, 3);
5630 if (rn
!= ARM_PC_REGNUM
)
5631 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
5632 "copro load/store", dsc
);
5634 displaced_debug_printf ("copying coprocessor load/store insn %.4x%.4x",
5637 dsc
->modinsn
[0] = insn1
& 0xfff0;
5638 dsc
->modinsn
[1] = insn2
;
5641 /* This function is called for copying instruction LDC/LDC2/VLDR, which
5642 doesn't support writeback, so pass 0. */
5643 install_copro_load_store (gdbarch
, regs
, dsc
, 0, rn
);
5648 /* Clean up branch instructions (actually perform the branch, by setting
5652 cleanup_branch (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5653 arm_displaced_step_copy_insn_closure
*dsc
)
5655 uint32_t status
= displaced_read_reg (regs
, dsc
, ARM_PS_REGNUM
);
5656 int branch_taken
= condition_true (dsc
->u
.branch
.cond
, status
);
5657 enum pc_write_style write_pc
= dsc
->u
.branch
.exchange
5658 ? BX_WRITE_PC
: BRANCH_WRITE_PC
;
5663 if (dsc
->u
.branch
.link
)
5665 /* The value of LR should be the next insn of current one. In order
5666 not to confuse logic handling later insn `bx lr', if current insn mode
5667 is Thumb, the bit 0 of LR value should be set to 1. */
5668 ULONGEST next_insn_addr
= dsc
->insn_addr
+ dsc
->insn_size
;
5671 next_insn_addr
|= 0x1;
5673 displaced_write_reg (regs
, dsc
, ARM_LR_REGNUM
, next_insn_addr
,
5677 displaced_write_reg (regs
, dsc
, ARM_PC_REGNUM
, dsc
->u
.branch
.dest
, write_pc
);
5680 /* Copy B/BL/BLX instructions with immediate destinations. */
5683 install_b_bl_blx (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5684 arm_displaced_step_copy_insn_closure
*dsc
,
5685 unsigned int cond
, int exchange
, int link
, long offset
)
5687 /* Implement "BL<cond> <label>" as:
5689 Preparation: cond <- instruction condition
5690 Insn: mov r0, r0 (nop)
5691 Cleanup: if (condition true) { r14 <- pc; pc <- label }.
5693 B<cond> similar, but don't set r14 in cleanup. */
5695 dsc
->u
.branch
.cond
= cond
;
5696 dsc
->u
.branch
.link
= link
;
5697 dsc
->u
.branch
.exchange
= exchange
;
5699 dsc
->u
.branch
.dest
= dsc
->insn_addr
;
5700 if (link
&& exchange
)
5701 /* For BLX, offset is computed from the Align (PC, 4). */
5702 dsc
->u
.branch
.dest
= dsc
->u
.branch
.dest
& 0xfffffffc;
5705 dsc
->u
.branch
.dest
+= 4 + offset
;
5707 dsc
->u
.branch
.dest
+= 8 + offset
;
5709 dsc
->cleanup
= &cleanup_branch
;
5712 arm_copy_b_bl_blx (struct gdbarch
*gdbarch
, uint32_t insn
,
5713 regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
)
5715 unsigned int cond
= bits (insn
, 28, 31);
5716 int exchange
= (cond
== 0xf);
5717 int link
= exchange
|| bit (insn
, 24);
5720 displaced_debug_printf ("copying %s immediate insn %.8lx",
5721 (exchange
) ? "blx" : (link
) ? "bl" : "b",
5722 (unsigned long) insn
);
5724 /* For BLX, set bit 0 of the destination. The cleanup_branch function will
5725 then arrange the switch into Thumb mode. */
5726 offset
= (bits (insn
, 0, 23) << 2) | (bit (insn
, 24) << 1) | 1;
5728 offset
= bits (insn
, 0, 23) << 2;
5730 if (bit (offset
, 25))
5731 offset
= offset
| ~0x3ffffff;
5733 dsc
->modinsn
[0] = ARM_NOP
;
5735 install_b_bl_blx (gdbarch
, regs
, dsc
, cond
, exchange
, link
, offset
);
5740 thumb2_copy_b_bl_blx (struct gdbarch
*gdbarch
, uint16_t insn1
,
5741 uint16_t insn2
, struct regcache
*regs
,
5742 arm_displaced_step_copy_insn_closure
*dsc
)
5744 int link
= bit (insn2
, 14);
5745 int exchange
= link
&& !bit (insn2
, 12);
5748 int j1
= bit (insn2
, 13);
5749 int j2
= bit (insn2
, 11);
5750 int s
= sbits (insn1
, 10, 10);
5751 int i1
= !(j1
^ bit (insn1
, 10));
5752 int i2
= !(j2
^ bit (insn1
, 10));
5754 if (!link
&& !exchange
) /* B */
5756 offset
= (bits (insn2
, 0, 10) << 1);
5757 if (bit (insn2
, 12)) /* Encoding T4 */
5759 offset
|= (bits (insn1
, 0, 9) << 12)
5765 else /* Encoding T3 */
5767 offset
|= (bits (insn1
, 0, 5) << 12)
5771 cond
= bits (insn1
, 6, 9);
5776 offset
= (bits (insn1
, 0, 9) << 12);
5777 offset
|= ((i2
<< 22) | (i1
<< 23) | (s
<< 24));
5778 offset
|= exchange
?
5779 (bits (insn2
, 1, 10) << 2) : (bits (insn2
, 0, 10) << 1);
5782 displaced_debug_printf ("copying %s insn %.4x %.4x with offset %.8lx",
5783 link
? (exchange
) ? "blx" : "bl" : "b",
5784 insn1
, insn2
, offset
);
5786 dsc
->modinsn
[0] = THUMB_NOP
;
5788 install_b_bl_blx (gdbarch
, regs
, dsc
, cond
, exchange
, link
, offset
);
5792 /* Copy B Thumb instructions. */
5794 thumb_copy_b (struct gdbarch
*gdbarch
, uint16_t insn
,
5795 arm_displaced_step_copy_insn_closure
*dsc
)
5797 unsigned int cond
= 0;
5799 unsigned short bit_12_15
= bits (insn
, 12, 15);
5800 CORE_ADDR from
= dsc
->insn_addr
;
5802 if (bit_12_15
== 0xd)
5804 /* offset = SignExtend (imm8:0, 32) */
5805 offset
= sbits ((insn
<< 1), 0, 8);
5806 cond
= bits (insn
, 8, 11);
5808 else if (bit_12_15
== 0xe) /* Encoding T2 */
5810 offset
= sbits ((insn
<< 1), 0, 11);
5814 displaced_debug_printf ("copying b immediate insn %.4x with offset %d",
5817 dsc
->u
.branch
.cond
= cond
;
5818 dsc
->u
.branch
.link
= 0;
5819 dsc
->u
.branch
.exchange
= 0;
5820 dsc
->u
.branch
.dest
= from
+ 4 + offset
;
5822 dsc
->modinsn
[0] = THUMB_NOP
;
5824 dsc
->cleanup
= &cleanup_branch
;
5829 /* Copy BX/BLX with register-specified destinations. */
5832 install_bx_blx_reg (struct gdbarch
*gdbarch
, struct regcache
*regs
,
5833 arm_displaced_step_copy_insn_closure
*dsc
, int link
,
5834 unsigned int cond
, unsigned int rm
)
5836 /* Implement {BX,BLX}<cond> <reg>" as:
5838 Preparation: cond <- instruction condition
5839 Insn: mov r0, r0 (nop)
5840 Cleanup: if (condition true) { r14 <- pc; pc <- dest; }.
5842 Don't set r14 in cleanup for BX. */
5844 dsc
->u
.branch
.dest
= displaced_read_reg (regs
, dsc
, rm
);
5846 dsc
->u
.branch
.cond
= cond
;
5847 dsc
->u
.branch
.link
= link
;
5849 dsc
->u
.branch
.exchange
= 1;
5851 dsc
->cleanup
= &cleanup_branch
;
5855 arm_copy_bx_blx_reg (struct gdbarch
*gdbarch
, uint32_t insn
,
5856 regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
)
5858 unsigned int cond
= bits (insn
, 28, 31);
5861 int link
= bit (insn
, 5);
5862 unsigned int rm
= bits (insn
, 0, 3);
5864 displaced_debug_printf ("copying insn %.8lx", (unsigned long) insn
);
5866 dsc
->modinsn
[0] = ARM_NOP
;
5868 install_bx_blx_reg (gdbarch
, regs
, dsc
, link
, cond
, rm
);
5873 thumb_copy_bx_blx_reg (struct gdbarch
*gdbarch
, uint16_t insn
,
5874 struct regcache
*regs
,
5875 arm_displaced_step_copy_insn_closure
*dsc
)
5877 int link
= bit (insn
, 7);
5878 unsigned int rm
= bits (insn
, 3, 6);
5880 displaced_debug_printf ("copying insn %.4x", (unsigned short) insn
);
5882 dsc
->modinsn
[0] = THUMB_NOP
;
5884 install_bx_blx_reg (gdbarch
, regs
, dsc
, link
, INST_AL
, rm
);
5890 /* Copy/cleanup arithmetic/logic instruction with immediate RHS. */
5893 cleanup_alu_imm (struct gdbarch
*gdbarch
,
5894 regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
)
5896 ULONGEST rd_val
= displaced_read_reg (regs
, dsc
, 0);
5897 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
5898 displaced_write_reg (regs
, dsc
, 1, dsc
->tmp
[1], CANNOT_WRITE_PC
);
5899 displaced_write_reg (regs
, dsc
, dsc
->rd
, rd_val
, ALU_WRITE_PC
);
5903 arm_copy_alu_imm (struct gdbarch
*gdbarch
, uint32_t insn
, struct regcache
*regs
,
5904 arm_displaced_step_copy_insn_closure
*dsc
)
5906 unsigned int rn
= bits (insn
, 16, 19);
5907 unsigned int rd
= bits (insn
, 12, 15);
5908 unsigned int op
= bits (insn
, 21, 24);
5909 int is_mov
= (op
== 0xd);
5910 ULONGEST rd_val
, rn_val
;
5912 if (!insn_references_pc (insn
, 0x000ff000ul
))
5913 return arm_copy_unmodified (gdbarch
, insn
, "ALU immediate", dsc
);
5915 displaced_debug_printf ("copying immediate %s insn %.8lx",
5916 is_mov
? "move" : "ALU",
5917 (unsigned long) insn
);
5919 /* Instruction is of form:
5921 <op><cond> rd, [rn,] #imm
5925 Preparation: tmp1, tmp2 <- r0, r1;
5927 Insn: <op><cond> r0, r1, #imm
5928 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
5931 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5932 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
5933 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5934 rd_val
= displaced_read_reg (regs
, dsc
, rd
);
5935 displaced_write_reg (regs
, dsc
, 0, rd_val
, CANNOT_WRITE_PC
);
5936 displaced_write_reg (regs
, dsc
, 1, rn_val
, CANNOT_WRITE_PC
);
5940 dsc
->modinsn
[0] = insn
& 0xfff00fff;
5942 dsc
->modinsn
[0] = (insn
& 0xfff00fff) | 0x10000;
5944 dsc
->cleanup
= &cleanup_alu_imm
;
5950 thumb2_copy_alu_imm (struct gdbarch
*gdbarch
, uint16_t insn1
,
5951 uint16_t insn2
, struct regcache
*regs
,
5952 arm_displaced_step_copy_insn_closure
*dsc
)
5954 unsigned int op
= bits (insn1
, 5, 8);
5955 unsigned int rn
, rm
, rd
;
5956 ULONGEST rd_val
, rn_val
;
5958 rn
= bits (insn1
, 0, 3); /* Rn */
5959 rm
= bits (insn2
, 0, 3); /* Rm */
5960 rd
= bits (insn2
, 8, 11); /* Rd */
5962 /* This routine is only called for instruction MOV. */
5963 gdb_assert (op
== 0x2 && rn
== 0xf);
5965 if (rm
!= ARM_PC_REGNUM
&& rd
!= ARM_PC_REGNUM
)
5966 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "ALU imm", dsc
);
5968 displaced_debug_printf ("copying reg %s insn %.4x%.4x", "ALU", insn1
, insn2
);
5970 /* Instruction is of form:
5972 <op><cond> rd, [rn,] #imm
5976 Preparation: tmp1, tmp2 <- r0, r1;
5978 Insn: <op><cond> r0, r1, #imm
5979 Cleanup: rd <- r0; r0 <- tmp1; r1 <- tmp2
5982 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
5983 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
5984 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
5985 rd_val
= displaced_read_reg (regs
, dsc
, rd
);
5986 displaced_write_reg (regs
, dsc
, 0, rd_val
, CANNOT_WRITE_PC
);
5987 displaced_write_reg (regs
, dsc
, 1, rn_val
, CANNOT_WRITE_PC
);
5990 dsc
->modinsn
[0] = insn1
;
5991 dsc
->modinsn
[1] = ((insn2
& 0xf0f0) | 0x1);
5994 dsc
->cleanup
= &cleanup_alu_imm
;
5999 /* Copy/cleanup arithmetic/logic insns with register RHS. */
6002 cleanup_alu_reg (struct gdbarch
*gdbarch
,
6003 regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
)
6008 rd_val
= displaced_read_reg (regs
, dsc
, 0);
6010 for (i
= 0; i
< 3; i
++)
6011 displaced_write_reg (regs
, dsc
, i
, dsc
->tmp
[i
], CANNOT_WRITE_PC
);
6013 displaced_write_reg (regs
, dsc
, dsc
->rd
, rd_val
, ALU_WRITE_PC
);
6017 install_alu_reg (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6018 arm_displaced_step_copy_insn_closure
*dsc
,
6019 unsigned int rd
, unsigned int rn
, unsigned int rm
)
6021 ULONGEST rd_val
, rn_val
, rm_val
;
6023 /* Instruction is of form:
6025 <op><cond> rd, [rn,] rm [, <shift>]
6029 Preparation: tmp1, tmp2, tmp3 <- r0, r1, r2;
6030 r0, r1, r2 <- rd, rn, rm
6031 Insn: <op><cond> r0, [r1,] r2 [, <shift>]
6032 Cleanup: rd <- r0; r0, r1, r2 <- tmp1, tmp2, tmp3
6035 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
6036 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
6037 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
6038 rd_val
= displaced_read_reg (regs
, dsc
, rd
);
6039 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
6040 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
6041 displaced_write_reg (regs
, dsc
, 0, rd_val
, CANNOT_WRITE_PC
);
6042 displaced_write_reg (regs
, dsc
, 1, rn_val
, CANNOT_WRITE_PC
);
6043 displaced_write_reg (regs
, dsc
, 2, rm_val
, CANNOT_WRITE_PC
);
6046 dsc
->cleanup
= &cleanup_alu_reg
;
6050 arm_copy_alu_reg (struct gdbarch
*gdbarch
, uint32_t insn
, struct regcache
*regs
,
6051 arm_displaced_step_copy_insn_closure
*dsc
)
6053 unsigned int op
= bits (insn
, 21, 24);
6054 int is_mov
= (op
== 0xd);
6056 if (!insn_references_pc (insn
, 0x000ff00ful
))
6057 return arm_copy_unmodified (gdbarch
, insn
, "ALU reg", dsc
);
6059 displaced_debug_printf ("copying reg %s insn %.8lx",
6060 is_mov
? "move" : "ALU", (unsigned long) insn
);
6063 dsc
->modinsn
[0] = (insn
& 0xfff00ff0) | 0x2;
6065 dsc
->modinsn
[0] = (insn
& 0xfff00ff0) | 0x10002;
6067 install_alu_reg (gdbarch
, regs
, dsc
, bits (insn
, 12, 15), bits (insn
, 16, 19),
6073 thumb_copy_alu_reg (struct gdbarch
*gdbarch
, uint16_t insn
,
6074 struct regcache
*regs
,
6075 arm_displaced_step_copy_insn_closure
*dsc
)
6079 rm
= bits (insn
, 3, 6);
6080 rd
= (bit (insn
, 7) << 3) | bits (insn
, 0, 2);
6082 if (rd
!= ARM_PC_REGNUM
&& rm
!= ARM_PC_REGNUM
)
6083 return thumb_copy_unmodified_16bit (gdbarch
, insn
, "ALU reg", dsc
);
6085 displaced_debug_printf ("copying ALU reg insn %.4x", (unsigned short) insn
);
6087 dsc
->modinsn
[0] = ((insn
& 0xff00) | 0x10);
6089 install_alu_reg (gdbarch
, regs
, dsc
, rd
, rd
, rm
);
6094 /* Cleanup/copy arithmetic/logic insns with shifted register RHS. */
6097 cleanup_alu_shifted_reg (struct gdbarch
*gdbarch
,
6098 struct regcache
*regs
,
6099 arm_displaced_step_copy_insn_closure
*dsc
)
6101 ULONGEST rd_val
= displaced_read_reg (regs
, dsc
, 0);
6104 for (i
= 0; i
< 4; i
++)
6105 displaced_write_reg (regs
, dsc
, i
, dsc
->tmp
[i
], CANNOT_WRITE_PC
);
6107 displaced_write_reg (regs
, dsc
, dsc
->rd
, rd_val
, ALU_WRITE_PC
);
6111 install_alu_shifted_reg (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6112 arm_displaced_step_copy_insn_closure
*dsc
,
6113 unsigned int rd
, unsigned int rn
, unsigned int rm
,
6117 ULONGEST rd_val
, rn_val
, rm_val
, rs_val
;
6119 /* Instruction is of form:
6121 <op><cond> rd, [rn,] rm, <shift> rs
6125 Preparation: tmp1, tmp2, tmp3, tmp4 <- r0, r1, r2, r3
6126 r0, r1, r2, r3 <- rd, rn, rm, rs
6127 Insn: <op><cond> r0, r1, r2, <shift> r3
6129 r0, r1, r2, r3 <- tmp1, tmp2, tmp3, tmp4
6133 for (i
= 0; i
< 4; i
++)
6134 dsc
->tmp
[i
] = displaced_read_reg (regs
, dsc
, i
);
6136 rd_val
= displaced_read_reg (regs
, dsc
, rd
);
6137 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
6138 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
6139 rs_val
= displaced_read_reg (regs
, dsc
, rs
);
6140 displaced_write_reg (regs
, dsc
, 0, rd_val
, CANNOT_WRITE_PC
);
6141 displaced_write_reg (regs
, dsc
, 1, rn_val
, CANNOT_WRITE_PC
);
6142 displaced_write_reg (regs
, dsc
, 2, rm_val
, CANNOT_WRITE_PC
);
6143 displaced_write_reg (regs
, dsc
, 3, rs_val
, CANNOT_WRITE_PC
);
6145 dsc
->cleanup
= &cleanup_alu_shifted_reg
;
6149 arm_copy_alu_shifted_reg (struct gdbarch
*gdbarch
, uint32_t insn
,
6150 struct regcache
*regs
,
6151 arm_displaced_step_copy_insn_closure
*dsc
)
6153 unsigned int op
= bits (insn
, 21, 24);
6154 int is_mov
= (op
== 0xd);
6155 unsigned int rd
, rn
, rm
, rs
;
6157 if (!insn_references_pc (insn
, 0x000fff0ful
))
6158 return arm_copy_unmodified (gdbarch
, insn
, "ALU shifted reg", dsc
);
6160 displaced_debug_printf ("copying shifted reg %s insn %.8lx",
6161 is_mov
? "move" : "ALU",
6162 (unsigned long) insn
);
6164 rn
= bits (insn
, 16, 19);
6165 rm
= bits (insn
, 0, 3);
6166 rs
= bits (insn
, 8, 11);
6167 rd
= bits (insn
, 12, 15);
6170 dsc
->modinsn
[0] = (insn
& 0xfff000f0) | 0x302;
6172 dsc
->modinsn
[0] = (insn
& 0xfff000f0) | 0x10302;
6174 install_alu_shifted_reg (gdbarch
, regs
, dsc
, rd
, rn
, rm
, rs
);
6179 /* Clean up load instructions. */
6182 cleanup_load (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6183 arm_displaced_step_copy_insn_closure
*dsc
)
6185 ULONGEST rt_val
, rt_val2
= 0, rn_val
;
6187 rt_val
= displaced_read_reg (regs
, dsc
, 0);
6188 if (dsc
->u
.ldst
.xfersize
== 8)
6189 rt_val2
= displaced_read_reg (regs
, dsc
, 1);
6190 rn_val
= displaced_read_reg (regs
, dsc
, 2);
6192 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
6193 if (dsc
->u
.ldst
.xfersize
> 4)
6194 displaced_write_reg (regs
, dsc
, 1, dsc
->tmp
[1], CANNOT_WRITE_PC
);
6195 displaced_write_reg (regs
, dsc
, 2, dsc
->tmp
[2], CANNOT_WRITE_PC
);
6196 if (!dsc
->u
.ldst
.immed
)
6197 displaced_write_reg (regs
, dsc
, 3, dsc
->tmp
[3], CANNOT_WRITE_PC
);
6199 /* Handle register writeback. */
6200 if (dsc
->u
.ldst
.writeback
)
6201 displaced_write_reg (regs
, dsc
, dsc
->u
.ldst
.rn
, rn_val
, CANNOT_WRITE_PC
);
6202 /* Put result in right place. */
6203 displaced_write_reg (regs
, dsc
, dsc
->rd
, rt_val
, LOAD_WRITE_PC
);
6204 if (dsc
->u
.ldst
.xfersize
== 8)
6205 displaced_write_reg (regs
, dsc
, dsc
->rd
+ 1, rt_val2
, LOAD_WRITE_PC
);
6208 /* Clean up store instructions. */
6211 cleanup_store (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6212 arm_displaced_step_copy_insn_closure
*dsc
)
6214 ULONGEST rn_val
= displaced_read_reg (regs
, dsc
, 2);
6216 displaced_write_reg (regs
, dsc
, 0, dsc
->tmp
[0], CANNOT_WRITE_PC
);
6217 if (dsc
->u
.ldst
.xfersize
> 4)
6218 displaced_write_reg (regs
, dsc
, 1, dsc
->tmp
[1], CANNOT_WRITE_PC
);
6219 displaced_write_reg (regs
, dsc
, 2, dsc
->tmp
[2], CANNOT_WRITE_PC
);
6220 if (!dsc
->u
.ldst
.immed
)
6221 displaced_write_reg (regs
, dsc
, 3, dsc
->tmp
[3], CANNOT_WRITE_PC
);
6222 if (!dsc
->u
.ldst
.restore_r4
)
6223 displaced_write_reg (regs
, dsc
, 4, dsc
->tmp
[4], CANNOT_WRITE_PC
);
6226 if (dsc
->u
.ldst
.writeback
)
6227 displaced_write_reg (regs
, dsc
, dsc
->u
.ldst
.rn
, rn_val
, CANNOT_WRITE_PC
);
6230 /* Copy "extra" load/store instructions. These are halfword/doubleword
6231 transfers, which have a different encoding to byte/word transfers. */
6234 arm_copy_extra_ld_st (struct gdbarch
*gdbarch
, uint32_t insn
, int unprivileged
,
6235 regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
)
6237 unsigned int op1
= bits (insn
, 20, 24);
6238 unsigned int op2
= bits (insn
, 5, 6);
6239 unsigned int rt
= bits (insn
, 12, 15);
6240 unsigned int rn
= bits (insn
, 16, 19);
6241 unsigned int rm
= bits (insn
, 0, 3);
6242 char load
[12] = {0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1};
6243 char bytesize
[12] = {2, 2, 2, 2, 8, 1, 8, 1, 8, 2, 8, 2};
6244 int immed
= (op1
& 0x4) != 0;
6246 ULONGEST rt_val
, rt_val2
= 0, rn_val
, rm_val
= 0;
6248 if (!insn_references_pc (insn
, 0x000ff00ful
))
6249 return arm_copy_unmodified (gdbarch
, insn
, "extra load/store", dsc
);
6251 displaced_debug_printf ("copying %sextra load/store insn %.8lx",
6252 unprivileged
? "unprivileged " : "",
6253 (unsigned long) insn
);
6255 opcode
= ((op2
<< 2) | (op1
& 0x1) | ((op1
& 0x4) >> 1)) - 4;
6258 internal_error (__FILE__
, __LINE__
,
6259 _("copy_extra_ld_st: instruction decode error"));
6261 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
6262 dsc
->tmp
[1] = displaced_read_reg (regs
, dsc
, 1);
6263 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
6265 dsc
->tmp
[3] = displaced_read_reg (regs
, dsc
, 3);
6267 rt_val
= displaced_read_reg (regs
, dsc
, rt
);
6268 if (bytesize
[opcode
] == 8)
6269 rt_val2
= displaced_read_reg (regs
, dsc
, rt
+ 1);
6270 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
6272 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
6274 displaced_write_reg (regs
, dsc
, 0, rt_val
, CANNOT_WRITE_PC
);
6275 if (bytesize
[opcode
] == 8)
6276 displaced_write_reg (regs
, dsc
, 1, rt_val2
, CANNOT_WRITE_PC
);
6277 displaced_write_reg (regs
, dsc
, 2, rn_val
, CANNOT_WRITE_PC
);
6279 displaced_write_reg (regs
, dsc
, 3, rm_val
, CANNOT_WRITE_PC
);
6282 dsc
->u
.ldst
.xfersize
= bytesize
[opcode
];
6283 dsc
->u
.ldst
.rn
= rn
;
6284 dsc
->u
.ldst
.immed
= immed
;
6285 dsc
->u
.ldst
.writeback
= bit (insn
, 24) == 0 || bit (insn
, 21) != 0;
6286 dsc
->u
.ldst
.restore_r4
= 0;
6289 /* {ldr,str}<width><cond> rt, [rt2,] [rn, #imm]
6291 {ldr,str}<width><cond> r0, [r1,] [r2, #imm]. */
6292 dsc
->modinsn
[0] = (insn
& 0xfff00fff) | 0x20000;
6294 /* {ldr,str}<width><cond> rt, [rt2,] [rn, +/-rm]
6296 {ldr,str}<width><cond> r0, [r1,] [r2, +/-r3]. */
6297 dsc
->modinsn
[0] = (insn
& 0xfff00ff0) | 0x20003;
6299 dsc
->cleanup
= load
[opcode
] ? &cleanup_load
: &cleanup_store
;
6304 /* Copy byte/half word/word loads and stores. */
6307 install_load_store (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6308 arm_displaced_step_copy_insn_closure
*dsc
, int load
,
6309 int immed
, int writeback
, int size
, int usermode
,
6310 int rt
, int rm
, int rn
)
6312 ULONGEST rt_val
, rn_val
, rm_val
= 0;
6314 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
6315 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
6317 dsc
->tmp
[3] = displaced_read_reg (regs
, dsc
, 3);
6319 dsc
->tmp
[4] = displaced_read_reg (regs
, dsc
, 4);
6321 rt_val
= displaced_read_reg (regs
, dsc
, rt
);
6322 rn_val
= displaced_read_reg (regs
, dsc
, rn
);
6324 rm_val
= displaced_read_reg (regs
, dsc
, rm
);
6326 displaced_write_reg (regs
, dsc
, 0, rt_val
, CANNOT_WRITE_PC
);
6327 displaced_write_reg (regs
, dsc
, 2, rn_val
, CANNOT_WRITE_PC
);
6329 displaced_write_reg (regs
, dsc
, 3, rm_val
, CANNOT_WRITE_PC
);
6331 dsc
->u
.ldst
.xfersize
= size
;
6332 dsc
->u
.ldst
.rn
= rn
;
6333 dsc
->u
.ldst
.immed
= immed
;
6334 dsc
->u
.ldst
.writeback
= writeback
;
6336 /* To write PC we can do:
6338 Before this sequence of instructions:
6339 r0 is the PC value got from displaced_read_reg, so r0 = from + 8;
6340 r2 is the Rn value got from displaced_read_reg.
6342 Insn1: push {pc} Write address of STR instruction + offset on stack
6343 Insn2: pop {r4} Read it back from stack, r4 = addr(Insn1) + offset
6344 Insn3: sub r4, r4, pc r4 = addr(Insn1) + offset - pc
6345 = addr(Insn1) + offset - addr(Insn3) - 8
6347 Insn4: add r4, r4, #8 r4 = offset - 8
6348 Insn5: add r0, r0, r4 r0 = from + 8 + offset - 8
6350 Insn6: str r0, [r2, #imm] (or str r0, [r2, r3])
6352 Otherwise we don't know what value to write for PC, since the offset is
6353 architecture-dependent (sometimes PC+8, sometimes PC+12). More details
6354 of this can be found in Section "Saving from r15" in
6355 http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0204g/Cihbjifh.html */
6357 dsc
->cleanup
= load
? &cleanup_load
: &cleanup_store
;
6362 thumb2_copy_load_literal (struct gdbarch
*gdbarch
, uint16_t insn1
,
6363 uint16_t insn2
, struct regcache
*regs
,
6364 arm_displaced_step_copy_insn_closure
*dsc
, int size
)
6366 unsigned int u_bit
= bit (insn1
, 7);
6367 unsigned int rt
= bits (insn2
, 12, 15);
6368 int imm12
= bits (insn2
, 0, 11);
6371 displaced_debug_printf ("copying ldr pc (0x%x) R%d %c imm12 %.4x",
6372 (unsigned int) dsc
->insn_addr
, rt
, u_bit
? '+' : '-',
6378 /* Rewrite instruction LDR Rt imm12 into:
6380 Prepare: tmp[0] <- r0, tmp[1] <- r2, tmp[2] <- r3, r2 <- pc, r3 <- imm12
6384 Cleanup: rt <- r0, r0 <- tmp[0], r2 <- tmp[1], r3 <- tmp[2]. */
6387 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
6388 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
6389 dsc
->tmp
[3] = displaced_read_reg (regs
, dsc
, 3);
6391 pc_val
= displaced_read_reg (regs
, dsc
, ARM_PC_REGNUM
);
6393 pc_val
= pc_val
& 0xfffffffc;
6395 displaced_write_reg (regs
, dsc
, 2, pc_val
, CANNOT_WRITE_PC
);
6396 displaced_write_reg (regs
, dsc
, 3, imm12
, CANNOT_WRITE_PC
);
6400 dsc
->u
.ldst
.xfersize
= size
;
6401 dsc
->u
.ldst
.immed
= 0;
6402 dsc
->u
.ldst
.writeback
= 0;
6403 dsc
->u
.ldst
.restore_r4
= 0;
6405 /* LDR R0, R2, R3 */
6406 dsc
->modinsn
[0] = 0xf852;
6407 dsc
->modinsn
[1] = 0x3;
6410 dsc
->cleanup
= &cleanup_load
;
6416 thumb2_copy_load_reg_imm (struct gdbarch
*gdbarch
, uint16_t insn1
,
6417 uint16_t insn2
, struct regcache
*regs
,
6418 arm_displaced_step_copy_insn_closure
*dsc
,
6419 int writeback
, int immed
)
6421 unsigned int rt
= bits (insn2
, 12, 15);
6422 unsigned int rn
= bits (insn1
, 0, 3);
6423 unsigned int rm
= bits (insn2
, 0, 3); /* Only valid if !immed. */
6424 /* In LDR (register), there is also a register Rm, which is not allowed to
6425 be PC, so we don't have to check it. */
6427 if (rt
!= ARM_PC_REGNUM
&& rn
!= ARM_PC_REGNUM
)
6428 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "load",
6431 displaced_debug_printf ("copying ldr r%d [r%d] insn %.4x%.4x",
6432 rt
, rn
, insn1
, insn2
);
6434 install_load_store (gdbarch
, regs
, dsc
, 1, immed
, writeback
, 4,
6437 dsc
->u
.ldst
.restore_r4
= 0;
6440 /* ldr[b]<cond> rt, [rn, #imm], etc.
6442 ldr[b]<cond> r0, [r2, #imm]. */
6444 dsc
->modinsn
[0] = (insn1
& 0xfff0) | 0x2;
6445 dsc
->modinsn
[1] = insn2
& 0x0fff;
6448 /* ldr[b]<cond> rt, [rn, rm], etc.
6450 ldr[b]<cond> r0, [r2, r3]. */
6452 dsc
->modinsn
[0] = (insn1
& 0xfff0) | 0x2;
6453 dsc
->modinsn
[1] = (insn2
& 0x0ff0) | 0x3;
6463 arm_copy_ldr_str_ldrb_strb (struct gdbarch
*gdbarch
, uint32_t insn
,
6464 struct regcache
*regs
,
6465 arm_displaced_step_copy_insn_closure
*dsc
,
6466 int load
, int size
, int usermode
)
6468 int immed
= !bit (insn
, 25);
6469 int writeback
= (bit (insn
, 24) == 0 || bit (insn
, 21) != 0);
6470 unsigned int rt
= bits (insn
, 12, 15);
6471 unsigned int rn
= bits (insn
, 16, 19);
6472 unsigned int rm
= bits (insn
, 0, 3); /* Only valid if !immed. */
6474 if (!insn_references_pc (insn
, 0x000ff00ful
))
6475 return arm_copy_unmodified (gdbarch
, insn
, "load/store", dsc
);
6477 displaced_debug_printf ("copying %s%s r%d [r%d] insn %.8lx",
6478 load
? (size
== 1 ? "ldrb" : "ldr")
6479 : (size
== 1 ? "strb" : "str"),
6480 usermode
? "t" : "",
6482 (unsigned long) insn
);
6484 install_load_store (gdbarch
, regs
, dsc
, load
, immed
, writeback
, size
,
6485 usermode
, rt
, rm
, rn
);
6487 if (load
|| rt
!= ARM_PC_REGNUM
)
6489 dsc
->u
.ldst
.restore_r4
= 0;
6492 /* {ldr,str}[b]<cond> rt, [rn, #imm], etc.
6494 {ldr,str}[b]<cond> r0, [r2, #imm]. */
6495 dsc
->modinsn
[0] = (insn
& 0xfff00fff) | 0x20000;
6497 /* {ldr,str}[b]<cond> rt, [rn, rm], etc.
6499 {ldr,str}[b]<cond> r0, [r2, r3]. */
6500 dsc
->modinsn
[0] = (insn
& 0xfff00ff0) | 0x20003;
6504 /* We need to use r4 as scratch. Make sure it's restored afterwards. */
6505 dsc
->u
.ldst
.restore_r4
= 1;
6506 dsc
->modinsn
[0] = 0xe92d8000; /* push {pc} */
6507 dsc
->modinsn
[1] = 0xe8bd0010; /* pop {r4} */
6508 dsc
->modinsn
[2] = 0xe044400f; /* sub r4, r4, pc. */
6509 dsc
->modinsn
[3] = 0xe2844008; /* add r4, r4, #8. */
6510 dsc
->modinsn
[4] = 0xe0800004; /* add r0, r0, r4. */
6514 dsc
->modinsn
[5] = (insn
& 0xfff00fff) | 0x20000;
6516 dsc
->modinsn
[5] = (insn
& 0xfff00ff0) | 0x20003;
6521 dsc
->cleanup
= load
? &cleanup_load
: &cleanup_store
;
6526 /* Cleanup LDM instructions with fully-populated register list. This is an
6527 unfortunate corner case: it's impossible to implement correctly by modifying
6528 the instruction. The issue is as follows: we have an instruction,
6532 which we must rewrite to avoid loading PC. A possible solution would be to
6533 do the load in two halves, something like (with suitable cleanup
6537 ldm[id][ab] r8!, {r0-r7}
6539 ldm[id][ab] r8, {r7-r14}
6542 but at present there's no suitable place for <temp>, since the scratch space
6543 is overwritten before the cleanup routine is called. For now, we simply
6544 emulate the instruction. */
6547 cleanup_block_load_all (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6548 arm_displaced_step_copy_insn_closure
*dsc
)
6550 int inc
= dsc
->u
.block
.increment
;
6551 int bump_before
= dsc
->u
.block
.before
? (inc
? 4 : -4) : 0;
6552 int bump_after
= dsc
->u
.block
.before
? 0 : (inc
? 4 : -4);
6553 uint32_t regmask
= dsc
->u
.block
.regmask
;
6554 int regno
= inc
? 0 : 15;
6555 CORE_ADDR xfer_addr
= dsc
->u
.block
.xfer_addr
;
6556 int exception_return
= dsc
->u
.block
.load
&& dsc
->u
.block
.user
6557 && (regmask
& 0x8000) != 0;
6558 uint32_t status
= displaced_read_reg (regs
, dsc
, ARM_PS_REGNUM
);
6559 int do_transfer
= condition_true (dsc
->u
.block
.cond
, status
);
6560 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
6565 /* If the instruction is ldm rN, {...pc}^, I don't think there's anything
6566 sensible we can do here. Complain loudly. */
6567 if (exception_return
)
6568 error (_("Cannot single-step exception return"));
6570 /* We don't handle any stores here for now. */
6571 gdb_assert (dsc
->u
.block
.load
!= 0);
6573 displaced_debug_printf ("emulating block transfer: %s %s %s",
6574 dsc
->u
.block
.load
? "ldm" : "stm",
6575 dsc
->u
.block
.increment
? "inc" : "dec",
6576 dsc
->u
.block
.before
? "before" : "after");
6583 while (regno
<= ARM_PC_REGNUM
&& (regmask
& (1 << regno
)) == 0)
6586 while (regno
>= 0 && (regmask
& (1 << regno
)) == 0)
6589 xfer_addr
+= bump_before
;
6591 memword
= read_memory_unsigned_integer (xfer_addr
, 4, byte_order
);
6592 displaced_write_reg (regs
, dsc
, regno
, memword
, LOAD_WRITE_PC
);
6594 xfer_addr
+= bump_after
;
6596 regmask
&= ~(1 << regno
);
6599 if (dsc
->u
.block
.writeback
)
6600 displaced_write_reg (regs
, dsc
, dsc
->u
.block
.rn
, xfer_addr
,
6604 /* Clean up an STM which included the PC in the register list. */
6607 cleanup_block_store_pc (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6608 arm_displaced_step_copy_insn_closure
*dsc
)
6610 uint32_t status
= displaced_read_reg (regs
, dsc
, ARM_PS_REGNUM
);
6611 int store_executed
= condition_true (dsc
->u
.block
.cond
, status
);
6612 CORE_ADDR pc_stored_at
, transferred_regs
6613 = count_one_bits (dsc
->u
.block
.regmask
);
6614 CORE_ADDR stm_insn_addr
;
6617 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
6619 /* If condition code fails, there's nothing else to do. */
6620 if (!store_executed
)
6623 if (dsc
->u
.block
.increment
)
6625 pc_stored_at
= dsc
->u
.block
.xfer_addr
+ 4 * transferred_regs
;
6627 if (dsc
->u
.block
.before
)
6632 pc_stored_at
= dsc
->u
.block
.xfer_addr
;
6634 if (dsc
->u
.block
.before
)
6638 pc_val
= read_memory_unsigned_integer (pc_stored_at
, 4, byte_order
);
6639 stm_insn_addr
= dsc
->scratch_base
;
6640 offset
= pc_val
- stm_insn_addr
;
6642 displaced_debug_printf ("detected PC offset %.8lx for STM instruction",
6645 /* Rewrite the stored PC to the proper value for the non-displaced original
6647 write_memory_unsigned_integer (pc_stored_at
, 4, byte_order
,
6648 dsc
->insn_addr
+ offset
);
6651 /* Clean up an LDM which includes the PC in the register list. We clumped all
6652 the registers in the transferred list into a contiguous range r0...rX (to
6653 avoid loading PC directly and losing control of the debugged program), so we
6654 must undo that here. */
6657 cleanup_block_load_pc (struct gdbarch
*gdbarch
,
6658 struct regcache
*regs
,
6659 arm_displaced_step_copy_insn_closure
*dsc
)
6661 uint32_t status
= displaced_read_reg (regs
, dsc
, ARM_PS_REGNUM
);
6662 int load_executed
= condition_true (dsc
->u
.block
.cond
, status
);
6663 unsigned int mask
= dsc
->u
.block
.regmask
, write_reg
= ARM_PC_REGNUM
;
6664 unsigned int regs_loaded
= count_one_bits (mask
);
6665 unsigned int num_to_shuffle
= regs_loaded
, clobbered
;
6667 /* The method employed here will fail if the register list is fully populated
6668 (we need to avoid loading PC directly). */
6669 gdb_assert (num_to_shuffle
< 16);
6674 clobbered
= (1 << num_to_shuffle
) - 1;
6676 while (num_to_shuffle
> 0)
6678 if ((mask
& (1 << write_reg
)) != 0)
6680 unsigned int read_reg
= num_to_shuffle
- 1;
6682 if (read_reg
!= write_reg
)
6684 ULONGEST rval
= displaced_read_reg (regs
, dsc
, read_reg
);
6685 displaced_write_reg (regs
, dsc
, write_reg
, rval
, LOAD_WRITE_PC
);
6686 displaced_debug_printf ("LDM: move loaded register r%d to r%d",
6687 read_reg
, write_reg
);
6690 displaced_debug_printf ("LDM: register r%d already in the right "
6691 "place", write_reg
);
6693 clobbered
&= ~(1 << write_reg
);
6701 /* Restore any registers we scribbled over. */
6702 for (write_reg
= 0; clobbered
!= 0; write_reg
++)
6704 if ((clobbered
& (1 << write_reg
)) != 0)
6706 displaced_write_reg (regs
, dsc
, write_reg
, dsc
->tmp
[write_reg
],
6708 displaced_debug_printf ("LDM: restored clobbered register r%d",
6710 clobbered
&= ~(1 << write_reg
);
6714 /* Perform register writeback manually. */
6715 if (dsc
->u
.block
.writeback
)
6717 ULONGEST new_rn_val
= dsc
->u
.block
.xfer_addr
;
6719 if (dsc
->u
.block
.increment
)
6720 new_rn_val
+= regs_loaded
* 4;
6722 new_rn_val
-= regs_loaded
* 4;
6724 displaced_write_reg (regs
, dsc
, dsc
->u
.block
.rn
, new_rn_val
,
6729 /* Handle ldm/stm, apart from some tricky cases which are unlikely to occur
6730 in user-level code (in particular exception return, ldm rn, {...pc}^). */
6733 arm_copy_block_xfer (struct gdbarch
*gdbarch
, uint32_t insn
,
6734 struct regcache
*regs
,
6735 arm_displaced_step_copy_insn_closure
*dsc
)
6737 int load
= bit (insn
, 20);
6738 int user
= bit (insn
, 22);
6739 int increment
= bit (insn
, 23);
6740 int before
= bit (insn
, 24);
6741 int writeback
= bit (insn
, 21);
6742 int rn
= bits (insn
, 16, 19);
6744 /* Block transfers which don't mention PC can be run directly
6746 if (rn
!= ARM_PC_REGNUM
&& (insn
& 0x8000) == 0)
6747 return arm_copy_unmodified (gdbarch
, insn
, "ldm/stm", dsc
);
6749 if (rn
== ARM_PC_REGNUM
)
6751 warning (_("displaced: Unpredictable LDM or STM with "
6752 "base register r15"));
6753 return arm_copy_unmodified (gdbarch
, insn
, "unpredictable ldm/stm", dsc
);
6756 displaced_debug_printf ("copying block transfer insn %.8lx",
6757 (unsigned long) insn
);
6759 dsc
->u
.block
.xfer_addr
= displaced_read_reg (regs
, dsc
, rn
);
6760 dsc
->u
.block
.rn
= rn
;
6762 dsc
->u
.block
.load
= load
;
6763 dsc
->u
.block
.user
= user
;
6764 dsc
->u
.block
.increment
= increment
;
6765 dsc
->u
.block
.before
= before
;
6766 dsc
->u
.block
.writeback
= writeback
;
6767 dsc
->u
.block
.cond
= bits (insn
, 28, 31);
6769 dsc
->u
.block
.regmask
= insn
& 0xffff;
6773 if ((insn
& 0xffff) == 0xffff)
6775 /* LDM with a fully-populated register list. This case is
6776 particularly tricky. Implement for now by fully emulating the
6777 instruction (which might not behave perfectly in all cases, but
6778 these instructions should be rare enough for that not to matter
6780 dsc
->modinsn
[0] = ARM_NOP
;
6782 dsc
->cleanup
= &cleanup_block_load_all
;
6786 /* LDM of a list of registers which includes PC. Implement by
6787 rewriting the list of registers to be transferred into a
6788 contiguous chunk r0...rX before doing the transfer, then shuffling
6789 registers into the correct places in the cleanup routine. */
6790 unsigned int regmask
= insn
& 0xffff;
6791 unsigned int num_in_list
= count_one_bits (regmask
), new_regmask
;
6794 for (i
= 0; i
< num_in_list
; i
++)
6795 dsc
->tmp
[i
] = displaced_read_reg (regs
, dsc
, i
);
6797 /* Writeback makes things complicated. We need to avoid clobbering
6798 the base register with one of the registers in our modified
6799 register list, but just using a different register can't work in
6802 ldm r14!, {r0-r13,pc}
6804 which would need to be rewritten as:
6808 but that can't work, because there's no free register for N.
6810 Solve this by turning off the writeback bit, and emulating
6811 writeback manually in the cleanup routine. */
6816 new_regmask
= (1 << num_in_list
) - 1;
6818 displaced_debug_printf ("LDM r%d%s, {..., pc}: original reg list "
6819 "%.4x, modified list %.4x",
6820 rn
, writeback
? "!" : "",
6821 (int) insn
& 0xffff, new_regmask
);
6823 dsc
->modinsn
[0] = (insn
& ~0xffff) | (new_regmask
& 0xffff);
6825 dsc
->cleanup
= &cleanup_block_load_pc
;
6830 /* STM of a list of registers which includes PC. Run the instruction
6831 as-is, but out of line: this will store the wrong value for the PC,
6832 so we must manually fix up the memory in the cleanup routine.
6833 Doing things this way has the advantage that we can auto-detect
6834 the offset of the PC write (which is architecture-dependent) in
6835 the cleanup routine. */
6836 dsc
->modinsn
[0] = insn
;
6838 dsc
->cleanup
= &cleanup_block_store_pc
;
6845 thumb2_copy_block_xfer (struct gdbarch
*gdbarch
, uint16_t insn1
, uint16_t insn2
,
6846 struct regcache
*regs
,
6847 arm_displaced_step_copy_insn_closure
*dsc
)
6849 int rn
= bits (insn1
, 0, 3);
6850 int load
= bit (insn1
, 4);
6851 int writeback
= bit (insn1
, 5);
6853 /* Block transfers which don't mention PC can be run directly
6855 if (rn
!= ARM_PC_REGNUM
&& (insn2
& 0x8000) == 0)
6856 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "ldm/stm", dsc
);
6858 if (rn
== ARM_PC_REGNUM
)
6860 warning (_("displaced: Unpredictable LDM or STM with "
6861 "base register r15"));
6862 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
6863 "unpredictable ldm/stm", dsc
);
6866 displaced_debug_printf ("copying block transfer insn %.4x%.4x",
6869 /* Clear bit 13, since it should be always zero. */
6870 dsc
->u
.block
.regmask
= (insn2
& 0xdfff);
6871 dsc
->u
.block
.rn
= rn
;
6873 dsc
->u
.block
.load
= load
;
6874 dsc
->u
.block
.user
= 0;
6875 dsc
->u
.block
.increment
= bit (insn1
, 7);
6876 dsc
->u
.block
.before
= bit (insn1
, 8);
6877 dsc
->u
.block
.writeback
= writeback
;
6878 dsc
->u
.block
.cond
= INST_AL
;
6879 dsc
->u
.block
.xfer_addr
= displaced_read_reg (regs
, dsc
, rn
);
6883 if (dsc
->u
.block
.regmask
== 0xffff)
6885 /* This branch is impossible to happen. */
6890 unsigned int regmask
= dsc
->u
.block
.regmask
;
6891 unsigned int num_in_list
= count_one_bits (regmask
), new_regmask
;
6894 for (i
= 0; i
< num_in_list
; i
++)
6895 dsc
->tmp
[i
] = displaced_read_reg (regs
, dsc
, i
);
6900 new_regmask
= (1 << num_in_list
) - 1;
6902 displaced_debug_printf ("LDM r%d%s, {..., pc}: original reg list "
6903 "%.4x, modified list %.4x",
6904 rn
, writeback
? "!" : "",
6905 (int) dsc
->u
.block
.regmask
, new_regmask
);
6907 dsc
->modinsn
[0] = insn1
;
6908 dsc
->modinsn
[1] = (new_regmask
& 0xffff);
6911 dsc
->cleanup
= &cleanup_block_load_pc
;
6916 dsc
->modinsn
[0] = insn1
;
6917 dsc
->modinsn
[1] = insn2
;
6919 dsc
->cleanup
= &cleanup_block_store_pc
;
6924 /* Wrapper over read_memory_unsigned_integer for use in arm_get_next_pcs.
6925 This is used to avoid a dependency on BFD's bfd_endian enum. */
6928 arm_get_next_pcs_read_memory_unsigned_integer (CORE_ADDR memaddr
, int len
,
6931 return read_memory_unsigned_integer (memaddr
, len
,
6932 (enum bfd_endian
) byte_order
);
6935 /* Wrapper over gdbarch_addr_bits_remove for use in arm_get_next_pcs. */
6938 arm_get_next_pcs_addr_bits_remove (struct arm_get_next_pcs
*self
,
6941 return gdbarch_addr_bits_remove (self
->regcache
->arch (), val
);
6944 /* Wrapper over syscall_next_pc for use in get_next_pcs. */
6947 arm_get_next_pcs_syscall_next_pc (struct arm_get_next_pcs
*self
)
6952 /* Wrapper over arm_is_thumb for use in arm_get_next_pcs. */
6955 arm_get_next_pcs_is_thumb (struct arm_get_next_pcs
*self
)
6957 return arm_is_thumb (self
->regcache
);
6960 /* single_step() is called just before we want to resume the inferior,
6961 if we want to single-step it but there is no hardware or kernel
6962 single-step support. We find the target of the coming instructions
6963 and breakpoint them. */
6965 std::vector
<CORE_ADDR
>
6966 arm_software_single_step (struct regcache
*regcache
)
6968 struct gdbarch
*gdbarch
= regcache
->arch ();
6969 struct arm_get_next_pcs next_pcs_ctx
;
6971 arm_get_next_pcs_ctor (&next_pcs_ctx
,
6972 &arm_get_next_pcs_ops
,
6973 gdbarch_byte_order (gdbarch
),
6974 gdbarch_byte_order_for_code (gdbarch
),
6978 std::vector
<CORE_ADDR
> next_pcs
= arm_get_next_pcs (&next_pcs_ctx
);
6980 for (CORE_ADDR
&pc_ref
: next_pcs
)
6981 pc_ref
= gdbarch_addr_bits_remove (gdbarch
, pc_ref
);
6986 /* Cleanup/copy SVC (SWI) instructions. These two functions are overridden
6987 for Linux, where some SVC instructions must be treated specially. */
6990 cleanup_svc (struct gdbarch
*gdbarch
, struct regcache
*regs
,
6991 arm_displaced_step_copy_insn_closure
*dsc
)
6993 CORE_ADDR resume_addr
= dsc
->insn_addr
+ dsc
->insn_size
;
6995 displaced_debug_printf ("cleanup for svc, resume at %.8lx",
6996 (unsigned long) resume_addr
);
6998 displaced_write_reg (regs
, dsc
, ARM_PC_REGNUM
, resume_addr
, BRANCH_WRITE_PC
);
7002 /* Common copy routine for svc instruction. */
7005 install_svc (struct gdbarch
*gdbarch
, struct regcache
*regs
,
7006 arm_displaced_step_copy_insn_closure
*dsc
)
7008 /* Preparation: none.
7009 Insn: unmodified svc.
7010 Cleanup: pc <- insn_addr + insn_size. */
7012 /* Pretend we wrote to the PC, so cleanup doesn't set PC to the next
7014 dsc
->wrote_to_pc
= 1;
7016 /* Allow OS-specific code to override SVC handling. */
7017 if (dsc
->u
.svc
.copy_svc_os
)
7018 return dsc
->u
.svc
.copy_svc_os (gdbarch
, regs
, dsc
);
7021 dsc
->cleanup
= &cleanup_svc
;
7027 arm_copy_svc (struct gdbarch
*gdbarch
, uint32_t insn
,
7028 regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
)
7031 displaced_debug_printf ("copying svc insn %.8lx",
7032 (unsigned long) insn
);
7034 dsc
->modinsn
[0] = insn
;
7036 return install_svc (gdbarch
, regs
, dsc
);
7040 thumb_copy_svc (struct gdbarch
*gdbarch
, uint16_t insn
,
7041 regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
)
7044 displaced_debug_printf ("copying svc insn %.4x", insn
);
7046 dsc
->modinsn
[0] = insn
;
7048 return install_svc (gdbarch
, regs
, dsc
);
7051 /* Copy undefined instructions. */
7054 arm_copy_undef (struct gdbarch
*gdbarch
, uint32_t insn
,
7055 arm_displaced_step_copy_insn_closure
*dsc
)
7057 displaced_debug_printf ("copying undefined insn %.8lx",
7058 (unsigned long) insn
);
7060 dsc
->modinsn
[0] = insn
;
7066 thumb_32bit_copy_undef (struct gdbarch
*gdbarch
, uint16_t insn1
, uint16_t insn2
,
7067 arm_displaced_step_copy_insn_closure
*dsc
)
7070 displaced_debug_printf ("copying undefined insn %.4x %.4x",
7071 (unsigned short) insn1
, (unsigned short) insn2
);
7073 dsc
->modinsn
[0] = insn1
;
7074 dsc
->modinsn
[1] = insn2
;
7080 /* Copy unpredictable instructions. */
7083 arm_copy_unpred (struct gdbarch
*gdbarch
, uint32_t insn
,
7084 arm_displaced_step_copy_insn_closure
*dsc
)
7086 displaced_debug_printf ("copying unpredictable insn %.8lx",
7087 (unsigned long) insn
);
7089 dsc
->modinsn
[0] = insn
;
7094 /* The decode_* functions are instruction decoding helpers. They mostly follow
7095 the presentation in the ARM ARM. */
7098 arm_decode_misc_memhint_neon (struct gdbarch
*gdbarch
, uint32_t insn
,
7099 struct regcache
*regs
,
7100 arm_displaced_step_copy_insn_closure
*dsc
)
7102 unsigned int op1
= bits (insn
, 20, 26), op2
= bits (insn
, 4, 7);
7103 unsigned int rn
= bits (insn
, 16, 19);
7105 if (op1
== 0x10 && (op2
& 0x2) == 0x0 && (rn
& 0x1) == 0x0)
7106 return arm_copy_unmodified (gdbarch
, insn
, "cps", dsc
);
7107 else if (op1
== 0x10 && op2
== 0x0 && (rn
& 0x1) == 0x1)
7108 return arm_copy_unmodified (gdbarch
, insn
, "setend", dsc
);
7109 else if ((op1
& 0x60) == 0x20)
7110 return arm_copy_unmodified (gdbarch
, insn
, "neon dataproc", dsc
);
7111 else if ((op1
& 0x71) == 0x40)
7112 return arm_copy_unmodified (gdbarch
, insn
, "neon elt/struct load/store",
7114 else if ((op1
& 0x77) == 0x41)
7115 return arm_copy_unmodified (gdbarch
, insn
, "unallocated mem hint", dsc
);
7116 else if ((op1
& 0x77) == 0x45)
7117 return arm_copy_preload (gdbarch
, insn
, regs
, dsc
); /* pli. */
7118 else if ((op1
& 0x77) == 0x51)
7121 return arm_copy_preload (gdbarch
, insn
, regs
, dsc
); /* pld/pldw. */
7123 return arm_copy_unpred (gdbarch
, insn
, dsc
);
7125 else if ((op1
& 0x77) == 0x55)
7126 return arm_copy_preload (gdbarch
, insn
, regs
, dsc
); /* pld/pldw. */
7127 else if (op1
== 0x57)
7130 case 0x1: return arm_copy_unmodified (gdbarch
, insn
, "clrex", dsc
);
7131 case 0x4: return arm_copy_unmodified (gdbarch
, insn
, "dsb", dsc
);
7132 case 0x5: return arm_copy_unmodified (gdbarch
, insn
, "dmb", dsc
);
7133 case 0x6: return arm_copy_unmodified (gdbarch
, insn
, "isb", dsc
);
7134 default: return arm_copy_unpred (gdbarch
, insn
, dsc
);
7136 else if ((op1
& 0x63) == 0x43)
7137 return arm_copy_unpred (gdbarch
, insn
, dsc
);
7138 else if ((op2
& 0x1) == 0x0)
7139 switch (op1
& ~0x80)
7142 return arm_copy_unmodified (gdbarch
, insn
, "unallocated mem hint", dsc
);
7144 return arm_copy_preload_reg (gdbarch
, insn
, regs
, dsc
); /* pli reg. */
7145 case 0x71: case 0x75:
7147 return arm_copy_preload_reg (gdbarch
, insn
, regs
, dsc
);
7148 case 0x63: case 0x67: case 0x73: case 0x77:
7149 return arm_copy_unpred (gdbarch
, insn
, dsc
);
7151 return arm_copy_undef (gdbarch
, insn
, dsc
);
7154 return arm_copy_undef (gdbarch
, insn
, dsc
); /* Probably unreachable. */
7158 arm_decode_unconditional (struct gdbarch
*gdbarch
, uint32_t insn
,
7159 struct regcache
*regs
,
7160 arm_displaced_step_copy_insn_closure
*dsc
)
7162 if (bit (insn
, 27) == 0)
7163 return arm_decode_misc_memhint_neon (gdbarch
, insn
, regs
, dsc
);
7164 /* Switch on bits: 0bxxxxx321xxx0xxxxxxxxxxxxxxxxxxxx. */
7165 else switch (((insn
& 0x7000000) >> 23) | ((insn
& 0x100000) >> 20))
7168 return arm_copy_unmodified (gdbarch
, insn
, "srs", dsc
);
7171 return arm_copy_unmodified (gdbarch
, insn
, "rfe", dsc
);
7173 case 0x4: case 0x5: case 0x6: case 0x7:
7174 return arm_copy_b_bl_blx (gdbarch
, insn
, regs
, dsc
);
7177 switch ((insn
& 0xe00000) >> 21)
7179 case 0x1: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
7181 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
7184 return arm_copy_unmodified (gdbarch
, insn
, "mcrr/mcrr2", dsc
);
7187 return arm_copy_undef (gdbarch
, insn
, dsc
);
7192 int rn_f
= (bits (insn
, 16, 19) == 0xf);
7193 switch ((insn
& 0xe00000) >> 21)
7196 /* ldc/ldc2 imm (undefined for rn == pc). */
7197 return rn_f
? arm_copy_undef (gdbarch
, insn
, dsc
)
7198 : arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
7201 return arm_copy_unmodified (gdbarch
, insn
, "mrrc/mrrc2", dsc
);
7203 case 0x4: case 0x5: case 0x6: case 0x7:
7204 /* ldc/ldc2 lit (undefined for rn != pc). */
7205 return rn_f
? arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
)
7206 : arm_copy_undef (gdbarch
, insn
, dsc
);
7209 return arm_copy_undef (gdbarch
, insn
, dsc
);
7214 return arm_copy_unmodified (gdbarch
, insn
, "stc/stc2", dsc
);
7217 if (bits (insn
, 16, 19) == 0xf)
7219 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
7221 return arm_copy_undef (gdbarch
, insn
, dsc
);
7225 return arm_copy_unmodified (gdbarch
, insn
, "mcr/mcr2", dsc
);
7227 return arm_copy_unmodified (gdbarch
, insn
, "cdp/cdp2", dsc
);
7231 return arm_copy_unmodified (gdbarch
, insn
, "mrc/mrc2", dsc
);
7233 return arm_copy_unmodified (gdbarch
, insn
, "cdp/cdp2", dsc
);
7236 return arm_copy_undef (gdbarch
, insn
, dsc
);
7240 /* Decode miscellaneous instructions in dp/misc encoding space. */
7243 arm_decode_miscellaneous (struct gdbarch
*gdbarch
, uint32_t insn
,
7244 struct regcache
*regs
,
7245 arm_displaced_step_copy_insn_closure
*dsc
)
7247 unsigned int op2
= bits (insn
, 4, 6);
7248 unsigned int op
= bits (insn
, 21, 22);
7253 return arm_copy_unmodified (gdbarch
, insn
, "mrs/msr", dsc
);
7256 if (op
== 0x1) /* bx. */
7257 return arm_copy_bx_blx_reg (gdbarch
, insn
, regs
, dsc
);
7259 return arm_copy_unmodified (gdbarch
, insn
, "clz", dsc
);
7261 return arm_copy_undef (gdbarch
, insn
, dsc
);
7265 /* Not really supported. */
7266 return arm_copy_unmodified (gdbarch
, insn
, "bxj", dsc
);
7268 return arm_copy_undef (gdbarch
, insn
, dsc
);
7272 return arm_copy_bx_blx_reg (gdbarch
, insn
,
7273 regs
, dsc
); /* blx register. */
7275 return arm_copy_undef (gdbarch
, insn
, dsc
);
7278 return arm_copy_unmodified (gdbarch
, insn
, "saturating add/sub", dsc
);
7282 return arm_copy_unmodified (gdbarch
, insn
, "bkpt", dsc
);
7284 /* Not really supported. */
7285 return arm_copy_unmodified (gdbarch
, insn
, "smc", dsc
);
7289 return arm_copy_undef (gdbarch
, insn
, dsc
);
7294 arm_decode_dp_misc (struct gdbarch
*gdbarch
, uint32_t insn
,
7295 struct regcache
*regs
,
7296 arm_displaced_step_copy_insn_closure
*dsc
)
7299 switch (bits (insn
, 20, 24))
7302 return arm_copy_unmodified (gdbarch
, insn
, "movw", dsc
);
7305 return arm_copy_unmodified (gdbarch
, insn
, "movt", dsc
);
7307 case 0x12: case 0x16:
7308 return arm_copy_unmodified (gdbarch
, insn
, "msr imm", dsc
);
7311 return arm_copy_alu_imm (gdbarch
, insn
, regs
, dsc
);
7315 uint32_t op1
= bits (insn
, 20, 24), op2
= bits (insn
, 4, 7);
7317 if ((op1
& 0x19) != 0x10 && (op2
& 0x1) == 0x0)
7318 return arm_copy_alu_reg (gdbarch
, insn
, regs
, dsc
);
7319 else if ((op1
& 0x19) != 0x10 && (op2
& 0x9) == 0x1)
7320 return arm_copy_alu_shifted_reg (gdbarch
, insn
, regs
, dsc
);
7321 else if ((op1
& 0x19) == 0x10 && (op2
& 0x8) == 0x0)
7322 return arm_decode_miscellaneous (gdbarch
, insn
, regs
, dsc
);
7323 else if ((op1
& 0x19) == 0x10 && (op2
& 0x9) == 0x8)
7324 return arm_copy_unmodified (gdbarch
, insn
, "halfword mul/mla", dsc
);
7325 else if ((op1
& 0x10) == 0x00 && op2
== 0x9)
7326 return arm_copy_unmodified (gdbarch
, insn
, "mul/mla", dsc
);
7327 else if ((op1
& 0x10) == 0x10 && op2
== 0x9)
7328 return arm_copy_unmodified (gdbarch
, insn
, "synch", dsc
);
7329 else if (op2
== 0xb || (op2
& 0xd) == 0xd)
7330 /* 2nd arg means "unprivileged". */
7331 return arm_copy_extra_ld_st (gdbarch
, insn
, (op1
& 0x12) == 0x02, regs
,
7335 /* Should be unreachable. */
7340 arm_decode_ld_st_word_ubyte (struct gdbarch
*gdbarch
, uint32_t insn
,
7341 struct regcache
*regs
,
7342 arm_displaced_step_copy_insn_closure
*dsc
)
7344 int a
= bit (insn
, 25), b
= bit (insn
, 4);
7345 uint32_t op1
= bits (insn
, 20, 24);
7347 if ((!a
&& (op1
& 0x05) == 0x00 && (op1
& 0x17) != 0x02)
7348 || (a
&& (op1
& 0x05) == 0x00 && (op1
& 0x17) != 0x02 && !b
))
7349 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 0, 4, 0);
7350 else if ((!a
&& (op1
& 0x17) == 0x02)
7351 || (a
&& (op1
& 0x17) == 0x02 && !b
))
7352 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 0, 4, 1);
7353 else if ((!a
&& (op1
& 0x05) == 0x01 && (op1
& 0x17) != 0x03)
7354 || (a
&& (op1
& 0x05) == 0x01 && (op1
& 0x17) != 0x03 && !b
))
7355 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 1, 4, 0);
7356 else if ((!a
&& (op1
& 0x17) == 0x03)
7357 || (a
&& (op1
& 0x17) == 0x03 && !b
))
7358 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 1, 4, 1);
7359 else if ((!a
&& (op1
& 0x05) == 0x04 && (op1
& 0x17) != 0x06)
7360 || (a
&& (op1
& 0x05) == 0x04 && (op1
& 0x17) != 0x06 && !b
))
7361 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 0, 1, 0);
7362 else if ((!a
&& (op1
& 0x17) == 0x06)
7363 || (a
&& (op1
& 0x17) == 0x06 && !b
))
7364 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 0, 1, 1);
7365 else if ((!a
&& (op1
& 0x05) == 0x05 && (op1
& 0x17) != 0x07)
7366 || (a
&& (op1
& 0x05) == 0x05 && (op1
& 0x17) != 0x07 && !b
))
7367 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 1, 1, 0);
7368 else if ((!a
&& (op1
& 0x17) == 0x07)
7369 || (a
&& (op1
& 0x17) == 0x07 && !b
))
7370 return arm_copy_ldr_str_ldrb_strb (gdbarch
, insn
, regs
, dsc
, 1, 1, 1);
7372 /* Should be unreachable. */
7377 arm_decode_media (struct gdbarch
*gdbarch
, uint32_t insn
,
7378 arm_displaced_step_copy_insn_closure
*dsc
)
7380 switch (bits (insn
, 20, 24))
7382 case 0x00: case 0x01: case 0x02: case 0x03:
7383 return arm_copy_unmodified (gdbarch
, insn
, "parallel add/sub signed", dsc
);
7385 case 0x04: case 0x05: case 0x06: case 0x07:
7386 return arm_copy_unmodified (gdbarch
, insn
, "parallel add/sub unsigned", dsc
);
7388 case 0x08: case 0x09: case 0x0a: case 0x0b:
7389 case 0x0c: case 0x0d: case 0x0e: case 0x0f:
7390 return arm_copy_unmodified (gdbarch
, insn
,
7391 "decode/pack/unpack/saturate/reverse", dsc
);
7394 if (bits (insn
, 5, 7) == 0) /* op2. */
7396 if (bits (insn
, 12, 15) == 0xf)
7397 return arm_copy_unmodified (gdbarch
, insn
, "usad8", dsc
);
7399 return arm_copy_unmodified (gdbarch
, insn
, "usada8", dsc
);
7402 return arm_copy_undef (gdbarch
, insn
, dsc
);
7404 case 0x1a: case 0x1b:
7405 if (bits (insn
, 5, 6) == 0x2) /* op2[1:0]. */
7406 return arm_copy_unmodified (gdbarch
, insn
, "sbfx", dsc
);
7408 return arm_copy_undef (gdbarch
, insn
, dsc
);
7410 case 0x1c: case 0x1d:
7411 if (bits (insn
, 5, 6) == 0x0) /* op2[1:0]. */
7413 if (bits (insn
, 0, 3) == 0xf)
7414 return arm_copy_unmodified (gdbarch
, insn
, "bfc", dsc
);
7416 return arm_copy_unmodified (gdbarch
, insn
, "bfi", dsc
);
7419 return arm_copy_undef (gdbarch
, insn
, dsc
);
7421 case 0x1e: case 0x1f:
7422 if (bits (insn
, 5, 6) == 0x2) /* op2[1:0]. */
7423 return arm_copy_unmodified (gdbarch
, insn
, "ubfx", dsc
);
7425 return arm_copy_undef (gdbarch
, insn
, dsc
);
7428 /* Should be unreachable. */
7433 arm_decode_b_bl_ldmstm (struct gdbarch
*gdbarch
, uint32_t insn
,
7434 struct regcache
*regs
,
7435 arm_displaced_step_copy_insn_closure
*dsc
)
7438 return arm_copy_b_bl_blx (gdbarch
, insn
, regs
, dsc
);
7440 return arm_copy_block_xfer (gdbarch
, insn
, regs
, dsc
);
7444 arm_decode_ext_reg_ld_st (struct gdbarch
*gdbarch
, uint32_t insn
,
7445 struct regcache
*regs
,
7446 arm_displaced_step_copy_insn_closure
*dsc
)
7448 unsigned int opcode
= bits (insn
, 20, 24);
7452 case 0x04: case 0x05: /* VFP/Neon mrrc/mcrr. */
7453 return arm_copy_unmodified (gdbarch
, insn
, "vfp/neon mrrc/mcrr", dsc
);
7455 case 0x08: case 0x0a: case 0x0c: case 0x0e:
7456 case 0x12: case 0x16:
7457 return arm_copy_unmodified (gdbarch
, insn
, "vfp/neon vstm/vpush", dsc
);
7459 case 0x09: case 0x0b: case 0x0d: case 0x0f:
7460 case 0x13: case 0x17:
7461 return arm_copy_unmodified (gdbarch
, insn
, "vfp/neon vldm/vpop", dsc
);
7463 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
7464 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
7465 /* Note: no writeback for these instructions. Bit 25 will always be
7466 zero though (via caller), so the following works OK. */
7467 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
7470 /* Should be unreachable. */
7474 /* Decode shifted register instructions. */
7477 thumb2_decode_dp_shift_reg (struct gdbarch
*gdbarch
, uint16_t insn1
,
7478 uint16_t insn2
, struct regcache
*regs
,
7479 arm_displaced_step_copy_insn_closure
*dsc
)
7481 /* PC is only allowed to be used in instruction MOV. */
7483 unsigned int op
= bits (insn1
, 5, 8);
7484 unsigned int rn
= bits (insn1
, 0, 3);
7486 if (op
== 0x2 && rn
== 0xf) /* MOV */
7487 return thumb2_copy_alu_imm (gdbarch
, insn1
, insn2
, regs
, dsc
);
7489 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7490 "dp (shift reg)", dsc
);
7494 /* Decode extension register load/store. Exactly the same as
7495 arm_decode_ext_reg_ld_st. */
7498 thumb2_decode_ext_reg_ld_st (struct gdbarch
*gdbarch
, uint16_t insn1
,
7499 uint16_t insn2
, struct regcache
*regs
,
7500 arm_displaced_step_copy_insn_closure
*dsc
)
7502 unsigned int opcode
= bits (insn1
, 4, 8);
7506 case 0x04: case 0x05:
7507 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7508 "vfp/neon vmov", dsc
);
7510 case 0x08: case 0x0c: /* 01x00 */
7511 case 0x0a: case 0x0e: /* 01x10 */
7512 case 0x12: case 0x16: /* 10x10 */
7513 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7514 "vfp/neon vstm/vpush", dsc
);
7516 case 0x09: case 0x0d: /* 01x01 */
7517 case 0x0b: case 0x0f: /* 01x11 */
7518 case 0x13: case 0x17: /* 10x11 */
7519 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7520 "vfp/neon vldm/vpop", dsc
);
7522 case 0x10: case 0x14: case 0x18: case 0x1c: /* vstr. */
7523 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7525 case 0x11: case 0x15: case 0x19: case 0x1d: /* vldr. */
7526 return thumb2_copy_copro_load_store (gdbarch
, insn1
, insn2
, regs
, dsc
);
7529 /* Should be unreachable. */
7534 arm_decode_svc_copro (struct gdbarch
*gdbarch
, uint32_t insn
,
7535 regcache
*regs
, arm_displaced_step_copy_insn_closure
*dsc
)
7537 unsigned int op1
= bits (insn
, 20, 25);
7538 int op
= bit (insn
, 4);
7539 unsigned int coproc
= bits (insn
, 8, 11);
7541 if ((op1
& 0x20) == 0x00 && (op1
& 0x3a) != 0x00 && (coproc
& 0xe) == 0xa)
7542 return arm_decode_ext_reg_ld_st (gdbarch
, insn
, regs
, dsc
);
7543 else if ((op1
& 0x21) == 0x00 && (op1
& 0x3a) != 0x00
7544 && (coproc
& 0xe) != 0xa)
7546 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
7547 else if ((op1
& 0x21) == 0x01 && (op1
& 0x3a) != 0x00
7548 && (coproc
& 0xe) != 0xa)
7549 /* ldc/ldc2 imm/lit. */
7550 return arm_copy_copro_load_store (gdbarch
, insn
, regs
, dsc
);
7551 else if ((op1
& 0x3e) == 0x00)
7552 return arm_copy_undef (gdbarch
, insn
, dsc
);
7553 else if ((op1
& 0x3e) == 0x04 && (coproc
& 0xe) == 0xa)
7554 return arm_copy_unmodified (gdbarch
, insn
, "neon 64bit xfer", dsc
);
7555 else if (op1
== 0x04 && (coproc
& 0xe) != 0xa)
7556 return arm_copy_unmodified (gdbarch
, insn
, "mcrr/mcrr2", dsc
);
7557 else if (op1
== 0x05 && (coproc
& 0xe) != 0xa)
7558 return arm_copy_unmodified (gdbarch
, insn
, "mrrc/mrrc2", dsc
);
7559 else if ((op1
& 0x30) == 0x20 && !op
)
7561 if ((coproc
& 0xe) == 0xa)
7562 return arm_copy_unmodified (gdbarch
, insn
, "vfp dataproc", dsc
);
7564 return arm_copy_unmodified (gdbarch
, insn
, "cdp/cdp2", dsc
);
7566 else if ((op1
& 0x30) == 0x20 && op
)
7567 return arm_copy_unmodified (gdbarch
, insn
, "neon 8/16/32 bit xfer", dsc
);
7568 else if ((op1
& 0x31) == 0x20 && op
&& (coproc
& 0xe) != 0xa)
7569 return arm_copy_unmodified (gdbarch
, insn
, "mcr/mcr2", dsc
);
7570 else if ((op1
& 0x31) == 0x21 && op
&& (coproc
& 0xe) != 0xa)
7571 return arm_copy_unmodified (gdbarch
, insn
, "mrc/mrc2", dsc
);
7572 else if ((op1
& 0x30) == 0x30)
7573 return arm_copy_svc (gdbarch
, insn
, regs
, dsc
);
7575 return arm_copy_undef (gdbarch
, insn
, dsc
); /* Possibly unreachable. */
7579 thumb2_decode_svc_copro (struct gdbarch
*gdbarch
, uint16_t insn1
,
7580 uint16_t insn2
, struct regcache
*regs
,
7581 arm_displaced_step_copy_insn_closure
*dsc
)
7583 unsigned int coproc
= bits (insn2
, 8, 11);
7584 unsigned int bit_5_8
= bits (insn1
, 5, 8);
7585 unsigned int bit_9
= bit (insn1
, 9);
7586 unsigned int bit_4
= bit (insn1
, 4);
7591 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7592 "neon 64bit xfer/mrrc/mrrc2/mcrr/mcrr2",
7594 else if (bit_5_8
== 0) /* UNDEFINED. */
7595 return thumb_32bit_copy_undef (gdbarch
, insn1
, insn2
, dsc
);
7598 /*coproc is 101x. SIMD/VFP, ext registers load/store. */
7599 if ((coproc
& 0xe) == 0xa)
7600 return thumb2_decode_ext_reg_ld_st (gdbarch
, insn1
, insn2
, regs
,
7602 else /* coproc is not 101x. */
7604 if (bit_4
== 0) /* STC/STC2. */
7605 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
7607 else /* LDC/LDC2 {literal, immediate}. */
7608 return thumb2_copy_copro_load_store (gdbarch
, insn1
, insn2
,
7614 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
, "coproc", dsc
);
7620 install_pc_relative (struct gdbarch
*gdbarch
, struct regcache
*regs
,
7621 arm_displaced_step_copy_insn_closure
*dsc
, int rd
)
7627 Preparation: Rd <- PC
7633 int val
= displaced_read_reg (regs
, dsc
, ARM_PC_REGNUM
);
7634 displaced_write_reg (regs
, dsc
, rd
, val
, CANNOT_WRITE_PC
);
7638 thumb_copy_pc_relative_16bit (struct gdbarch
*gdbarch
, struct regcache
*regs
,
7639 arm_displaced_step_copy_insn_closure
*dsc
,
7640 int rd
, unsigned int imm
)
7643 /* Encoding T2: ADDS Rd, #imm */
7644 dsc
->modinsn
[0] = (0x3000 | (rd
<< 8) | imm
);
7646 install_pc_relative (gdbarch
, regs
, dsc
, rd
);
7652 thumb_decode_pc_relative_16bit (struct gdbarch
*gdbarch
, uint16_t insn
,
7653 struct regcache
*regs
,
7654 arm_displaced_step_copy_insn_closure
*dsc
)
7656 unsigned int rd
= bits (insn
, 8, 10);
7657 unsigned int imm8
= bits (insn
, 0, 7);
7659 displaced_debug_printf ("copying thumb adr r%d, #%d insn %.4x",
7662 return thumb_copy_pc_relative_16bit (gdbarch
, regs
, dsc
, rd
, imm8
);
7666 thumb_copy_pc_relative_32bit (struct gdbarch
*gdbarch
, uint16_t insn1
,
7667 uint16_t insn2
, struct regcache
*regs
,
7668 arm_displaced_step_copy_insn_closure
*dsc
)
7670 unsigned int rd
= bits (insn2
, 8, 11);
7671 /* Since immediate has the same encoding in ADR ADD and SUB, so we simply
7672 extract raw immediate encoding rather than computing immediate. When
7673 generating ADD or SUB instruction, we can simply perform OR operation to
7674 set immediate into ADD. */
7675 unsigned int imm_3_8
= insn2
& 0x70ff;
7676 unsigned int imm_i
= insn1
& 0x0400; /* Clear all bits except bit 10. */
7678 displaced_debug_printf ("copying thumb adr r%d, #%d:%d insn %.4x%.4x",
7679 rd
, imm_i
, imm_3_8
, insn1
, insn2
);
7681 if (bit (insn1
, 7)) /* Encoding T2 */
7683 /* Encoding T3: SUB Rd, Rd, #imm */
7684 dsc
->modinsn
[0] = (0xf1a0 | rd
| imm_i
);
7685 dsc
->modinsn
[1] = ((rd
<< 8) | imm_3_8
);
7687 else /* Encoding T3 */
7689 /* Encoding T3: ADD Rd, Rd, #imm */
7690 dsc
->modinsn
[0] = (0xf100 | rd
| imm_i
);
7691 dsc
->modinsn
[1] = ((rd
<< 8) | imm_3_8
);
7695 install_pc_relative (gdbarch
, regs
, dsc
, rd
);
7701 thumb_copy_16bit_ldr_literal (struct gdbarch
*gdbarch
, uint16_t insn1
,
7702 struct regcache
*regs
,
7703 arm_displaced_step_copy_insn_closure
*dsc
)
7705 unsigned int rt
= bits (insn1
, 8, 10);
7707 int imm8
= (bits (insn1
, 0, 7) << 2);
7713 Preparation: tmp0 <- R0, tmp2 <- R2, tmp3 <- R3, R2 <- PC, R3 <- #imm8;
7715 Insn: LDR R0, [R2, R3];
7716 Cleanup: R2 <- tmp2, R3 <- tmp3, Rd <- R0, R0 <- tmp0 */
7718 displaced_debug_printf ("copying thumb ldr r%d [pc #%d]", rt
, imm8
);
7720 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 0);
7721 dsc
->tmp
[2] = displaced_read_reg (regs
, dsc
, 2);
7722 dsc
->tmp
[3] = displaced_read_reg (regs
, dsc
, 3);
7723 pc
= displaced_read_reg (regs
, dsc
, ARM_PC_REGNUM
);
7724 /* The assembler calculates the required value of the offset from the
7725 Align(PC,4) value of this instruction to the label. */
7726 pc
= pc
& 0xfffffffc;
7728 displaced_write_reg (regs
, dsc
, 2, pc
, CANNOT_WRITE_PC
);
7729 displaced_write_reg (regs
, dsc
, 3, imm8
, CANNOT_WRITE_PC
);
7732 dsc
->u
.ldst
.xfersize
= 4;
7734 dsc
->u
.ldst
.immed
= 0;
7735 dsc
->u
.ldst
.writeback
= 0;
7736 dsc
->u
.ldst
.restore_r4
= 0;
7738 dsc
->modinsn
[0] = 0x58d0; /* ldr r0, [r2, r3]*/
7740 dsc
->cleanup
= &cleanup_load
;
7745 /* Copy Thumb cbnz/cbz instruction. */
7748 thumb_copy_cbnz_cbz (struct gdbarch
*gdbarch
, uint16_t insn1
,
7749 struct regcache
*regs
,
7750 arm_displaced_step_copy_insn_closure
*dsc
)
7752 int non_zero
= bit (insn1
, 11);
7753 unsigned int imm5
= (bit (insn1
, 9) << 6) | (bits (insn1
, 3, 7) << 1);
7754 CORE_ADDR from
= dsc
->insn_addr
;
7755 int rn
= bits (insn1
, 0, 2);
7756 int rn_val
= displaced_read_reg (regs
, dsc
, rn
);
7758 dsc
->u
.branch
.cond
= (rn_val
&& non_zero
) || (!rn_val
&& !non_zero
);
7759 /* CBNZ and CBZ do not affect the condition flags. If condition is true,
7760 set it INST_AL, so cleanup_branch will know branch is taken, otherwise,
7761 condition is false, let it be, cleanup_branch will do nothing. */
7762 if (dsc
->u
.branch
.cond
)
7764 dsc
->u
.branch
.cond
= INST_AL
;
7765 dsc
->u
.branch
.dest
= from
+ 4 + imm5
;
7768 dsc
->u
.branch
.dest
= from
+ 2;
7770 dsc
->u
.branch
.link
= 0;
7771 dsc
->u
.branch
.exchange
= 0;
7773 displaced_debug_printf ("copying %s [r%d = 0x%x] insn %.4x to %.8lx",
7774 non_zero
? "cbnz" : "cbz",
7775 rn
, rn_val
, insn1
, dsc
->u
.branch
.dest
);
7777 dsc
->modinsn
[0] = THUMB_NOP
;
7779 dsc
->cleanup
= &cleanup_branch
;
7783 /* Copy Table Branch Byte/Halfword */
7785 thumb2_copy_table_branch (struct gdbarch
*gdbarch
, uint16_t insn1
,
7786 uint16_t insn2
, struct regcache
*regs
,
7787 arm_displaced_step_copy_insn_closure
*dsc
)
7789 ULONGEST rn_val
, rm_val
;
7790 int is_tbh
= bit (insn2
, 4);
7791 CORE_ADDR halfwords
= 0;
7792 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
7794 rn_val
= displaced_read_reg (regs
, dsc
, bits (insn1
, 0, 3));
7795 rm_val
= displaced_read_reg (regs
, dsc
, bits (insn2
, 0, 3));
7801 target_read_memory (rn_val
+ 2 * rm_val
, buf
, 2);
7802 halfwords
= extract_unsigned_integer (buf
, 2, byte_order
);
7808 target_read_memory (rn_val
+ rm_val
, buf
, 1);
7809 halfwords
= extract_unsigned_integer (buf
, 1, byte_order
);
7812 displaced_debug_printf ("%s base 0x%x offset 0x%x offset 0x%x",
7813 is_tbh
? "tbh" : "tbb",
7814 (unsigned int) rn_val
, (unsigned int) rm_val
,
7815 (unsigned int) halfwords
);
7817 dsc
->u
.branch
.cond
= INST_AL
;
7818 dsc
->u
.branch
.link
= 0;
7819 dsc
->u
.branch
.exchange
= 0;
7820 dsc
->u
.branch
.dest
= dsc
->insn_addr
+ 4 + 2 * halfwords
;
7822 dsc
->cleanup
= &cleanup_branch
;
7828 cleanup_pop_pc_16bit_all (struct gdbarch
*gdbarch
, struct regcache
*regs
,
7829 arm_displaced_step_copy_insn_closure
*dsc
)
7832 int val
= displaced_read_reg (regs
, dsc
, 7);
7833 displaced_write_reg (regs
, dsc
, ARM_PC_REGNUM
, val
, BX_WRITE_PC
);
7836 val
= displaced_read_reg (regs
, dsc
, 8);
7837 displaced_write_reg (regs
, dsc
, 7, val
, CANNOT_WRITE_PC
);
7840 displaced_write_reg (regs
, dsc
, 8, dsc
->tmp
[0], CANNOT_WRITE_PC
);
7845 thumb_copy_pop_pc_16bit (struct gdbarch
*gdbarch
, uint16_t insn1
,
7846 struct regcache
*regs
,
7847 arm_displaced_step_copy_insn_closure
*dsc
)
7849 dsc
->u
.block
.regmask
= insn1
& 0x00ff;
7851 /* Rewrite instruction: POP {rX, rY, ...,rZ, PC}
7854 (1) register list is full, that is, r0-r7 are used.
7855 Prepare: tmp[0] <- r8
7857 POP {r0, r1, ...., r6, r7}; remove PC from reglist
7858 MOV r8, r7; Move value of r7 to r8;
7859 POP {r7}; Store PC value into r7.
7861 Cleanup: PC <- r7, r7 <- r8, r8 <-tmp[0]
7863 (2) register list is not full, supposing there are N registers in
7864 register list (except PC, 0 <= N <= 7).
7865 Prepare: for each i, 0 - N, tmp[i] <- ri.
7867 POP {r0, r1, ...., rN};
7869 Cleanup: Set registers in original reglist from r0 - rN. Restore r0 - rN
7870 from tmp[] properly.
7872 displaced_debug_printf ("copying thumb pop {%.8x, pc} insn %.4x",
7873 dsc
->u
.block
.regmask
, insn1
);
7875 if (dsc
->u
.block
.regmask
== 0xff)
7877 dsc
->tmp
[0] = displaced_read_reg (regs
, dsc
, 8);
7879 dsc
->modinsn
[0] = (insn1
& 0xfeff); /* POP {r0,r1,...,r6, r7} */
7880 dsc
->modinsn
[1] = 0x46b8; /* MOV r8, r7 */
7881 dsc
->modinsn
[2] = 0xbc80; /* POP {r7} */
7884 dsc
->cleanup
= &cleanup_pop_pc_16bit_all
;
7888 unsigned int num_in_list
= count_one_bits (dsc
->u
.block
.regmask
);
7890 unsigned int new_regmask
;
7892 for (i
= 0; i
< num_in_list
+ 1; i
++)
7893 dsc
->tmp
[i
] = displaced_read_reg (regs
, dsc
, i
);
7895 new_regmask
= (1 << (num_in_list
+ 1)) - 1;
7897 displaced_debug_printf ("POP {..., pc}: original reg list %.4x, "
7898 "modified list %.4x",
7899 (int) dsc
->u
.block
.regmask
, new_regmask
);
7901 dsc
->u
.block
.regmask
|= 0x8000;
7902 dsc
->u
.block
.writeback
= 0;
7903 dsc
->u
.block
.cond
= INST_AL
;
7905 dsc
->modinsn
[0] = (insn1
& ~0x1ff) | (new_regmask
& 0xff);
7907 dsc
->cleanup
= &cleanup_block_load_pc
;
7914 thumb_process_displaced_16bit_insn (struct gdbarch
*gdbarch
, uint16_t insn1
,
7915 struct regcache
*regs
,
7916 arm_displaced_step_copy_insn_closure
*dsc
)
7918 unsigned short op_bit_12_15
= bits (insn1
, 12, 15);
7919 unsigned short op_bit_10_11
= bits (insn1
, 10, 11);
7922 /* 16-bit thumb instructions. */
7923 switch (op_bit_12_15
)
7925 /* Shift (imme), add, subtract, move and compare. */
7926 case 0: case 1: case 2: case 3:
7927 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
,
7928 "shift/add/sub/mov/cmp",
7932 switch (op_bit_10_11
)
7934 case 0: /* Data-processing */
7935 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
,
7939 case 1: /* Special data instructions and branch and exchange. */
7941 unsigned short op
= bits (insn1
, 7, 9);
7942 if (op
== 6 || op
== 7) /* BX or BLX */
7943 err
= thumb_copy_bx_blx_reg (gdbarch
, insn1
, regs
, dsc
);
7944 else if (bits (insn1
, 6, 7) != 0) /* ADD/MOV/CMP high registers. */
7945 err
= thumb_copy_alu_reg (gdbarch
, insn1
, regs
, dsc
);
7947 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "special data",
7951 default: /* LDR (literal) */
7952 err
= thumb_copy_16bit_ldr_literal (gdbarch
, insn1
, regs
, dsc
);
7955 case 5: case 6: case 7: case 8: case 9: /* Load/Store single data item */
7956 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "ldr/str", dsc
);
7959 if (op_bit_10_11
< 2) /* Generate PC-relative address */
7960 err
= thumb_decode_pc_relative_16bit (gdbarch
, insn1
, regs
, dsc
);
7961 else /* Generate SP-relative address */
7962 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "sp-relative", dsc
);
7964 case 11: /* Misc 16-bit instructions */
7966 switch (bits (insn1
, 8, 11))
7968 case 1: case 3: case 9: case 11: /* CBNZ, CBZ */
7969 err
= thumb_copy_cbnz_cbz (gdbarch
, insn1
, regs
, dsc
);
7971 case 12: case 13: /* POP */
7972 if (bit (insn1
, 8)) /* PC is in register list. */
7973 err
= thumb_copy_pop_pc_16bit (gdbarch
, insn1
, regs
, dsc
);
7975 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "pop", dsc
);
7977 case 15: /* If-Then, and hints */
7978 if (bits (insn1
, 0, 3))
7979 /* If-Then makes up to four following instructions conditional.
7980 IT instruction itself is not conditional, so handle it as a
7981 common unmodified instruction. */
7982 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "If-Then",
7985 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "hints", dsc
);
7988 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "misc", dsc
);
7993 if (op_bit_10_11
< 2) /* Store multiple registers */
7994 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "stm", dsc
);
7995 else /* Load multiple registers */
7996 err
= thumb_copy_unmodified_16bit (gdbarch
, insn1
, "ldm", dsc
);
7998 case 13: /* Conditional branch and supervisor call */
7999 if (bits (insn1
, 9, 11) != 7) /* conditional branch */
8000 err
= thumb_copy_b (gdbarch
, insn1
, dsc
);
8002 err
= thumb_copy_svc (gdbarch
, insn1
, regs
, dsc
);
8004 case 14: /* Unconditional branch */
8005 err
= thumb_copy_b (gdbarch
, insn1
, dsc
);
8012 internal_error (__FILE__
, __LINE__
,
8013 _("thumb_process_displaced_16bit_insn: Instruction decode error"));
8017 decode_thumb_32bit_ld_mem_hints (struct gdbarch
*gdbarch
,
8018 uint16_t insn1
, uint16_t insn2
,
8019 struct regcache
*regs
,
8020 arm_displaced_step_copy_insn_closure
*dsc
)
8022 int rt
= bits (insn2
, 12, 15);
8023 int rn
= bits (insn1
, 0, 3);
8024 int op1
= bits (insn1
, 7, 8);
8026 switch (bits (insn1
, 5, 6))
8028 case 0: /* Load byte and memory hints */
8029 if (rt
== 0xf) /* PLD/PLI */
8032 /* PLD literal or Encoding T3 of PLI(immediate, literal). */
8033 return thumb2_copy_preload (gdbarch
, insn1
, insn2
, regs
, dsc
);
8035 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8040 if (rn
== 0xf) /* LDRB/LDRSB (literal) */
8041 return thumb2_copy_load_literal (gdbarch
, insn1
, insn2
, regs
, dsc
,
8044 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8045 "ldrb{reg, immediate}/ldrbt",
8050 case 1: /* Load halfword and memory hints. */
8051 if (rt
== 0xf) /* PLD{W} and Unalloc memory hint. */
8052 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8053 "pld/unalloc memhint", dsc
);
8057 return thumb2_copy_load_literal (gdbarch
, insn1
, insn2
, regs
, dsc
,
8060 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8064 case 2: /* Load word */
8066 int insn2_bit_8_11
= bits (insn2
, 8, 11);
8069 return thumb2_copy_load_literal (gdbarch
, insn1
, insn2
, regs
, dsc
, 4);
8070 else if (op1
== 0x1) /* Encoding T3 */
8071 return thumb2_copy_load_reg_imm (gdbarch
, insn1
, insn2
, regs
, dsc
,
8073 else /* op1 == 0x0 */
8075 if (insn2_bit_8_11
== 0xc || (insn2_bit_8_11
& 0x9) == 0x9)
8076 /* LDR (immediate) */
8077 return thumb2_copy_load_reg_imm (gdbarch
, insn1
, insn2
, regs
,
8078 dsc
, bit (insn2
, 8), 1);
8079 else if (insn2_bit_8_11
== 0xe) /* LDRT */
8080 return thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8083 /* LDR (register) */
8084 return thumb2_copy_load_reg_imm (gdbarch
, insn1
, insn2
, regs
,
8090 return thumb_32bit_copy_undef (gdbarch
, insn1
, insn2
, dsc
);
8097 thumb_process_displaced_32bit_insn (struct gdbarch
*gdbarch
, uint16_t insn1
,
8098 uint16_t insn2
, struct regcache
*regs
,
8099 arm_displaced_step_copy_insn_closure
*dsc
)
8102 unsigned short op
= bit (insn2
, 15);
8103 unsigned int op1
= bits (insn1
, 11, 12);
8109 switch (bits (insn1
, 9, 10))
8114 /* Load/store {dual, exclusive}, table branch. */
8115 if (bits (insn1
, 7, 8) == 1 && bits (insn1
, 4, 5) == 1
8116 && bits (insn2
, 5, 7) == 0)
8117 err
= thumb2_copy_table_branch (gdbarch
, insn1
, insn2
, regs
,
8120 /* PC is not allowed to use in load/store {dual, exclusive}
8122 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8123 "load/store dual/ex", dsc
);
8125 else /* load/store multiple */
8127 switch (bits (insn1
, 7, 8))
8129 case 0: case 3: /* SRS, RFE */
8130 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8133 case 1: case 2: /* LDM/STM/PUSH/POP */
8134 err
= thumb2_copy_block_xfer (gdbarch
, insn1
, insn2
, regs
, dsc
);
8141 /* Data-processing (shift register). */
8142 err
= thumb2_decode_dp_shift_reg (gdbarch
, insn1
, insn2
, regs
,
8145 default: /* Coprocessor instructions. */
8146 err
= thumb2_decode_svc_copro (gdbarch
, insn1
, insn2
, regs
, dsc
);
8151 case 2: /* op1 = 2 */
8152 if (op
) /* Branch and misc control. */
8154 if (bit (insn2
, 14) /* BLX/BL */
8155 || bit (insn2
, 12) /* Unconditional branch */
8156 || (bits (insn1
, 7, 9) != 0x7)) /* Conditional branch */
8157 err
= thumb2_copy_b_bl_blx (gdbarch
, insn1
, insn2
, regs
, dsc
);
8159 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8164 if (bit (insn1
, 9)) /* Data processing (plain binary imm). */
8166 int dp_op
= bits (insn1
, 4, 8);
8167 int rn
= bits (insn1
, 0, 3);
8168 if ((dp_op
== 0 || dp_op
== 0xa) && rn
== 0xf)
8169 err
= thumb_copy_pc_relative_32bit (gdbarch
, insn1
, insn2
,
8172 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8175 else /* Data processing (modified immediate) */
8176 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8180 case 3: /* op1 = 3 */
8181 switch (bits (insn1
, 9, 10))
8185 err
= decode_thumb_32bit_ld_mem_hints (gdbarch
, insn1
, insn2
,
8187 else /* NEON Load/Store and Store single data item */
8188 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8189 "neon elt/struct load/store",
8192 case 1: /* op1 = 3, bits (9, 10) == 1 */
8193 switch (bits (insn1
, 7, 8))
8195 case 0: case 1: /* Data processing (register) */
8196 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8199 case 2: /* Multiply and absolute difference */
8200 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8201 "mul/mua/diff", dsc
);
8203 case 3: /* Long multiply and divide */
8204 err
= thumb_copy_unmodified_32bit (gdbarch
, insn1
, insn2
,
8209 default: /* Coprocessor instructions */
8210 err
= thumb2_decode_svc_copro (gdbarch
, insn1
, insn2
, regs
, dsc
);
8219 internal_error (__FILE__
, __LINE__
,
8220 _("thumb_process_displaced_32bit_insn: Instruction decode error"));
8225 thumb_process_displaced_insn (struct gdbarch
*gdbarch
, CORE_ADDR from
,
8226 struct regcache
*regs
,
8227 arm_displaced_step_copy_insn_closure
*dsc
)
8229 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
8231 = read_memory_unsigned_integer (from
, 2, byte_order_for_code
);
8233 displaced_debug_printf ("process thumb insn %.4x at %.8lx",
8234 insn1
, (unsigned long) from
);
8237 dsc
->insn_size
= thumb_insn_size (insn1
);
8238 if (thumb_insn_size (insn1
) == 4)
8241 = read_memory_unsigned_integer (from
+ 2, 2, byte_order_for_code
);
8242 thumb_process_displaced_32bit_insn (gdbarch
, insn1
, insn2
, regs
, dsc
);
8245 thumb_process_displaced_16bit_insn (gdbarch
, insn1
, regs
, dsc
);
8249 arm_process_displaced_insn (struct gdbarch
*gdbarch
, CORE_ADDR from
,
8250 CORE_ADDR to
, struct regcache
*regs
,
8251 arm_displaced_step_copy_insn_closure
*dsc
)
8254 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
8257 /* Most displaced instructions use a 1-instruction scratch space, so set this
8258 here and override below if/when necessary. */
8260 dsc
->insn_addr
= from
;
8261 dsc
->scratch_base
= to
;
8262 dsc
->cleanup
= NULL
;
8263 dsc
->wrote_to_pc
= 0;
8265 if (!displaced_in_arm_mode (regs
))
8266 return thumb_process_displaced_insn (gdbarch
, from
, regs
, dsc
);
8270 insn
= read_memory_unsigned_integer (from
, 4, byte_order_for_code
);
8271 displaced_debug_printf ("stepping insn %.8lx at %.8lx",
8272 (unsigned long) insn
, (unsigned long) from
);
8274 if ((insn
& 0xf0000000) == 0xf0000000)
8275 err
= arm_decode_unconditional (gdbarch
, insn
, regs
, dsc
);
8276 else switch (((insn
& 0x10) >> 4) | ((insn
& 0xe000000) >> 24))
8278 case 0x0: case 0x1: case 0x2: case 0x3:
8279 err
= arm_decode_dp_misc (gdbarch
, insn
, regs
, dsc
);
8282 case 0x4: case 0x5: case 0x6:
8283 err
= arm_decode_ld_st_word_ubyte (gdbarch
, insn
, regs
, dsc
);
8287 err
= arm_decode_media (gdbarch
, insn
, dsc
);
8290 case 0x8: case 0x9: case 0xa: case 0xb:
8291 err
= arm_decode_b_bl_ldmstm (gdbarch
, insn
, regs
, dsc
);
8294 case 0xc: case 0xd: case 0xe: case 0xf:
8295 err
= arm_decode_svc_copro (gdbarch
, insn
, regs
, dsc
);
8300 internal_error (__FILE__
, __LINE__
,
8301 _("arm_process_displaced_insn: Instruction decode error"));
8304 /* Actually set up the scratch space for a displaced instruction. */
8307 arm_displaced_init_closure (struct gdbarch
*gdbarch
, CORE_ADDR from
,
8309 arm_displaced_step_copy_insn_closure
*dsc
)
8311 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
8312 unsigned int i
, len
, offset
;
8313 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
8314 int size
= dsc
->is_thumb
? 2 : 4;
8315 const gdb_byte
*bkp_insn
;
8318 /* Poke modified instruction(s). */
8319 for (i
= 0; i
< dsc
->numinsns
; i
++)
8322 displaced_debug_printf ("writing insn %.8lx at %.8lx",
8323 dsc
->modinsn
[i
], (unsigned long) to
+ offset
);
8325 displaced_debug_printf ("writing insn %.4x at %.8lx",
8326 (unsigned short) dsc
->modinsn
[i
],
8327 (unsigned long) to
+ offset
);
8329 write_memory_unsigned_integer (to
+ offset
, size
,
8330 byte_order_for_code
,
8335 /* Choose the correct breakpoint instruction. */
8338 bkp_insn
= tdep
->thumb_breakpoint
;
8339 len
= tdep
->thumb_breakpoint_size
;
8343 bkp_insn
= tdep
->arm_breakpoint
;
8344 len
= tdep
->arm_breakpoint_size
;
8347 /* Put breakpoint afterwards. */
8348 write_memory (to
+ offset
, bkp_insn
, len
);
8350 displaced_debug_printf ("copy %s->%s", paddress (gdbarch
, from
),
8351 paddress (gdbarch
, to
));
8354 /* Entry point for cleaning things up after a displaced instruction has been
8358 arm_displaced_step_fixup (struct gdbarch
*gdbarch
,
8359 struct displaced_step_copy_insn_closure
*dsc_
,
8360 CORE_ADDR from
, CORE_ADDR to
,
8361 struct regcache
*regs
)
8363 arm_displaced_step_copy_insn_closure
*dsc
8364 = (arm_displaced_step_copy_insn_closure
*) dsc_
;
8367 dsc
->cleanup (gdbarch
, regs
, dsc
);
8369 if (!dsc
->wrote_to_pc
)
8370 regcache_cooked_write_unsigned (regs
, ARM_PC_REGNUM
,
8371 dsc
->insn_addr
+ dsc
->insn_size
);
8375 #include "bfd-in2.h"
8376 #include "libcoff.h"
8379 gdb_print_insn_arm (bfd_vma memaddr
, disassemble_info
*info
)
8381 gdb_disassemble_info
*di
8382 = static_cast<gdb_disassemble_info
*> (info
->application_data
);
8383 struct gdbarch
*gdbarch
= di
->arch ();
8385 if (arm_pc_is_thumb (gdbarch
, memaddr
))
8387 static asymbol
*asym
;
8388 static combined_entry_type ce
;
8389 static struct coff_symbol_struct csym
;
8390 static struct bfd fake_bfd
;
8391 static bfd_target fake_target
;
8393 if (csym
.native
== NULL
)
8395 /* Create a fake symbol vector containing a Thumb symbol.
8396 This is solely so that the code in print_insn_little_arm()
8397 and print_insn_big_arm() in opcodes/arm-dis.c will detect
8398 the presence of a Thumb symbol and switch to decoding
8399 Thumb instructions. */
8401 fake_target
.flavour
= bfd_target_coff_flavour
;
8402 fake_bfd
.xvec
= &fake_target
;
8403 ce
.u
.syment
.n_sclass
= C_THUMBEXTFUNC
;
8405 csym
.symbol
.the_bfd
= &fake_bfd
;
8406 csym
.symbol
.name
= "fake";
8407 asym
= (asymbol
*) & csym
;
8410 memaddr
= UNMAKE_THUMB_ADDR (memaddr
);
8411 info
->symbols
= &asym
;
8414 info
->symbols
= NULL
;
8416 /* GDB is able to get bfd_mach from the exe_bfd, info->mach is
8417 accurate, so mark USER_SPECIFIED_MACHINE_TYPE bit. Otherwise,
8418 opcodes/arm-dis.c:print_insn reset info->mach, and it will trigger
8419 the assert on the mismatch of info->mach and
8420 bfd_get_mach (current_program_space->exec_bfd ()) in
8421 default_print_insn. */
8422 if (current_program_space
->exec_bfd () != NULL
8423 && (current_program_space
->exec_bfd ()->arch_info
8424 == gdbarch_bfd_arch_info (gdbarch
)))
8425 info
->flags
|= USER_SPECIFIED_MACHINE_TYPE
;
8427 return default_print_insn (memaddr
, info
);
8430 /* The following define instruction sequences that will cause ARM
8431 cpu's to take an undefined instruction trap. These are used to
8432 signal a breakpoint to GDB.
8434 The newer ARMv4T cpu's are capable of operating in ARM or Thumb
8435 modes. A different instruction is required for each mode. The ARM
8436 cpu's can also be big or little endian. Thus four different
8437 instructions are needed to support all cases.
8439 Note: ARMv4 defines several new instructions that will take the
8440 undefined instruction trap. ARM7TDMI is nominally ARMv4T, but does
8441 not in fact add the new instructions. The new undefined
8442 instructions in ARMv4 are all instructions that had no defined
8443 behaviour in earlier chips. There is no guarantee that they will
8444 raise an exception, but may be treated as NOP's. In practice, it
8445 may only safe to rely on instructions matching:
8447 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
8448 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
8449 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
8451 Even this may only true if the condition predicate is true. The
8452 following use a condition predicate of ALWAYS so it is always TRUE.
8454 There are other ways of forcing a breakpoint. GNU/Linux, RISC iX,
8455 and NetBSD all use a software interrupt rather than an undefined
8456 instruction to force a trap. This can be handled by by the
8457 abi-specific code during establishment of the gdbarch vector. */
8459 #define ARM_LE_BREAKPOINT {0xFE,0xDE,0xFF,0xE7}
8460 #define ARM_BE_BREAKPOINT {0xE7,0xFF,0xDE,0xFE}
8461 #define THUMB_LE_BREAKPOINT {0xbe,0xbe}
8462 #define THUMB_BE_BREAKPOINT {0xbe,0xbe}
8464 static const gdb_byte arm_default_arm_le_breakpoint
[] = ARM_LE_BREAKPOINT
;
8465 static const gdb_byte arm_default_arm_be_breakpoint
[] = ARM_BE_BREAKPOINT
;
8466 static const gdb_byte arm_default_thumb_le_breakpoint
[] = THUMB_LE_BREAKPOINT
;
8467 static const gdb_byte arm_default_thumb_be_breakpoint
[] = THUMB_BE_BREAKPOINT
;
8469 /* Implement the breakpoint_kind_from_pc gdbarch method. */
8472 arm_breakpoint_kind_from_pc (struct gdbarch
*gdbarch
, CORE_ADDR
*pcptr
)
8474 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
8475 enum bfd_endian byte_order_for_code
= gdbarch_byte_order_for_code (gdbarch
);
8477 if (arm_pc_is_thumb (gdbarch
, *pcptr
))
8479 *pcptr
= UNMAKE_THUMB_ADDR (*pcptr
);
8481 /* If we have a separate 32-bit breakpoint instruction for Thumb-2,
8482 check whether we are replacing a 32-bit instruction. */
8483 if (tdep
->thumb2_breakpoint
!= NULL
)
8487 if (target_read_memory (*pcptr
, buf
, 2) == 0)
8489 unsigned short inst1
;
8491 inst1
= extract_unsigned_integer (buf
, 2, byte_order_for_code
);
8492 if (thumb_insn_size (inst1
) == 4)
8493 return ARM_BP_KIND_THUMB2
;
8497 return ARM_BP_KIND_THUMB
;
8500 return ARM_BP_KIND_ARM
;
8504 /* Implement the sw_breakpoint_from_kind gdbarch method. */
8506 static const gdb_byte
*
8507 arm_sw_breakpoint_from_kind (struct gdbarch
*gdbarch
, int kind
, int *size
)
8509 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
8513 case ARM_BP_KIND_ARM
:
8514 *size
= tdep
->arm_breakpoint_size
;
8515 return tdep
->arm_breakpoint
;
8516 case ARM_BP_KIND_THUMB
:
8517 *size
= tdep
->thumb_breakpoint_size
;
8518 return tdep
->thumb_breakpoint
;
8519 case ARM_BP_KIND_THUMB2
:
8520 *size
= tdep
->thumb2_breakpoint_size
;
8521 return tdep
->thumb2_breakpoint
;
8523 gdb_assert_not_reached ("unexpected arm breakpoint kind");
8527 /* Implement the breakpoint_kind_from_current_state gdbarch method. */
8530 arm_breakpoint_kind_from_current_state (struct gdbarch
*gdbarch
,
8531 struct regcache
*regcache
,
8536 /* Check the memory pointed by PC is readable. */
8537 if (target_read_memory (regcache_read_pc (regcache
), buf
, 4) == 0)
8539 struct arm_get_next_pcs next_pcs_ctx
;
8541 arm_get_next_pcs_ctor (&next_pcs_ctx
,
8542 &arm_get_next_pcs_ops
,
8543 gdbarch_byte_order (gdbarch
),
8544 gdbarch_byte_order_for_code (gdbarch
),
8548 std::vector
<CORE_ADDR
> next_pcs
= arm_get_next_pcs (&next_pcs_ctx
);
8550 /* If MEMADDR is the next instruction of current pc, do the
8551 software single step computation, and get the thumb mode by
8552 the destination address. */
8553 for (CORE_ADDR pc
: next_pcs
)
8555 if (UNMAKE_THUMB_ADDR (pc
) == *pcptr
)
8557 if (IS_THUMB_ADDR (pc
))
8559 *pcptr
= MAKE_THUMB_ADDR (*pcptr
);
8560 return arm_breakpoint_kind_from_pc (gdbarch
, pcptr
);
8563 return ARM_BP_KIND_ARM
;
8568 return arm_breakpoint_kind_from_pc (gdbarch
, pcptr
);
8571 /* Extract from an array REGBUF containing the (raw) register state a
8572 function return value of type TYPE, and copy that, in virtual
8573 format, into VALBUF. */
8576 arm_extract_return_value (struct type
*type
, struct regcache
*regs
,
8579 struct gdbarch
*gdbarch
= regs
->arch ();
8580 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
8581 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
8583 if (TYPE_CODE_FLT
== type
->code ())
8585 switch (tdep
->fp_model
)
8589 /* The value is in register F0 in internal format. We need to
8590 extract the raw value and then convert it to the desired
8592 bfd_byte tmpbuf
[ARM_FP_REGISTER_SIZE
];
8594 regs
->cooked_read (ARM_F0_REGNUM
, tmpbuf
);
8595 target_float_convert (tmpbuf
, arm_ext_type (gdbarch
),
8600 case ARM_FLOAT_SOFT_FPA
:
8601 case ARM_FLOAT_SOFT_VFP
:
8602 /* ARM_FLOAT_VFP can arise if this is a variadic function so
8603 not using the VFP ABI code. */
8605 regs
->cooked_read (ARM_A1_REGNUM
, valbuf
);
8606 if (TYPE_LENGTH (type
) > 4)
8607 regs
->cooked_read (ARM_A1_REGNUM
+ 1,
8608 valbuf
+ ARM_INT_REGISTER_SIZE
);
8612 internal_error (__FILE__
, __LINE__
,
8613 _("arm_extract_return_value: "
8614 "Floating point model not supported"));
8618 else if (type
->code () == TYPE_CODE_INT
8619 || type
->code () == TYPE_CODE_CHAR
8620 || type
->code () == TYPE_CODE_BOOL
8621 || type
->code () == TYPE_CODE_PTR
8622 || TYPE_IS_REFERENCE (type
)
8623 || type
->code () == TYPE_CODE_ENUM
8624 || is_fixed_point_type (type
))
8626 /* If the type is a plain integer, then the access is
8627 straight-forward. Otherwise we have to play around a bit
8629 int len
= TYPE_LENGTH (type
);
8630 int regno
= ARM_A1_REGNUM
;
8635 /* By using store_unsigned_integer we avoid having to do
8636 anything special for small big-endian values. */
8637 regcache_cooked_read_unsigned (regs
, regno
++, &tmp
);
8638 store_unsigned_integer (valbuf
,
8639 (len
> ARM_INT_REGISTER_SIZE
8640 ? ARM_INT_REGISTER_SIZE
: len
),
8642 len
-= ARM_INT_REGISTER_SIZE
;
8643 valbuf
+= ARM_INT_REGISTER_SIZE
;
8648 /* For a structure or union the behaviour is as if the value had
8649 been stored to word-aligned memory and then loaded into
8650 registers with 32-bit load instruction(s). */
8651 int len
= TYPE_LENGTH (type
);
8652 int regno
= ARM_A1_REGNUM
;
8653 bfd_byte tmpbuf
[ARM_INT_REGISTER_SIZE
];
8657 regs
->cooked_read (regno
++, tmpbuf
);
8658 memcpy (valbuf
, tmpbuf
,
8659 len
> ARM_INT_REGISTER_SIZE
? ARM_INT_REGISTER_SIZE
: len
);
8660 len
-= ARM_INT_REGISTER_SIZE
;
8661 valbuf
+= ARM_INT_REGISTER_SIZE
;
8667 /* Will a function return an aggregate type in memory or in a
8668 register? Return 0 if an aggregate type can be returned in a
8669 register, 1 if it must be returned in memory. */
8672 arm_return_in_memory (struct gdbarch
*gdbarch
, struct type
*type
)
8674 enum type_code code
;
8676 type
= check_typedef (type
);
8678 /* Simple, non-aggregate types (ie not including vectors and
8679 complex) are always returned in a register (or registers). */
8680 code
= type
->code ();
8681 if (TYPE_CODE_STRUCT
!= code
&& TYPE_CODE_UNION
!= code
8682 && TYPE_CODE_ARRAY
!= code
&& TYPE_CODE_COMPLEX
!= code
)
8685 if (TYPE_CODE_ARRAY
== code
&& type
->is_vector ())
8687 /* Vector values should be returned using ARM registers if they
8688 are not over 16 bytes. */
8689 return (TYPE_LENGTH (type
) > 16);
8692 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
8693 if (tdep
->arm_abi
!= ARM_ABI_APCS
)
8695 /* The AAPCS says all aggregates not larger than a word are returned
8697 if (TYPE_LENGTH (type
) <= ARM_INT_REGISTER_SIZE
8698 && language_pass_by_reference (type
).trivially_copyable
)
8707 /* All aggregate types that won't fit in a register must be returned
8709 if (TYPE_LENGTH (type
) > ARM_INT_REGISTER_SIZE
8710 || !language_pass_by_reference (type
).trivially_copyable
)
8713 /* In the ARM ABI, "integer" like aggregate types are returned in
8714 registers. For an aggregate type to be integer like, its size
8715 must be less than or equal to ARM_INT_REGISTER_SIZE and the
8716 offset of each addressable subfield must be zero. Note that bit
8717 fields are not addressable, and all addressable subfields of
8718 unions always start at offset zero.
8720 This function is based on the behaviour of GCC 2.95.1.
8721 See: gcc/arm.c: arm_return_in_memory() for details.
8723 Note: All versions of GCC before GCC 2.95.2 do not set up the
8724 parameters correctly for a function returning the following
8725 structure: struct { float f;}; This should be returned in memory,
8726 not a register. Richard Earnshaw sent me a patch, but I do not
8727 know of any way to detect if a function like the above has been
8728 compiled with the correct calling convention. */
8730 /* Assume all other aggregate types can be returned in a register.
8731 Run a check for structures, unions and arrays. */
8734 if ((TYPE_CODE_STRUCT
== code
) || (TYPE_CODE_UNION
== code
))
8737 /* Need to check if this struct/union is "integer" like. For
8738 this to be true, its size must be less than or equal to
8739 ARM_INT_REGISTER_SIZE and the offset of each addressable
8740 subfield must be zero. Note that bit fields are not
8741 addressable, and unions always start at offset zero. If any
8742 of the subfields is a floating point type, the struct/union
8743 cannot be an integer type. */
8745 /* For each field in the object, check:
8746 1) Is it FP? --> yes, nRc = 1;
8747 2) Is it addressable (bitpos != 0) and
8748 not packed (bitsize == 0)?
8752 for (i
= 0; i
< type
->num_fields (); i
++)
8754 enum type_code field_type_code
;
8757 = check_typedef (type
->field (i
).type ())->code ();
8759 /* Is it a floating point type field? */
8760 if (field_type_code
== TYPE_CODE_FLT
)
8766 /* If bitpos != 0, then we have to care about it. */
8767 if (type
->field (i
).loc_bitpos () != 0)
8769 /* Bitfields are not addressable. If the field bitsize is
8770 zero, then the field is not packed. Hence it cannot be
8771 a bitfield or any other packed type. */
8772 if (TYPE_FIELD_BITSIZE (type
, i
) == 0)
8785 /* Write into appropriate registers a function return value of type
8786 TYPE, given in virtual format. */
8789 arm_store_return_value (struct type
*type
, struct regcache
*regs
,
8790 const gdb_byte
*valbuf
)
8792 struct gdbarch
*gdbarch
= regs
->arch ();
8793 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
8795 if (type
->code () == TYPE_CODE_FLT
)
8797 gdb_byte buf
[ARM_FP_REGISTER_SIZE
];
8798 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
8800 switch (tdep
->fp_model
)
8804 target_float_convert (valbuf
, type
, buf
, arm_ext_type (gdbarch
));
8805 regs
->cooked_write (ARM_F0_REGNUM
, buf
);
8808 case ARM_FLOAT_SOFT_FPA
:
8809 case ARM_FLOAT_SOFT_VFP
:
8810 /* ARM_FLOAT_VFP can arise if this is a variadic function so
8811 not using the VFP ABI code. */
8813 regs
->cooked_write (ARM_A1_REGNUM
, valbuf
);
8814 if (TYPE_LENGTH (type
) > 4)
8815 regs
->cooked_write (ARM_A1_REGNUM
+ 1,
8816 valbuf
+ ARM_INT_REGISTER_SIZE
);
8820 internal_error (__FILE__
, __LINE__
,
8821 _("arm_store_return_value: Floating "
8822 "point model not supported"));
8826 else if (type
->code () == TYPE_CODE_INT
8827 || type
->code () == TYPE_CODE_CHAR
8828 || type
->code () == TYPE_CODE_BOOL
8829 || type
->code () == TYPE_CODE_PTR
8830 || TYPE_IS_REFERENCE (type
)
8831 || type
->code () == TYPE_CODE_ENUM
)
8833 if (TYPE_LENGTH (type
) <= 4)
8835 /* Values of one word or less are zero/sign-extended and
8837 bfd_byte tmpbuf
[ARM_INT_REGISTER_SIZE
];
8838 LONGEST val
= unpack_long (type
, valbuf
);
8840 store_signed_integer (tmpbuf
, ARM_INT_REGISTER_SIZE
, byte_order
, val
);
8841 regs
->cooked_write (ARM_A1_REGNUM
, tmpbuf
);
8845 /* Integral values greater than one word are stored in consecutive
8846 registers starting with r0. This will always be a multiple of
8847 the regiser size. */
8848 int len
= TYPE_LENGTH (type
);
8849 int regno
= ARM_A1_REGNUM
;
8853 regs
->cooked_write (regno
++, valbuf
);
8854 len
-= ARM_INT_REGISTER_SIZE
;
8855 valbuf
+= ARM_INT_REGISTER_SIZE
;
8861 /* For a structure or union the behaviour is as if the value had
8862 been stored to word-aligned memory and then loaded into
8863 registers with 32-bit load instruction(s). */
8864 int len
= TYPE_LENGTH (type
);
8865 int regno
= ARM_A1_REGNUM
;
8866 bfd_byte tmpbuf
[ARM_INT_REGISTER_SIZE
];
8870 memcpy (tmpbuf
, valbuf
,
8871 len
> ARM_INT_REGISTER_SIZE
? ARM_INT_REGISTER_SIZE
: len
);
8872 regs
->cooked_write (regno
++, tmpbuf
);
8873 len
-= ARM_INT_REGISTER_SIZE
;
8874 valbuf
+= ARM_INT_REGISTER_SIZE
;
8880 /* Handle function return values. */
8882 static enum return_value_convention
8883 arm_return_value (struct gdbarch
*gdbarch
, struct value
*function
,
8884 struct type
*valtype
, struct regcache
*regcache
,
8885 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
8887 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
8888 struct type
*func_type
= function
? value_type (function
) : NULL
;
8889 enum arm_vfp_cprc_base_type vfp_base_type
;
8892 if (arm_vfp_abi_for_function (gdbarch
, func_type
)
8893 && arm_vfp_call_candidate (valtype
, &vfp_base_type
, &vfp_base_count
))
8895 int reg_char
= arm_vfp_cprc_reg_char (vfp_base_type
);
8896 int unit_length
= arm_vfp_cprc_unit_length (vfp_base_type
);
8898 for (i
= 0; i
< vfp_base_count
; i
++)
8900 if (reg_char
== 'q')
8903 arm_neon_quad_write (gdbarch
, regcache
, i
,
8904 writebuf
+ i
* unit_length
);
8907 arm_neon_quad_read (gdbarch
, regcache
, i
,
8908 readbuf
+ i
* unit_length
);
8915 xsnprintf (name_buf
, sizeof (name_buf
), "%c%d", reg_char
, i
);
8916 regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
8919 regcache
->cooked_write (regnum
, writebuf
+ i
* unit_length
);
8921 regcache
->cooked_read (regnum
, readbuf
+ i
* unit_length
);
8924 return RETURN_VALUE_REGISTER_CONVENTION
;
8927 if (valtype
->code () == TYPE_CODE_STRUCT
8928 || valtype
->code () == TYPE_CODE_UNION
8929 || valtype
->code () == TYPE_CODE_ARRAY
)
8931 /* From the AAPCS document:
8935 A Composite Type larger than 4 bytes, or whose size cannot be
8936 determined statically by both caller and callee, is stored in memory
8937 at an address passed as an extra argument when the function was
8938 called (Parameter Passing, rule A.4). The memory to be used for the
8939 result may be modified at any point during the function call.
8943 A.4: If the subroutine is a function that returns a result in memory,
8944 then the address for the result is placed in r0 and the NCRN is set
8946 if (tdep
->struct_return
== pcc_struct_return
8947 || arm_return_in_memory (gdbarch
, valtype
))
8953 regcache
->cooked_read (ARM_A1_REGNUM
, &addr
);
8954 read_memory (addr
, readbuf
, TYPE_LENGTH (valtype
));
8956 return RETURN_VALUE_ABI_RETURNS_ADDRESS
;
8959 else if (valtype
->code () == TYPE_CODE_COMPLEX
)
8961 if (arm_return_in_memory (gdbarch
, valtype
))
8962 return RETURN_VALUE_STRUCT_CONVENTION
;
8966 arm_store_return_value (valtype
, regcache
, writebuf
);
8969 arm_extract_return_value (valtype
, regcache
, readbuf
);
8971 return RETURN_VALUE_REGISTER_CONVENTION
;
8976 arm_get_longjmp_target (struct frame_info
*frame
, CORE_ADDR
*pc
)
8978 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
8979 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
8980 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
8982 gdb_byte buf
[ARM_INT_REGISTER_SIZE
];
8984 jb_addr
= get_frame_register_unsigned (frame
, ARM_A1_REGNUM
);
8986 if (target_read_memory (jb_addr
+ tdep
->jb_pc
* tdep
->jb_elt_size
, buf
,
8987 ARM_INT_REGISTER_SIZE
))
8990 *pc
= extract_unsigned_integer (buf
, ARM_INT_REGISTER_SIZE
, byte_order
);
8993 /* A call to cmse secure entry function "foo" at "a" is modified by
9000 b) bl yyyy <__acle_se_foo>
9002 section .gnu.sgstubs:
9004 yyyy: sg // secure gateway
9005 b.w xxxx <__acle_se_foo> // original_branch_dest
9010 When the control at "b", the pc contains "yyyy" (sg address) which is a
9011 trampoline and does not exist in source code. This function returns the
9012 target pc "xxxx". For more details please refer to section 5.4
9013 (Entry functions) and section 3.4.4 (C level development flow of secure code)
9014 of "armv8-m-security-extensions-requirements-on-development-tools-engineering-specification"
9015 document on www.developer.arm.com. */
9018 arm_skip_cmse_entry (CORE_ADDR pc
, const char *name
, struct objfile
*objfile
)
9020 int target_len
= strlen (name
) + strlen ("__acle_se_") + 1;
9021 char *target_name
= (char *) alloca (target_len
);
9022 xsnprintf (target_name
, target_len
, "%s%s", "__acle_se_", name
);
9024 struct bound_minimal_symbol minsym
9025 = lookup_minimal_symbol (target_name
, NULL
, objfile
);
9027 if (minsym
.minsym
!= nullptr)
9028 return minsym
.value_address ();
9033 /* Return true when SEC points to ".gnu.sgstubs" section. */
9036 arm_is_sgstubs_section (struct obj_section
*sec
)
9038 return (sec
!= nullptr
9039 && sec
->the_bfd_section
!= nullptr
9040 && sec
->the_bfd_section
->name
!= nullptr
9041 && streq (sec
->the_bfd_section
->name
, ".gnu.sgstubs"));
9044 /* Recognize GCC and GNU ld's trampolines. If we are in a trampoline,
9045 return the target PC. Otherwise return 0. */
9048 arm_skip_stub (struct frame_info
*frame
, CORE_ADDR pc
)
9052 CORE_ADDR start_addr
;
9054 /* Find the starting address and name of the function containing the PC. */
9055 if (find_pc_partial_function (pc
, &name
, &start_addr
, NULL
) == 0)
9057 /* Trampoline 'bx reg' doesn't belong to any functions. Do the
9059 start_addr
= arm_skip_bx_reg (frame
, pc
);
9060 if (start_addr
!= 0)
9066 /* If PC is in a Thumb call or return stub, return the address of the
9067 target PC, which is in a register. The thunk functions are called
9068 _call_via_xx, where x is the register name. The possible names
9069 are r0-r9, sl, fp, ip, sp, and lr. ARM RealView has similar
9070 functions, named __ARM_call_via_r[0-7]. */
9071 if (startswith (name
, "_call_via_")
9072 || startswith (name
, "__ARM_call_via_"))
9074 /* Use the name suffix to determine which register contains the
9076 static const char *table
[15] =
9077 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
9078 "r8", "r9", "sl", "fp", "ip", "sp", "lr"
9081 int offset
= strlen (name
) - 2;
9083 for (regno
= 0; regno
<= 14; regno
++)
9084 if (strcmp (&name
[offset
], table
[regno
]) == 0)
9085 return get_frame_register_unsigned (frame
, regno
);
9088 /* GNU ld generates __foo_from_arm or __foo_from_thumb for
9089 non-interworking calls to foo. We could decode the stubs
9090 to find the target but it's easier to use the symbol table. */
9091 namelen
= strlen (name
);
9092 if (name
[0] == '_' && name
[1] == '_'
9093 && ((namelen
> 2 + strlen ("_from_thumb")
9094 && startswith (name
+ namelen
- strlen ("_from_thumb"), "_from_thumb"))
9095 || (namelen
> 2 + strlen ("_from_arm")
9096 && startswith (name
+ namelen
- strlen ("_from_arm"), "_from_arm"))))
9099 int target_len
= namelen
- 2;
9100 struct bound_minimal_symbol minsym
;
9101 struct objfile
*objfile
;
9102 struct obj_section
*sec
;
9104 if (name
[namelen
- 1] == 'b')
9105 target_len
-= strlen ("_from_thumb");
9107 target_len
-= strlen ("_from_arm");
9109 target_name
= (char *) alloca (target_len
+ 1);
9110 memcpy (target_name
, name
+ 2, target_len
);
9111 target_name
[target_len
] = '\0';
9113 sec
= find_pc_section (pc
);
9114 objfile
= (sec
== NULL
) ? NULL
: sec
->objfile
;
9115 minsym
= lookup_minimal_symbol (target_name
, NULL
, objfile
);
9116 if (minsym
.minsym
!= NULL
)
9117 return minsym
.value_address ();
9122 struct obj_section
*section
= find_pc_section (pc
);
9124 /* Check whether SECTION points to the ".gnu.sgstubs" section. */
9125 if (arm_is_sgstubs_section (section
))
9126 return arm_skip_cmse_entry (pc
, name
, section
->objfile
);
9128 return 0; /* not a stub */
9132 arm_update_current_architecture (void)
9134 /* If the current architecture is not ARM, we have nothing to do. */
9135 if (gdbarch_bfd_arch_info (target_gdbarch ())->arch
!= bfd_arch_arm
)
9138 /* Update the architecture. */
9140 if (!gdbarch_update_p (info
))
9141 internal_error (__FILE__
, __LINE__
, _("could not update architecture"));
9145 set_fp_model_sfunc (const char *args
, int from_tty
,
9146 struct cmd_list_element
*c
)
9150 for (fp_model
= ARM_FLOAT_AUTO
; fp_model
!= ARM_FLOAT_LAST
; fp_model
++)
9151 if (strcmp (current_fp_model
, fp_model_strings
[fp_model
]) == 0)
9153 arm_fp_model
= (enum arm_float_model
) fp_model
;
9157 if (fp_model
== ARM_FLOAT_LAST
)
9158 internal_error (__FILE__
, __LINE__
, _("Invalid fp model accepted: %s."),
9161 arm_update_current_architecture ();
9165 show_fp_model (struct ui_file
*file
, int from_tty
,
9166 struct cmd_list_element
*c
, const char *value
)
9168 arm_gdbarch_tdep
*tdep
9169 = (arm_gdbarch_tdep
*) gdbarch_tdep (target_gdbarch ());
9171 if (arm_fp_model
== ARM_FLOAT_AUTO
9172 && gdbarch_bfd_arch_info (target_gdbarch ())->arch
== bfd_arch_arm
)
9173 gdb_printf (file
, _("\
9174 The current ARM floating point model is \"auto\" (currently \"%s\").\n"),
9175 fp_model_strings
[tdep
->fp_model
]);
9177 gdb_printf (file
, _("\
9178 The current ARM floating point model is \"%s\".\n"),
9179 fp_model_strings
[arm_fp_model
]);
9183 arm_set_abi (const char *args
, int from_tty
,
9184 struct cmd_list_element
*c
)
9188 for (arm_abi
= ARM_ABI_AUTO
; arm_abi
!= ARM_ABI_LAST
; arm_abi
++)
9189 if (strcmp (arm_abi_string
, arm_abi_strings
[arm_abi
]) == 0)
9191 arm_abi_global
= (enum arm_abi_kind
) arm_abi
;
9195 if (arm_abi
== ARM_ABI_LAST
)
9196 internal_error (__FILE__
, __LINE__
, _("Invalid ABI accepted: %s."),
9199 arm_update_current_architecture ();
9203 arm_show_abi (struct ui_file
*file
, int from_tty
,
9204 struct cmd_list_element
*c
, const char *value
)
9206 arm_gdbarch_tdep
*tdep
9207 = (arm_gdbarch_tdep
*) gdbarch_tdep (target_gdbarch ());
9209 if (arm_abi_global
== ARM_ABI_AUTO
9210 && gdbarch_bfd_arch_info (target_gdbarch ())->arch
== bfd_arch_arm
)
9211 gdb_printf (file
, _("\
9212 The current ARM ABI is \"auto\" (currently \"%s\").\n"),
9213 arm_abi_strings
[tdep
->arm_abi
]);
9215 gdb_printf (file
, _("The current ARM ABI is \"%s\".\n"),
9220 arm_show_fallback_mode (struct ui_file
*file
, int from_tty
,
9221 struct cmd_list_element
*c
, const char *value
)
9224 _("The current execution mode assumed "
9225 "(when symbols are unavailable) is \"%s\".\n"),
9226 arm_fallback_mode_string
);
9230 arm_show_force_mode (struct ui_file
*file
, int from_tty
,
9231 struct cmd_list_element
*c
, const char *value
)
9234 _("The current execution mode assumed "
9235 "(even when symbols are available) is \"%s\".\n"),
9236 arm_force_mode_string
);
9240 arm_show_unwind_secure_frames (struct ui_file
*file
, int from_tty
,
9241 struct cmd_list_element
*c
, const char *value
)
9244 _("Usage of non-secure to secure exception stack unwinding is %s.\n"),
9245 arm_unwind_secure_frames
? "on" : "off");
9248 /* If the user changes the register disassembly style used for info
9249 register and other commands, we have to also switch the style used
9250 in opcodes for disassembly output. This function is run in the "set
9251 arm disassembly" command, and does that. */
9254 set_disassembly_style_sfunc (const char *args
, int from_tty
,
9255 struct cmd_list_element
*c
)
9257 /* Convert the short style name into the long style name (eg, reg-names-*)
9258 before calling the generic set_disassembler_options() function. */
9259 std::string long_name
= std::string ("reg-names-") + disassembly_style
;
9260 set_disassembler_options (&long_name
[0]);
9264 show_disassembly_style_sfunc (struct ui_file
*file
, int from_tty
,
9265 struct cmd_list_element
*c
, const char *value
)
9267 struct gdbarch
*gdbarch
= get_current_arch ();
9268 char *options
= get_disassembler_options (gdbarch
);
9269 const char *style
= "";
9273 FOR_EACH_DISASSEMBLER_OPTION (opt
, options
)
9274 if (startswith (opt
, "reg-names-"))
9276 style
= &opt
[strlen ("reg-names-")];
9277 len
= strcspn (style
, ",");
9280 gdb_printf (file
, "The disassembly style is \"%.*s\".\n", len
, style
);
9283 /* Return the ARM register name corresponding to register I. */
9285 arm_register_name (struct gdbarch
*gdbarch
, int i
)
9287 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
9289 if (is_s_pseudo (gdbarch
, i
))
9291 static const char *const s_pseudo_names
[] = {
9292 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
9293 "s8", "s9", "s10", "s11", "s12", "s13", "s14", "s15",
9294 "s16", "s17", "s18", "s19", "s20", "s21", "s22", "s23",
9295 "s24", "s25", "s26", "s27", "s28", "s29", "s30", "s31",
9298 return s_pseudo_names
[i
- tdep
->s_pseudo_base
];
9301 if (is_q_pseudo (gdbarch
, i
))
9303 static const char *const q_pseudo_names
[] = {
9304 "q0", "q1", "q2", "q3", "q4", "q5", "q6", "q7",
9305 "q8", "q9", "q10", "q11", "q12", "q13", "q14", "q15",
9308 return q_pseudo_names
[i
- tdep
->q_pseudo_base
];
9311 if (is_mve_pseudo (gdbarch
, i
))
9314 /* RA_AUTH_CODE is used for unwinding only. Do not assign it a name. */
9315 if (is_pacbti_pseudo (gdbarch
, i
))
9318 if (i
>= ARRAY_SIZE (arm_register_names
))
9319 /* These registers are only supported on targets which supply
9320 an XML description. */
9323 /* Non-pseudo registers. */
9324 return arm_register_names
[i
];
9327 /* Test whether the coff symbol specific value corresponds to a Thumb
9331 coff_sym_is_thumb (int val
)
9333 return (val
== C_THUMBEXT
9334 || val
== C_THUMBSTAT
9335 || val
== C_THUMBEXTFUNC
9336 || val
== C_THUMBSTATFUNC
9337 || val
== C_THUMBLABEL
);
9340 /* arm_coff_make_msymbol_special()
9341 arm_elf_make_msymbol_special()
9343 These functions test whether the COFF or ELF symbol corresponds to
9344 an address in thumb code, and set a "special" bit in a minimal
9345 symbol to indicate that it does. */
9348 arm_elf_make_msymbol_special(asymbol
*sym
, struct minimal_symbol
*msym
)
9350 elf_symbol_type
*elfsym
= (elf_symbol_type
*) sym
;
9352 if (ARM_GET_SYM_BRANCH_TYPE (elfsym
->internal_elf_sym
.st_target_internal
)
9353 == ST_BRANCH_TO_THUMB
)
9354 MSYMBOL_SET_SPECIAL (msym
);
9358 arm_coff_make_msymbol_special(int val
, struct minimal_symbol
*msym
)
9360 if (coff_sym_is_thumb (val
))
9361 MSYMBOL_SET_SPECIAL (msym
);
9365 arm_record_special_symbol (struct gdbarch
*gdbarch
, struct objfile
*objfile
,
9368 const char *name
= bfd_asymbol_name (sym
);
9369 struct arm_per_bfd
*data
;
9370 struct arm_mapping_symbol new_map_sym
;
9372 gdb_assert (name
[0] == '$');
9373 if (name
[1] != 'a' && name
[1] != 't' && name
[1] != 'd')
9376 data
= arm_bfd_data_key
.get (objfile
->obfd
);
9378 data
= arm_bfd_data_key
.emplace (objfile
->obfd
,
9379 objfile
->obfd
->section_count
);
9380 arm_mapping_symbol_vec
&map
9381 = data
->section_maps
[bfd_asymbol_section (sym
)->index
];
9383 new_map_sym
.value
= sym
->value
;
9384 new_map_sym
.type
= name
[1];
9386 /* Insert at the end, the vector will be sorted on first use. */
9387 map
.push_back (new_map_sym
);
9391 arm_write_pc (struct regcache
*regcache
, CORE_ADDR pc
)
9393 struct gdbarch
*gdbarch
= regcache
->arch ();
9394 regcache_cooked_write_unsigned (regcache
, ARM_PC_REGNUM
, pc
);
9396 /* If necessary, set the T bit. */
9399 ULONGEST val
, t_bit
;
9400 regcache_cooked_read_unsigned (regcache
, ARM_PS_REGNUM
, &val
);
9401 t_bit
= arm_psr_thumb_bit (gdbarch
);
9402 if (arm_pc_is_thumb (gdbarch
, pc
))
9403 regcache_cooked_write_unsigned (regcache
, ARM_PS_REGNUM
,
9406 regcache_cooked_write_unsigned (regcache
, ARM_PS_REGNUM
,
9411 /* Read the contents of a NEON quad register, by reading from two
9412 double registers. This is used to implement the quad pseudo
9413 registers, and for argument passing in case the quad registers are
9414 missing; vectors are passed in quad registers when using the VFP
9415 ABI, even if a NEON unit is not present. REGNUM is the index of
9416 the quad register, in [0, 15]. */
9418 static enum register_status
9419 arm_neon_quad_read (struct gdbarch
*gdbarch
, readable_regcache
*regcache
,
9420 int regnum
, gdb_byte
*buf
)
9423 gdb_byte reg_buf
[8];
9424 int offset
, double_regnum
;
9425 enum register_status status
;
9427 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", regnum
<< 1);
9428 double_regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
9431 /* d0 is always the least significant half of q0. */
9432 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
9437 status
= regcache
->raw_read (double_regnum
, reg_buf
);
9438 if (status
!= REG_VALID
)
9440 memcpy (buf
+ offset
, reg_buf
, 8);
9442 offset
= 8 - offset
;
9443 status
= regcache
->raw_read (double_regnum
+ 1, reg_buf
);
9444 if (status
!= REG_VALID
)
9446 memcpy (buf
+ offset
, reg_buf
, 8);
9451 /* Read the contents of the MVE pseudo register REGNUM and store it
9454 static enum register_status
9455 arm_mve_pseudo_read (struct gdbarch
*gdbarch
, readable_regcache
*regcache
,
9456 int regnum
, gdb_byte
*buf
)
9458 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
9460 /* P0 is the first 16 bits of VPR. */
9461 return regcache
->raw_read_part (tdep
->mve_vpr_regnum
, 0, 2, buf
);
9464 static enum register_status
9465 arm_pseudo_read (struct gdbarch
*gdbarch
, readable_regcache
*regcache
,
9466 int regnum
, gdb_byte
*buf
)
9468 const int num_regs
= gdbarch_num_regs (gdbarch
);
9470 gdb_byte reg_buf
[8];
9471 int offset
, double_regnum
;
9472 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
9474 gdb_assert (regnum
>= num_regs
);
9476 if (is_q_pseudo (gdbarch
, regnum
))
9478 /* Quad-precision register. */
9479 return arm_neon_quad_read (gdbarch
, regcache
,
9480 regnum
- tdep
->q_pseudo_base
, buf
);
9482 else if (is_mve_pseudo (gdbarch
, regnum
))
9483 return arm_mve_pseudo_read (gdbarch
, regcache
, regnum
, buf
);
9486 enum register_status status
;
9488 regnum
-= tdep
->s_pseudo_base
;
9489 /* Single-precision register. */
9490 gdb_assert (regnum
< 32);
9492 /* s0 is always the least significant half of d0. */
9493 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
9494 offset
= (regnum
& 1) ? 0 : 4;
9496 offset
= (regnum
& 1) ? 4 : 0;
9498 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", regnum
>> 1);
9499 double_regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
9502 status
= regcache
->raw_read (double_regnum
, reg_buf
);
9503 if (status
== REG_VALID
)
9504 memcpy (buf
, reg_buf
+ offset
, 4);
9509 /* Store the contents of BUF to a NEON quad register, by writing to
9510 two double registers. This is used to implement the quad pseudo
9511 registers, and for argument passing in case the quad registers are
9512 missing; vectors are passed in quad registers when using the VFP
9513 ABI, even if a NEON unit is not present. REGNUM is the index
9514 of the quad register, in [0, 15]. */
9517 arm_neon_quad_write (struct gdbarch
*gdbarch
, struct regcache
*regcache
,
9518 int regnum
, const gdb_byte
*buf
)
9521 int offset
, double_regnum
;
9523 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", regnum
<< 1);
9524 double_regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
9527 /* d0 is always the least significant half of q0. */
9528 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
9533 regcache
->raw_write (double_regnum
, buf
+ offset
);
9534 offset
= 8 - offset
;
9535 regcache
->raw_write (double_regnum
+ 1, buf
+ offset
);
9538 /* Store the contents of BUF to the MVE pseudo register REGNUM. */
9541 arm_mve_pseudo_write (struct gdbarch
*gdbarch
, struct regcache
*regcache
,
9542 int regnum
, const gdb_byte
*buf
)
9544 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
9546 /* P0 is the first 16 bits of VPR. */
9547 regcache
->raw_write_part (tdep
->mve_vpr_regnum
, 0, 2, buf
);
9551 arm_pseudo_write (struct gdbarch
*gdbarch
, struct regcache
*regcache
,
9552 int regnum
, const gdb_byte
*buf
)
9554 const int num_regs
= gdbarch_num_regs (gdbarch
);
9556 gdb_byte reg_buf
[8];
9557 int offset
, double_regnum
;
9558 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
9560 gdb_assert (regnum
>= num_regs
);
9562 if (is_q_pseudo (gdbarch
, regnum
))
9564 /* Quad-precision register. */
9565 arm_neon_quad_write (gdbarch
, regcache
,
9566 regnum
- tdep
->q_pseudo_base
, buf
);
9568 else if (is_mve_pseudo (gdbarch
, regnum
))
9569 arm_mve_pseudo_write (gdbarch
, regcache
, regnum
, buf
);
9572 regnum
-= tdep
->s_pseudo_base
;
9573 /* Single-precision register. */
9574 gdb_assert (regnum
< 32);
9576 /* s0 is always the least significant half of d0. */
9577 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
9578 offset
= (regnum
& 1) ? 0 : 4;
9580 offset
= (regnum
& 1) ? 4 : 0;
9582 xsnprintf (name_buf
, sizeof (name_buf
), "d%d", regnum
>> 1);
9583 double_regnum
= user_reg_map_name_to_regnum (gdbarch
, name_buf
,
9586 regcache
->raw_read (double_regnum
, reg_buf
);
9587 memcpy (reg_buf
+ offset
, buf
, 4);
9588 regcache
->raw_write (double_regnum
, reg_buf
);
9592 static struct value
*
9593 value_of_arm_user_reg (struct frame_info
*frame
, const void *baton
)
9595 const int *reg_p
= (const int *) baton
;
9596 return value_of_register (*reg_p
, frame
);
9599 static enum gdb_osabi
9600 arm_elf_osabi_sniffer (bfd
*abfd
)
9602 unsigned int elfosabi
;
9603 enum gdb_osabi osabi
= GDB_OSABI_UNKNOWN
;
9605 elfosabi
= elf_elfheader (abfd
)->e_ident
[EI_OSABI
];
9607 if (elfosabi
== ELFOSABI_ARM
)
9608 /* GNU tools use this value. Check note sections in this case,
9611 for (asection
*sect
: gdb_bfd_sections (abfd
))
9612 generic_elf_osabi_sniff_abi_tag_sections (abfd
, sect
, &osabi
);
9615 /* Anything else will be handled by the generic ELF sniffer. */
9620 arm_register_reggroup_p (struct gdbarch
*gdbarch
, int regnum
,
9621 const struct reggroup
*group
)
9623 /* FPS register's type is INT, but belongs to float_reggroup. Beside
9624 this, FPS register belongs to save_regroup, restore_reggroup, and
9625 all_reggroup, of course. */
9626 if (regnum
== ARM_FPS_REGNUM
)
9627 return (group
== float_reggroup
9628 || group
== save_reggroup
9629 || group
== restore_reggroup
9630 || group
== all_reggroup
);
9632 return default_register_reggroup_p (gdbarch
, regnum
, group
);
9635 /* For backward-compatibility we allow two 'g' packet lengths with
9636 the remote protocol depending on whether FPA registers are
9637 supplied. M-profile targets do not have FPA registers, but some
9638 stubs already exist in the wild which use a 'g' packet which
9639 supplies them albeit with dummy values. The packet format which
9640 includes FPA registers should be considered deprecated for
9641 M-profile targets. */
9644 arm_register_g_packet_guesses (struct gdbarch
*gdbarch
)
9646 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
9650 const target_desc
*tdesc
;
9652 /* If we know from the executable this is an M-profile target,
9653 cater for remote targets whose register set layout is the
9654 same as the FPA layout. */
9655 tdesc
= arm_read_mprofile_description (ARM_M_TYPE_WITH_FPA
);
9656 register_remote_g_packet_guess (gdbarch
,
9657 ARM_CORE_REGS_SIZE
+ ARM_FP_REGS_SIZE
,
9660 /* The regular M-profile layout. */
9661 tdesc
= arm_read_mprofile_description (ARM_M_TYPE_M_PROFILE
);
9662 register_remote_g_packet_guess (gdbarch
, ARM_CORE_REGS_SIZE
,
9665 /* M-profile plus M4F VFP. */
9666 tdesc
= arm_read_mprofile_description (ARM_M_TYPE_VFP_D16
);
9667 register_remote_g_packet_guess (gdbarch
,
9668 ARM_CORE_REGS_SIZE
+ ARM_VFP2_REGS_SIZE
,
9670 /* M-profile plus MVE. */
9671 tdesc
= arm_read_mprofile_description (ARM_M_TYPE_MVE
);
9672 register_remote_g_packet_guess (gdbarch
, ARM_CORE_REGS_SIZE
9673 + ARM_VFP2_REGS_SIZE
9674 + ARM_INT_REGISTER_SIZE
, tdesc
);
9676 /* M-profile system (stack pointers). */
9677 tdesc
= arm_read_mprofile_description (ARM_M_TYPE_SYSTEM
);
9678 register_remote_g_packet_guess (gdbarch
, 2 * ARM_INT_REGISTER_SIZE
, tdesc
);
9681 /* Otherwise we don't have a useful guess. */
9684 /* Implement the code_of_frame_writable gdbarch method. */
9687 arm_code_of_frame_writable (struct gdbarch
*gdbarch
, struct frame_info
*frame
)
9689 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
9691 if (tdep
->is_m
&& get_frame_type (frame
) == SIGTRAMP_FRAME
)
9693 /* M-profile exception frames return to some magic PCs, where
9694 isn't writable at all. */
9701 /* Implement gdbarch_gnu_triplet_regexp. If the arch name is arm then allow it
9702 to be postfixed by a version (eg armv7hl). */
9705 arm_gnu_triplet_regexp (struct gdbarch
*gdbarch
)
9707 if (strcmp (gdbarch_bfd_arch_info (gdbarch
)->arch_name
, "arm") == 0)
9708 return "arm(v[^- ]*)?";
9709 return gdbarch_bfd_arch_info (gdbarch
)->arch_name
;
9712 /* Implement the "get_pc_address_flags" gdbarch method. */
9715 arm_get_pc_address_flags (frame_info
*frame
, CORE_ADDR pc
)
9717 if (get_frame_pc_masked (frame
))
9723 /* Initialize the current architecture based on INFO. If possible,
9724 re-use an architecture from ARCHES, which is a list of
9725 architectures already created during this debugging session.
9727 Called e.g. at program startup, when reading a core file, and when
9728 reading a binary file. */
9730 static struct gdbarch
*
9731 arm_gdbarch_init (struct gdbarch_info info
, struct gdbarch_list
*arches
)
9733 struct gdbarch
*gdbarch
;
9734 struct gdbarch_list
*best_arch
;
9735 enum arm_abi_kind arm_abi
= arm_abi_global
;
9736 enum arm_float_model fp_model
= arm_fp_model
;
9737 tdesc_arch_data_up tdesc_data
;
9740 bool have_sec_ext
= false;
9741 int vfp_register_count
= 0;
9742 bool have_s_pseudos
= false, have_q_pseudos
= false;
9743 bool have_wmmx_registers
= false;
9744 bool have_neon
= false;
9745 bool have_fpa_registers
= true;
9746 const struct target_desc
*tdesc
= info
.target_desc
;
9747 bool have_vfp
= false;
9748 bool have_mve
= false;
9749 bool have_pacbti
= false;
9750 int mve_vpr_regnum
= -1;
9751 int register_count
= ARM_NUM_REGS
;
9752 bool have_m_profile_msp
= false;
9753 int m_profile_msp_regnum
= -1;
9754 int m_profile_psp_regnum
= -1;
9755 int m_profile_msp_ns_regnum
= -1;
9756 int m_profile_psp_ns_regnum
= -1;
9757 int m_profile_msp_s_regnum
= -1;
9758 int m_profile_psp_s_regnum
= -1;
9761 /* If we have an object to base this architecture on, try to determine
9764 if (arm_abi
== ARM_ABI_AUTO
&& info
.abfd
!= NULL
)
9766 int ei_osabi
, e_flags
;
9768 switch (bfd_get_flavour (info
.abfd
))
9770 case bfd_target_coff_flavour
:
9771 /* Assume it's an old APCS-style ABI. */
9773 arm_abi
= ARM_ABI_APCS
;
9776 case bfd_target_elf_flavour
:
9777 ei_osabi
= elf_elfheader (info
.abfd
)->e_ident
[EI_OSABI
];
9778 e_flags
= elf_elfheader (info
.abfd
)->e_flags
;
9780 if (ei_osabi
== ELFOSABI_ARM
)
9782 /* GNU tools used to use this value, but do not for EABI
9783 objects. There's nowhere to tag an EABI version
9784 anyway, so assume APCS. */
9785 arm_abi
= ARM_ABI_APCS
;
9787 else if (ei_osabi
== ELFOSABI_NONE
|| ei_osabi
== ELFOSABI_GNU
)
9789 int eabi_ver
= EF_ARM_EABI_VERSION (e_flags
);
9793 case EF_ARM_EABI_UNKNOWN
:
9794 /* Assume GNU tools. */
9795 arm_abi
= ARM_ABI_APCS
;
9798 case EF_ARM_EABI_VER4
:
9799 case EF_ARM_EABI_VER5
:
9800 arm_abi
= ARM_ABI_AAPCS
;
9801 /* EABI binaries default to VFP float ordering.
9802 They may also contain build attributes that can
9803 be used to identify if the VFP argument-passing
9805 if (fp_model
== ARM_FLOAT_AUTO
)
9808 switch (bfd_elf_get_obj_attr_int (info
.abfd
,
9812 case AEABI_VFP_args_base
:
9813 /* "The user intended FP parameter/result
9814 passing to conform to AAPCS, base
9816 fp_model
= ARM_FLOAT_SOFT_VFP
;
9818 case AEABI_VFP_args_vfp
:
9819 /* "The user intended FP parameter/result
9820 passing to conform to AAPCS, VFP
9822 fp_model
= ARM_FLOAT_VFP
;
9824 case AEABI_VFP_args_toolchain
:
9825 /* "The user intended FP parameter/result
9826 passing to conform to tool chain-specific
9827 conventions" - we don't know any such
9828 conventions, so leave it as "auto". */
9830 case AEABI_VFP_args_compatible
:
9831 /* "Code is compatible with both the base
9832 and VFP variants; the user did not permit
9833 non-variadic functions to pass FP
9834 parameters/results" - leave it as
9838 /* Attribute value not mentioned in the
9839 November 2012 ABI, so leave it as
9844 fp_model
= ARM_FLOAT_SOFT_VFP
;
9850 /* Leave it as "auto". */
9851 warning (_("unknown ARM EABI version 0x%x"), eabi_ver
);
9856 /* Detect M-profile programs. This only works if the
9857 executable file includes build attributes; GCC does
9858 copy them to the executable, but e.g. RealView does
9861 = bfd_elf_get_obj_attr_int (info
.abfd
, OBJ_ATTR_PROC
,
9864 = bfd_elf_get_obj_attr_int (info
.abfd
, OBJ_ATTR_PROC
,
9865 Tag_CPU_arch_profile
);
9867 /* GCC specifies the profile for v6-M; RealView only
9868 specifies the profile for architectures starting with
9869 V7 (as opposed to architectures with a tag
9870 numerically greater than TAG_CPU_ARCH_V7). */
9871 if (!tdesc_has_registers (tdesc
)
9872 && (attr_arch
== TAG_CPU_ARCH_V6_M
9873 || attr_arch
== TAG_CPU_ARCH_V6S_M
9874 || attr_arch
== TAG_CPU_ARCH_V7E_M
9875 || attr_arch
== TAG_CPU_ARCH_V8M_BASE
9876 || attr_arch
== TAG_CPU_ARCH_V8M_MAIN
9877 || attr_arch
== TAG_CPU_ARCH_V8_1M_MAIN
9878 || attr_profile
== 'M'))
9881 /* Look for attributes that indicate support for ARMv8.1-m
9883 if (!tdesc_has_registers (tdesc
) && is_m
)
9885 int attr_pac_extension
9886 = bfd_elf_get_obj_attr_int (info
.abfd
, OBJ_ATTR_PROC
,
9889 int attr_bti_extension
9890 = bfd_elf_get_obj_attr_int (info
.abfd
, OBJ_ATTR_PROC
,
9894 = bfd_elf_get_obj_attr_int (info
.abfd
, OBJ_ATTR_PROC
,
9898 = bfd_elf_get_obj_attr_int (info
.abfd
, OBJ_ATTR_PROC
,
9901 if (attr_pac_extension
!= 0 || attr_bti_extension
!= 0
9902 || attr_pacret_use
!= 0 || attr_bti_use
!= 0)
9908 if (fp_model
== ARM_FLOAT_AUTO
)
9910 switch (e_flags
& (EF_ARM_SOFT_FLOAT
| EF_ARM_VFP_FLOAT
))
9913 /* Leave it as "auto". Strictly speaking this case
9914 means FPA, but almost nobody uses that now, and
9915 many toolchains fail to set the appropriate bits
9916 for the floating-point model they use. */
9918 case EF_ARM_SOFT_FLOAT
:
9919 fp_model
= ARM_FLOAT_SOFT_FPA
;
9921 case EF_ARM_VFP_FLOAT
:
9922 fp_model
= ARM_FLOAT_VFP
;
9924 case EF_ARM_SOFT_FLOAT
| EF_ARM_VFP_FLOAT
:
9925 fp_model
= ARM_FLOAT_SOFT_VFP
;
9930 if (e_flags
& EF_ARM_BE8
)
9931 info
.byte_order_for_code
= BFD_ENDIAN_LITTLE
;
9936 /* Leave it as "auto". */
9941 /* Check any target description for validity. */
9942 if (tdesc_has_registers (tdesc
))
9944 /* For most registers we require GDB's default names; but also allow
9945 the numeric names for sp / lr / pc, as a convenience. */
9946 static const char *const arm_sp_names
[] = { "r13", "sp", NULL
};
9947 static const char *const arm_lr_names
[] = { "r14", "lr", NULL
};
9948 static const char *const arm_pc_names
[] = { "r15", "pc", NULL
};
9950 const struct tdesc_feature
*feature
;
9953 feature
= tdesc_find_feature (tdesc
,
9954 "org.gnu.gdb.arm.core");
9955 if (feature
== NULL
)
9957 feature
= tdesc_find_feature (tdesc
,
9958 "org.gnu.gdb.arm.m-profile");
9959 if (feature
== NULL
)
9965 tdesc_data
= tdesc_data_alloc ();
9968 for (i
= 0; i
< ARM_SP_REGNUM
; i
++)
9969 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (), i
,
9970 arm_register_names
[i
]);
9971 valid_p
&= tdesc_numbered_register_choices (feature
, tdesc_data
.get (),
9974 valid_p
&= tdesc_numbered_register_choices (feature
, tdesc_data
.get (),
9977 valid_p
&= tdesc_numbered_register_choices (feature
, tdesc_data
.get (),
9981 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
9982 ARM_PS_REGNUM
, "xpsr");
9984 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
9985 ARM_PS_REGNUM
, "cpsr");
9992 feature
= tdesc_find_feature (tdesc
,
9993 "org.gnu.gdb.arm.m-system");
9994 if (feature
!= nullptr)
9997 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
9998 register_count
, "msp");
10001 warning (_("M-profile m-system feature is missing required register msp."));
10004 have_m_profile_msp
= true;
10005 m_profile_msp_regnum
= register_count
++;
10008 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
10009 register_count
, "psp");
10012 warning (_("M-profile m-system feature is missing required register psp."));
10015 m_profile_psp_regnum
= register_count
++;
10019 feature
= tdesc_find_feature (tdesc
,
10020 "org.gnu.gdb.arm.fpa");
10021 if (feature
!= NULL
)
10024 for (i
= ARM_F0_REGNUM
; i
<= ARM_FPS_REGNUM
; i
++)
10025 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (), i
,
10026 arm_register_names
[i
]);
10031 have_fpa_registers
= false;
10033 feature
= tdesc_find_feature (tdesc
,
10034 "org.gnu.gdb.xscale.iwmmxt");
10035 if (feature
!= NULL
)
10037 static const char *const iwmmxt_names
[] = {
10038 "wR0", "wR1", "wR2", "wR3", "wR4", "wR5", "wR6", "wR7",
10039 "wR8", "wR9", "wR10", "wR11", "wR12", "wR13", "wR14", "wR15",
10040 "wCID", "wCon", "wCSSF", "wCASF", "", "", "", "",
10041 "wCGR0", "wCGR1", "wCGR2", "wCGR3", "", "", "", "",
10045 for (i
= ARM_WR0_REGNUM
; i
<= ARM_WR15_REGNUM
; i
++)
10047 &= tdesc_numbered_register (feature
, tdesc_data
.get (), i
,
10048 iwmmxt_names
[i
- ARM_WR0_REGNUM
]);
10050 /* Check for the control registers, but do not fail if they
10052 for (i
= ARM_WC0_REGNUM
; i
<= ARM_WCASF_REGNUM
; i
++)
10053 tdesc_numbered_register (feature
, tdesc_data
.get (), i
,
10054 iwmmxt_names
[i
- ARM_WR0_REGNUM
]);
10056 for (i
= ARM_WCGR0_REGNUM
; i
<= ARM_WCGR3_REGNUM
; i
++)
10058 &= tdesc_numbered_register (feature
, tdesc_data
.get (), i
,
10059 iwmmxt_names
[i
- ARM_WR0_REGNUM
]);
10064 have_wmmx_registers
= true;
10067 /* If we have a VFP unit, check whether the single precision registers
10068 are present. If not, then we will synthesize them as pseudo
10070 feature
= tdesc_find_feature (tdesc
,
10071 "org.gnu.gdb.arm.vfp");
10072 if (feature
!= NULL
)
10074 static const char *const vfp_double_names
[] = {
10075 "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",
10076 "d8", "d9", "d10", "d11", "d12", "d13", "d14", "d15",
10077 "d16", "d17", "d18", "d19", "d20", "d21", "d22", "d23",
10078 "d24", "d25", "d26", "d27", "d28", "d29", "d30", "d31",
10081 /* Require the double precision registers. There must be either
10084 for (i
= 0; i
< 32; i
++)
10086 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
10088 vfp_double_names
[i
]);
10092 if (!valid_p
&& i
== 16)
10095 /* Also require FPSCR. */
10096 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
10097 ARM_FPSCR_REGNUM
, "fpscr");
10103 if (tdesc_unnumbered_register (feature
, "s0") == 0)
10104 have_s_pseudos
= true;
10106 vfp_register_count
= i
;
10108 /* If we have VFP, also check for NEON. The architecture allows
10109 NEON without VFP (integer vector operations only), but GDB
10110 does not support that. */
10111 feature
= tdesc_find_feature (tdesc
,
10112 "org.gnu.gdb.arm.neon");
10113 if (feature
!= NULL
)
10115 /* NEON requires 32 double-precision registers. */
10119 /* If there are quad registers defined by the stub, use
10120 their type; otherwise (normally) provide them with
10121 the default type. */
10122 if (tdesc_unnumbered_register (feature
, "q0") == 0)
10123 have_q_pseudos
= true;
10127 /* Check for the TLS register feature. */
10128 feature
= tdesc_find_feature (tdesc
, "org.gnu.gdb.arm.tls");
10129 if (feature
!= nullptr)
10131 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
10132 register_count
, "tpidruro");
10136 tls_regnum
= register_count
;
10140 /* Check for MVE after all the checks for GPR's, VFP and Neon.
10141 MVE (Helium) is an M-profile extension. */
10144 /* Do we have the MVE feature? */
10145 feature
= tdesc_find_feature (tdesc
,"org.gnu.gdb.arm.m-profile-mve");
10147 if (feature
!= nullptr)
10149 /* If we have MVE, we must always have the VPR register. */
10150 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
10151 register_count
, "vpr");
10154 warning (_("MVE feature is missing required register vpr."));
10159 mve_vpr_regnum
= register_count
;
10162 /* We can't have Q pseudo registers available here, as that
10163 would mean we have NEON features, and that is only available
10164 on A and R profiles. */
10165 gdb_assert (!have_q_pseudos
);
10167 /* Given we have a M-profile target description, if MVE is
10168 enabled and there are VFP registers, we should have Q
10169 pseudo registers (Q0 ~ Q7). */
10171 have_q_pseudos
= true;
10174 /* Do we have the ARMv8.1-m PACBTI feature? */
10175 feature
= tdesc_find_feature (tdesc
,
10176 "org.gnu.gdb.arm.m-profile-pacbti");
10177 if (feature
!= nullptr)
10179 /* By advertising this feature, the target acknowledges the
10180 presence of the ARMv8.1-m PACBTI extensions.
10182 We don't care for any particular registers in this group, so
10183 the target is free to include whatever it deems appropriate.
10185 The expectation is for this feature to include the PAC
10187 have_pacbti
= true;
10190 /* Do we have the Security extension? */
10191 feature
= tdesc_find_feature (tdesc
,
10192 "org.gnu.gdb.arm.secext");
10193 if (feature
!= nullptr)
10195 /* Secure/Non-secure stack pointers. */
10197 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
10198 register_count
, "msp_ns");
10201 warning (_("M-profile secext feature is missing required register msp_ns."));
10204 m_profile_msp_ns_regnum
= register_count
++;
10207 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
10208 register_count
, "psp_ns");
10211 warning (_("M-profile secext feature is missing required register psp_ns."));
10214 m_profile_psp_ns_regnum
= register_count
++;
10217 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
10218 register_count
, "msp_s");
10221 warning (_("M-profile secext feature is missing required register msp_s."));
10224 m_profile_msp_s_regnum
= register_count
++;
10227 valid_p
&= tdesc_numbered_register (feature
, tdesc_data
.get (),
10228 register_count
, "psp_s");
10231 warning (_("M-profile secext feature is missing required register psp_s."));
10234 m_profile_psp_s_regnum
= register_count
++;
10236 have_sec_ext
= true;
10242 /* If there is already a candidate, use it. */
10243 for (best_arch
= gdbarch_list_lookup_by_info (arches
, &info
);
10245 best_arch
= gdbarch_list_lookup_by_info (best_arch
->next
, &info
))
10247 arm_gdbarch_tdep
*tdep
10248 = (arm_gdbarch_tdep
*) gdbarch_tdep (best_arch
->gdbarch
);
10250 if (arm_abi
!= ARM_ABI_AUTO
&& arm_abi
!= tdep
->arm_abi
)
10253 if (fp_model
!= ARM_FLOAT_AUTO
&& fp_model
!= tdep
->fp_model
)
10256 /* There are various other properties in tdep that we do not
10257 need to check here: those derived from a target description,
10258 since gdbarches with a different target description are
10259 automatically disqualified. */
10261 /* Do check is_m, though, since it might come from the binary. */
10262 if (is_m
!= tdep
->is_m
)
10265 /* Also check for ARMv8.1-m PACBTI support, since it might come from
10267 if (have_pacbti
!= tdep
->have_pacbti
)
10270 /* Found a match. */
10274 if (best_arch
!= NULL
)
10275 return best_arch
->gdbarch
;
10277 arm_gdbarch_tdep
*tdep
= new arm_gdbarch_tdep
;
10278 gdbarch
= gdbarch_alloc (&info
, tdep
);
10280 /* Record additional information about the architecture we are defining.
10281 These are gdbarch discriminators, like the OSABI. */
10282 tdep
->arm_abi
= arm_abi
;
10283 tdep
->fp_model
= fp_model
;
10285 tdep
->have_sec_ext
= have_sec_ext
;
10286 tdep
->have_fpa_registers
= have_fpa_registers
;
10287 tdep
->have_wmmx_registers
= have_wmmx_registers
;
10288 gdb_assert (vfp_register_count
== 0
10289 || vfp_register_count
== 16
10290 || vfp_register_count
== 32);
10291 tdep
->vfp_register_count
= vfp_register_count
;
10292 tdep
->have_s_pseudos
= have_s_pseudos
;
10293 tdep
->have_q_pseudos
= have_q_pseudos
;
10294 tdep
->have_neon
= have_neon
;
10295 tdep
->tls_regnum
= tls_regnum
;
10297 /* Adjust the MVE feature settings. */
10300 tdep
->have_mve
= true;
10301 tdep
->mve_vpr_regnum
= mve_vpr_regnum
;
10304 /* Adjust the PACBTI feature settings. */
10305 tdep
->have_pacbti
= have_pacbti
;
10307 /* Adjust the M-profile stack pointers settings. */
10308 if (have_m_profile_msp
)
10310 tdep
->m_profile_msp_regnum
= m_profile_msp_regnum
;
10311 tdep
->m_profile_psp_regnum
= m_profile_psp_regnum
;
10312 tdep
->m_profile_msp_ns_regnum
= m_profile_msp_ns_regnum
;
10313 tdep
->m_profile_psp_ns_regnum
= m_profile_psp_ns_regnum
;
10314 tdep
->m_profile_msp_s_regnum
= m_profile_msp_s_regnum
;
10315 tdep
->m_profile_psp_s_regnum
= m_profile_psp_s_regnum
;
10318 arm_register_g_packet_guesses (gdbarch
);
10321 switch (info
.byte_order_for_code
)
10323 case BFD_ENDIAN_BIG
:
10324 tdep
->arm_breakpoint
= arm_default_arm_be_breakpoint
;
10325 tdep
->arm_breakpoint_size
= sizeof (arm_default_arm_be_breakpoint
);
10326 tdep
->thumb_breakpoint
= arm_default_thumb_be_breakpoint
;
10327 tdep
->thumb_breakpoint_size
= sizeof (arm_default_thumb_be_breakpoint
);
10331 case BFD_ENDIAN_LITTLE
:
10332 tdep
->arm_breakpoint
= arm_default_arm_le_breakpoint
;
10333 tdep
->arm_breakpoint_size
= sizeof (arm_default_arm_le_breakpoint
);
10334 tdep
->thumb_breakpoint
= arm_default_thumb_le_breakpoint
;
10335 tdep
->thumb_breakpoint_size
= sizeof (arm_default_thumb_le_breakpoint
);
10340 internal_error (__FILE__
, __LINE__
,
10341 _("arm_gdbarch_init: bad byte order for float format"));
10344 /* On ARM targets char defaults to unsigned. */
10345 set_gdbarch_char_signed (gdbarch
, 0);
10347 /* wchar_t is unsigned under the AAPCS. */
10348 if (tdep
->arm_abi
== ARM_ABI_AAPCS
)
10349 set_gdbarch_wchar_signed (gdbarch
, 0);
10351 set_gdbarch_wchar_signed (gdbarch
, 1);
10353 /* Compute type alignment. */
10354 set_gdbarch_type_align (gdbarch
, arm_type_align
);
10356 /* Note: for displaced stepping, this includes the breakpoint, and one word
10357 of additional scratch space. This setting isn't used for anything beside
10358 displaced stepping at present. */
10359 set_gdbarch_max_insn_length (gdbarch
, 4 * ARM_DISPLACED_MODIFIED_INSNS
);
10361 /* This should be low enough for everything. */
10362 tdep
->lowest_pc
= 0x20;
10363 tdep
->jb_pc
= -1; /* Longjump support not enabled by default. */
10365 /* The default, for both APCS and AAPCS, is to return small
10366 structures in registers. */
10367 tdep
->struct_return
= reg_struct_return
;
10369 set_gdbarch_push_dummy_call (gdbarch
, arm_push_dummy_call
);
10370 set_gdbarch_frame_align (gdbarch
, arm_frame_align
);
10373 set_gdbarch_code_of_frame_writable (gdbarch
, arm_code_of_frame_writable
);
10375 set_gdbarch_write_pc (gdbarch
, arm_write_pc
);
10377 frame_base_set_default (gdbarch
, &arm_normal_base
);
10379 /* Address manipulation. */
10380 set_gdbarch_addr_bits_remove (gdbarch
, arm_addr_bits_remove
);
10382 /* Advance PC across function entry code. */
10383 set_gdbarch_skip_prologue (gdbarch
, arm_skip_prologue
);
10385 /* Detect whether PC is at a point where the stack has been destroyed. */
10386 set_gdbarch_stack_frame_destroyed_p (gdbarch
, arm_stack_frame_destroyed_p
);
10388 /* Skip trampolines. */
10389 set_gdbarch_skip_trampoline_code (gdbarch
, arm_skip_stub
);
10391 /* The stack grows downward. */
10392 set_gdbarch_inner_than (gdbarch
, core_addr_lessthan
);
10394 /* Breakpoint manipulation. */
10395 set_gdbarch_breakpoint_kind_from_pc (gdbarch
, arm_breakpoint_kind_from_pc
);
10396 set_gdbarch_sw_breakpoint_from_kind (gdbarch
, arm_sw_breakpoint_from_kind
);
10397 set_gdbarch_breakpoint_kind_from_current_state (gdbarch
,
10398 arm_breakpoint_kind_from_current_state
);
10400 /* Information about registers, etc. */
10401 set_gdbarch_sp_regnum (gdbarch
, ARM_SP_REGNUM
);
10402 set_gdbarch_pc_regnum (gdbarch
, ARM_PC_REGNUM
);
10403 set_gdbarch_num_regs (gdbarch
, register_count
);
10404 set_gdbarch_register_type (gdbarch
, arm_register_type
);
10405 set_gdbarch_register_reggroup_p (gdbarch
, arm_register_reggroup_p
);
10407 /* This "info float" is FPA-specific. Use the generic version if we
10408 do not have FPA. */
10409 if (tdep
->have_fpa_registers
)
10410 set_gdbarch_print_float_info (gdbarch
, arm_print_float_info
);
10412 /* Internal <-> external register number maps. */
10413 set_gdbarch_dwarf2_reg_to_regnum (gdbarch
, arm_dwarf_reg_to_regnum
);
10414 set_gdbarch_register_sim_regno (gdbarch
, arm_register_sim_regno
);
10416 set_gdbarch_register_name (gdbarch
, arm_register_name
);
10418 /* Returning results. */
10419 set_gdbarch_return_value (gdbarch
, arm_return_value
);
10422 set_gdbarch_print_insn (gdbarch
, gdb_print_insn_arm
);
10424 /* Minsymbol frobbing. */
10425 set_gdbarch_elf_make_msymbol_special (gdbarch
, arm_elf_make_msymbol_special
);
10426 set_gdbarch_coff_make_msymbol_special (gdbarch
,
10427 arm_coff_make_msymbol_special
);
10428 set_gdbarch_record_special_symbol (gdbarch
, arm_record_special_symbol
);
10430 /* Thumb-2 IT block support. */
10431 set_gdbarch_adjust_breakpoint_address (gdbarch
,
10432 arm_adjust_breakpoint_address
);
10434 /* Virtual tables. */
10435 set_gdbarch_vbit_in_delta (gdbarch
, 1);
10437 /* Hook in the ABI-specific overrides, if they have been registered. */
10438 gdbarch_init_osabi (info
, gdbarch
);
10440 dwarf2_frame_set_init_reg (gdbarch
, arm_dwarf2_frame_init_reg
);
10442 /* Add some default predicates. */
10444 frame_unwind_append_unwinder (gdbarch
, &arm_m_exception_unwind
);
10445 frame_unwind_append_unwinder (gdbarch
, &arm_stub_unwind
);
10446 dwarf2_append_unwinders (gdbarch
);
10447 frame_unwind_append_unwinder (gdbarch
, &arm_exidx_unwind
);
10448 frame_unwind_append_unwinder (gdbarch
, &arm_epilogue_frame_unwind
);
10449 frame_unwind_append_unwinder (gdbarch
, &arm_prologue_unwind
);
10451 /* Now we have tuned the configuration, set a few final things,
10452 based on what the OS ABI has told us. */
10454 /* If the ABI is not otherwise marked, assume the old GNU APCS. EABI
10455 binaries are always marked. */
10456 if (tdep
->arm_abi
== ARM_ABI_AUTO
)
10457 tdep
->arm_abi
= ARM_ABI_APCS
;
10459 /* Watchpoints are not steppable. */
10460 set_gdbarch_have_nonsteppable_watchpoint (gdbarch
, 1);
10462 /* We used to default to FPA for generic ARM, but almost nobody
10463 uses that now, and we now provide a way for the user to force
10464 the model. So default to the most useful variant. */
10465 if (tdep
->fp_model
== ARM_FLOAT_AUTO
)
10466 tdep
->fp_model
= ARM_FLOAT_SOFT_FPA
;
10468 if (tdep
->jb_pc
>= 0)
10469 set_gdbarch_get_longjmp_target (gdbarch
, arm_get_longjmp_target
);
10471 /* Floating point sizes and format. */
10472 set_gdbarch_float_format (gdbarch
, floatformats_ieee_single
);
10473 if (tdep
->fp_model
== ARM_FLOAT_SOFT_FPA
|| tdep
->fp_model
== ARM_FLOAT_FPA
)
10475 set_gdbarch_double_format
10476 (gdbarch
, floatformats_ieee_double_littlebyte_bigword
);
10477 set_gdbarch_long_double_format
10478 (gdbarch
, floatformats_ieee_double_littlebyte_bigword
);
10482 set_gdbarch_double_format (gdbarch
, floatformats_ieee_double
);
10483 set_gdbarch_long_double_format (gdbarch
, floatformats_ieee_double
);
10486 /* Hook used to decorate frames with signed return addresses, only available
10487 for ARMv8.1-m PACBTI. */
10488 if (is_m
&& have_pacbti
)
10489 set_gdbarch_get_pc_address_flags (gdbarch
, arm_get_pc_address_flags
);
10491 if (tdesc_data
!= nullptr)
10493 set_tdesc_pseudo_register_name (gdbarch
, arm_register_name
);
10495 tdesc_use_registers (gdbarch
, tdesc
, std::move (tdesc_data
));
10496 register_count
= gdbarch_num_regs (gdbarch
);
10498 /* Override tdesc_register_type to adjust the types of VFP
10499 registers for NEON. */
10500 set_gdbarch_register_type (gdbarch
, arm_register_type
);
10503 /* Initialize the pseudo register data. */
10504 int num_pseudos
= 0;
10505 if (tdep
->have_s_pseudos
)
10507 /* VFP single precision pseudo registers (S0~S31). */
10508 tdep
->s_pseudo_base
= register_count
;
10509 tdep
->s_pseudo_count
= 32;
10510 num_pseudos
+= tdep
->s_pseudo_count
;
10512 if (tdep
->have_q_pseudos
)
10514 /* NEON quad precision pseudo registers (Q0~Q15). */
10515 tdep
->q_pseudo_base
= register_count
+ num_pseudos
;
10518 tdep
->q_pseudo_count
= 16;
10520 tdep
->q_pseudo_count
= ARM_MVE_NUM_Q_REGS
;
10522 num_pseudos
+= tdep
->q_pseudo_count
;
10526 /* Do we have any MVE pseudo registers? */
10529 tdep
->mve_pseudo_base
= register_count
+ num_pseudos
;
10530 tdep
->mve_pseudo_count
= 1;
10531 num_pseudos
+= tdep
->mve_pseudo_count
;
10534 /* Do we have any ARMv8.1-m PACBTI pseudo registers. */
10537 tdep
->pacbti_pseudo_base
= register_count
+ num_pseudos
;
10538 tdep
->pacbti_pseudo_count
= 1;
10539 num_pseudos
+= tdep
->pacbti_pseudo_count
;
10542 /* Set some pseudo register hooks, if we have pseudo registers. */
10543 if (tdep
->have_s_pseudos
|| have_mve
|| have_pacbti
)
10545 set_gdbarch_num_pseudo_regs (gdbarch
, num_pseudos
);
10546 set_gdbarch_pseudo_register_read (gdbarch
, arm_pseudo_read
);
10547 set_gdbarch_pseudo_register_write (gdbarch
, arm_pseudo_write
);
10550 /* Add standard register aliases. We add aliases even for those
10551 names which are used by the current architecture - it's simpler,
10552 and does no harm, since nothing ever lists user registers. */
10553 for (i
= 0; i
< ARRAY_SIZE (arm_register_aliases
); i
++)
10554 user_reg_add (gdbarch
, arm_register_aliases
[i
].name
,
10555 value_of_arm_user_reg
, &arm_register_aliases
[i
].regnum
);
10557 set_gdbarch_disassembler_options (gdbarch
, &arm_disassembler_options
);
10558 set_gdbarch_valid_disassembler_options (gdbarch
, disassembler_options_arm ());
10560 set_gdbarch_gnu_triplet_regexp (gdbarch
, arm_gnu_triplet_regexp
);
10566 arm_dump_tdep (struct gdbarch
*gdbarch
, struct ui_file
*file
)
10568 arm_gdbarch_tdep
*tdep
= (arm_gdbarch_tdep
*) gdbarch_tdep (gdbarch
);
10573 gdb_printf (file
, _("arm_dump_tdep: fp_model = %i\n"),
10574 (int) tdep
->fp_model
);
10575 gdb_printf (file
, _("arm_dump_tdep: have_fpa_registers = %i\n"),
10576 (int) tdep
->have_fpa_registers
);
10577 gdb_printf (file
, _("arm_dump_tdep: have_wmmx_registers = %i\n"),
10578 (int) tdep
->have_wmmx_registers
);
10579 gdb_printf (file
, _("arm_dump_tdep: vfp_register_count = %i\n"),
10580 (int) tdep
->vfp_register_count
);
10581 gdb_printf (file
, _("arm_dump_tdep: have_s_pseudos = %s\n"),
10582 tdep
->have_s_pseudos
? "true" : "false");
10583 gdb_printf (file
, _("arm_dump_tdep: s_pseudo_base = %i\n"),
10584 (int) tdep
->s_pseudo_base
);
10585 gdb_printf (file
, _("arm_dump_tdep: s_pseudo_count = %i\n"),
10586 (int) tdep
->s_pseudo_count
);
10587 gdb_printf (file
, _("arm_dump_tdep: have_q_pseudos = %s\n"),
10588 tdep
->have_q_pseudos
? "true" : "false");
10589 gdb_printf (file
, _("arm_dump_tdep: q_pseudo_base = %i\n"),
10590 (int) tdep
->q_pseudo_base
);
10591 gdb_printf (file
, _("arm_dump_tdep: q_pseudo_count = %i\n"),
10592 (int) tdep
->q_pseudo_count
);
10593 gdb_printf (file
, _("arm_dump_tdep: have_neon = %i\n"),
10594 (int) tdep
->have_neon
);
10595 gdb_printf (file
, _("arm_dump_tdep: have_mve = %s\n"),
10596 tdep
->have_mve
? "yes" : "no");
10597 gdb_printf (file
, _("arm_dump_tdep: mve_vpr_regnum = %i\n"),
10598 tdep
->mve_vpr_regnum
);
10599 gdb_printf (file
, _("arm_dump_tdep: mve_pseudo_base = %i\n"),
10600 tdep
->mve_pseudo_base
);
10601 gdb_printf (file
, _("arm_dump_tdep: mve_pseudo_count = %i\n"),
10602 tdep
->mve_pseudo_count
);
10603 gdb_printf (file
, _("arm_dump_tdep: m_profile_msp_regnum = %i\n"),
10604 tdep
->m_profile_msp_regnum
);
10605 gdb_printf (file
, _("arm_dump_tdep: m_profile_psp_regnum = %i\n"),
10606 tdep
->m_profile_psp_regnum
);
10607 gdb_printf (file
, _("arm_dump_tdep: m_profile_msp_ns_regnum = %i\n"),
10608 tdep
->m_profile_msp_ns_regnum
);
10609 gdb_printf (file
, _("arm_dump_tdep: m_profile_psp_ns_regnum = %i\n"),
10610 tdep
->m_profile_psp_ns_regnum
);
10611 gdb_printf (file
, _("arm_dump_tdep: m_profile_msp_s_regnum = %i\n"),
10612 tdep
->m_profile_msp_s_regnum
);
10613 gdb_printf (file
, _("arm_dump_tdep: m_profile_psp_s_regnum = %i\n"),
10614 tdep
->m_profile_psp_s_regnum
);
10615 gdb_printf (file
, _("arm_dump_tdep: Lowest pc = 0x%lx\n"),
10616 (unsigned long) tdep
->lowest_pc
);
10617 gdb_printf (file
, _("arm_dump_tdep: have_pacbti = %s\n"),
10618 tdep
->have_pacbti
? "yes" : "no");
10619 gdb_printf (file
, _("arm_dump_tdep: pacbti_pseudo_base = %i\n"),
10620 tdep
->pacbti_pseudo_base
);
10621 gdb_printf (file
, _("arm_dump_tdep: pacbti_pseudo_count = %i\n"),
10622 tdep
->pacbti_pseudo_count
);
10623 gdb_printf (file
, _("arm_dump_tdep: is_m = %s\n"),
10624 tdep
->is_m
? "yes" : "no");
10628 namespace selftests
10630 static void arm_record_test (void);
10631 static void arm_analyze_prologue_test ();
10635 void _initialize_arm_tdep ();
10637 _initialize_arm_tdep ()
10641 char regdesc
[1024], *rdptr
= regdesc
;
10642 size_t rest
= sizeof (regdesc
);
10644 gdbarch_register (bfd_arch_arm
, arm_gdbarch_init
, arm_dump_tdep
);
10646 /* Add ourselves to objfile event chain. */
10647 gdb::observers::new_objfile
.attach (arm_exidx_new_objfile
, "arm-tdep");
10649 /* Register an ELF OS ABI sniffer for ARM binaries. */
10650 gdbarch_register_osabi_sniffer (bfd_arch_arm
,
10651 bfd_target_elf_flavour
,
10652 arm_elf_osabi_sniffer
);
10654 /* Add root prefix command for all "set arm"/"show arm" commands. */
10655 add_setshow_prefix_cmd ("arm", no_class
,
10656 _("Various ARM-specific commands."),
10657 _("Various ARM-specific commands."),
10658 &setarmcmdlist
, &showarmcmdlist
,
10659 &setlist
, &showlist
);
10661 arm_disassembler_options
= xstrdup ("reg-names-std");
10662 const disasm_options_t
*disasm_options
10663 = &disassembler_options_arm ()->options
;
10664 int num_disassembly_styles
= 0;
10665 for (i
= 0; disasm_options
->name
[i
] != NULL
; i
++)
10666 if (startswith (disasm_options
->name
[i
], "reg-names-"))
10667 num_disassembly_styles
++;
10669 /* Initialize the array that will be passed to add_setshow_enum_cmd(). */
10670 valid_disassembly_styles
= XNEWVEC (const char *,
10671 num_disassembly_styles
+ 1);
10672 for (i
= j
= 0; disasm_options
->name
[i
] != NULL
; i
++)
10673 if (startswith (disasm_options
->name
[i
], "reg-names-"))
10675 size_t offset
= strlen ("reg-names-");
10676 const char *style
= disasm_options
->name
[i
];
10677 valid_disassembly_styles
[j
++] = &style
[offset
];
10678 if (strcmp (&style
[offset
], "std") == 0)
10679 disassembly_style
= &style
[offset
];
10680 length
= snprintf (rdptr
, rest
, "%s - %s\n", &style
[offset
],
10681 disasm_options
->description
[i
]);
10685 /* Mark the end of valid options. */
10686 valid_disassembly_styles
[num_disassembly_styles
] = NULL
;
10688 /* Create the help text. */
10689 std::string helptext
= string_printf ("%s%s%s",
10690 _("The valid values are:\n"),
10692 _("The default is \"std\"."));
10694 add_setshow_enum_cmd("disassembler", no_class
,
10695 valid_disassembly_styles
, &disassembly_style
,
10696 _("Set the disassembly style."),
10697 _("Show the disassembly style."),
10699 set_disassembly_style_sfunc
,
10700 show_disassembly_style_sfunc
,
10701 &setarmcmdlist
, &showarmcmdlist
);
10703 add_setshow_boolean_cmd ("apcs32", no_class
, &arm_apcs_32
,
10704 _("Set usage of ARM 32-bit mode."),
10705 _("Show usage of ARM 32-bit mode."),
10706 _("When off, a 26-bit PC will be used."),
10708 NULL
, /* FIXME: i18n: Usage of ARM 32-bit
10710 &setarmcmdlist
, &showarmcmdlist
);
10712 /* Add a command to allow the user to force the FPU model. */
10713 add_setshow_enum_cmd ("fpu", no_class
, fp_model_strings
, ¤t_fp_model
,
10714 _("Set the floating point type."),
10715 _("Show the floating point type."),
10716 _("auto - Determine the FP typefrom the OS-ABI.\n\
10717 softfpa - Software FP, mixed-endian doubles on little-endian ARMs.\n\
10718 fpa - FPA co-processor (GCC compiled).\n\
10719 softvfp - Software FP with pure-endian doubles.\n\
10720 vfp - VFP co-processor."),
10721 set_fp_model_sfunc
, show_fp_model
,
10722 &setarmcmdlist
, &showarmcmdlist
);
10724 /* Add a command to allow the user to force the ABI. */
10725 add_setshow_enum_cmd ("abi", class_support
, arm_abi_strings
, &arm_abi_string
,
10727 _("Show the ABI."),
10728 NULL
, arm_set_abi
, arm_show_abi
,
10729 &setarmcmdlist
, &showarmcmdlist
);
10731 /* Add two commands to allow the user to force the assumed
10733 add_setshow_enum_cmd ("fallback-mode", class_support
,
10734 arm_mode_strings
, &arm_fallback_mode_string
,
10735 _("Set the mode assumed when symbols are unavailable."),
10736 _("Show the mode assumed when symbols are unavailable."),
10737 NULL
, NULL
, arm_show_fallback_mode
,
10738 &setarmcmdlist
, &showarmcmdlist
);
10739 add_setshow_enum_cmd ("force-mode", class_support
,
10740 arm_mode_strings
, &arm_force_mode_string
,
10741 _("Set the mode assumed even when symbols are available."),
10742 _("Show the mode assumed even when symbols are available."),
10743 NULL
, NULL
, arm_show_force_mode
,
10744 &setarmcmdlist
, &showarmcmdlist
);
10746 /* Add a command to stop triggering security exceptions when
10747 unwinding exception stacks. */
10748 add_setshow_boolean_cmd ("unwind-secure-frames", no_class
, &arm_unwind_secure_frames
,
10749 _("Set usage of non-secure to secure exception stack unwinding."),
10750 _("Show usage of non-secure to secure exception stack unwinding."),
10751 _("When on, the debugger can trigger memory access traps."),
10752 NULL
, arm_show_unwind_secure_frames
,
10753 &setarmcmdlist
, &showarmcmdlist
);
10755 /* Debugging flag. */
10756 add_setshow_boolean_cmd ("arm", class_maintenance
, &arm_debug
,
10757 _("Set ARM debugging."),
10758 _("Show ARM debugging."),
10759 _("When on, arm-specific debugging is enabled."),
10761 NULL
, /* FIXME: i18n: "ARM debugging is %s. */
10762 &setdebuglist
, &showdebuglist
);
10765 selftests::register_test ("arm-record", selftests::arm_record_test
);
10766 selftests::register_test ("arm_analyze_prologue", selftests::arm_analyze_prologue_test
);
10771 /* ARM-reversible process record data structures. */
10773 #define ARM_INSN_SIZE_BYTES 4
10774 #define THUMB_INSN_SIZE_BYTES 2
10775 #define THUMB2_INSN_SIZE_BYTES 4
10778 /* Position of the bit within a 32-bit ARM instruction
10779 that defines whether the instruction is a load or store. */
10780 #define INSN_S_L_BIT_NUM 20
10782 #define REG_ALLOC(REGS, LENGTH, RECORD_BUF) \
10785 unsigned int reg_len = LENGTH; \
10788 REGS = XNEWVEC (uint32_t, reg_len); \
10789 memcpy(®S[0], &RECORD_BUF[0], sizeof(uint32_t)*LENGTH); \
10794 #define MEM_ALLOC(MEMS, LENGTH, RECORD_BUF) \
10797 unsigned int mem_len = LENGTH; \
10800 MEMS = XNEWVEC (struct arm_mem_r, mem_len); \
10801 memcpy(&MEMS->len, &RECORD_BUF[0], \
10802 sizeof(struct arm_mem_r) * LENGTH); \
10807 /* Checks whether insn is already recorded or yet to be decoded. (boolean expression). */
10808 #define INSN_RECORDED(ARM_RECORD) \
10809 (0 != (ARM_RECORD)->reg_rec_count || 0 != (ARM_RECORD)->mem_rec_count)
10811 /* ARM memory record structure. */
10814 uint32_t len
; /* Record length. */
10815 uint32_t addr
; /* Memory address. */
10818 /* ARM instruction record contains opcode of current insn
10819 and execution state (before entry to decode_insn()),
10820 contains list of to-be-modified registers and
10821 memory blocks (on return from decode_insn()). */
10823 struct arm_insn_decode_record
10825 struct gdbarch
*gdbarch
;
10826 struct regcache
*regcache
;
10827 CORE_ADDR this_addr
; /* Address of the insn being decoded. */
10828 uint32_t arm_insn
; /* Should accommodate thumb. */
10829 uint32_t cond
; /* Condition code. */
10830 uint32_t opcode
; /* Insn opcode. */
10831 uint32_t decode
; /* Insn decode bits. */
10832 uint32_t mem_rec_count
; /* No of mem records. */
10833 uint32_t reg_rec_count
; /* No of reg records. */
10834 uint32_t *arm_regs
; /* Registers to be saved for this record. */
10835 struct arm_mem_r
*arm_mems
; /* Memory to be saved for this record. */
10839 /* Checks ARM SBZ and SBO mandatory fields. */
10842 sbo_sbz (uint32_t insn
, uint32_t bit_num
, uint32_t len
, uint32_t sbo
)
10844 uint32_t ones
= bits (insn
, bit_num
- 1, (bit_num
-1) + (len
- 1));
10863 enum arm_record_result
10865 ARM_RECORD_SUCCESS
= 0,
10866 ARM_RECORD_FAILURE
= 1
10869 enum arm_record_strx_t
10884 arm_record_strx (arm_insn_decode_record
*arm_insn_r
, uint32_t *record_buf
,
10885 uint32_t *record_buf_mem
, arm_record_strx_t str_type
)
10888 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
10889 ULONGEST u_regval
[2]= {0};
10891 uint32_t reg_src1
= 0, reg_src2
= 0;
10892 uint32_t immed_high
= 0, immed_low
= 0,offset_8
= 0, tgt_mem_addr
= 0;
10894 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 21, 24);
10895 arm_insn_r
->decode
= bits (arm_insn_r
->arm_insn
, 4, 7);
10897 if (14 == arm_insn_r
->opcode
|| 10 == arm_insn_r
->opcode
)
10899 /* 1) Handle misc store, immediate offset. */
10900 immed_low
= bits (arm_insn_r
->arm_insn
, 0, 3);
10901 immed_high
= bits (arm_insn_r
->arm_insn
, 8, 11);
10902 reg_src1
= bits (arm_insn_r
->arm_insn
, 16, 19);
10903 regcache_raw_read_unsigned (reg_cache
, reg_src1
,
10905 if (ARM_PC_REGNUM
== reg_src1
)
10907 /* If R15 was used as Rn, hence current PC+8. */
10908 u_regval
[0] = u_regval
[0] + 8;
10910 offset_8
= (immed_high
<< 4) | immed_low
;
10911 /* Calculate target store address. */
10912 if (14 == arm_insn_r
->opcode
)
10914 tgt_mem_addr
= u_regval
[0] + offset_8
;
10918 tgt_mem_addr
= u_regval
[0] - offset_8
;
10920 if (ARM_RECORD_STRH
== str_type
)
10922 record_buf_mem
[0] = 2;
10923 record_buf_mem
[1] = tgt_mem_addr
;
10924 arm_insn_r
->mem_rec_count
= 1;
10926 else if (ARM_RECORD_STRD
== str_type
)
10928 record_buf_mem
[0] = 4;
10929 record_buf_mem
[1] = tgt_mem_addr
;
10930 record_buf_mem
[2] = 4;
10931 record_buf_mem
[3] = tgt_mem_addr
+ 4;
10932 arm_insn_r
->mem_rec_count
= 2;
10935 else if (12 == arm_insn_r
->opcode
|| 8 == arm_insn_r
->opcode
)
10937 /* 2) Store, register offset. */
10939 reg_src1
= bits (arm_insn_r
->arm_insn
, 0, 3);
10941 reg_src2
= bits (arm_insn_r
->arm_insn
, 16, 19);
10942 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
10943 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
10944 if (15 == reg_src2
)
10946 /* If R15 was used as Rn, hence current PC+8. */
10947 u_regval
[0] = u_regval
[0] + 8;
10949 /* Calculate target store address, Rn +/- Rm, register offset. */
10950 if (12 == arm_insn_r
->opcode
)
10952 tgt_mem_addr
= u_regval
[0] + u_regval
[1];
10956 tgt_mem_addr
= u_regval
[1] - u_regval
[0];
10958 if (ARM_RECORD_STRH
== str_type
)
10960 record_buf_mem
[0] = 2;
10961 record_buf_mem
[1] = tgt_mem_addr
;
10962 arm_insn_r
->mem_rec_count
= 1;
10964 else if (ARM_RECORD_STRD
== str_type
)
10966 record_buf_mem
[0] = 4;
10967 record_buf_mem
[1] = tgt_mem_addr
;
10968 record_buf_mem
[2] = 4;
10969 record_buf_mem
[3] = tgt_mem_addr
+ 4;
10970 arm_insn_r
->mem_rec_count
= 2;
10973 else if (11 == arm_insn_r
->opcode
|| 15 == arm_insn_r
->opcode
10974 || 2 == arm_insn_r
->opcode
|| 6 == arm_insn_r
->opcode
)
10976 /* 3) Store, immediate pre-indexed. */
10977 /* 5) Store, immediate post-indexed. */
10978 immed_low
= bits (arm_insn_r
->arm_insn
, 0, 3);
10979 immed_high
= bits (arm_insn_r
->arm_insn
, 8, 11);
10980 offset_8
= (immed_high
<< 4) | immed_low
;
10981 reg_src1
= bits (arm_insn_r
->arm_insn
, 16, 19);
10982 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
10983 /* Calculate target store address, Rn +/- Rm, register offset. */
10984 if (15 == arm_insn_r
->opcode
|| 6 == arm_insn_r
->opcode
)
10986 tgt_mem_addr
= u_regval
[0] + offset_8
;
10990 tgt_mem_addr
= u_regval
[0] - offset_8
;
10992 if (ARM_RECORD_STRH
== str_type
)
10994 record_buf_mem
[0] = 2;
10995 record_buf_mem
[1] = tgt_mem_addr
;
10996 arm_insn_r
->mem_rec_count
= 1;
10998 else if (ARM_RECORD_STRD
== str_type
)
11000 record_buf_mem
[0] = 4;
11001 record_buf_mem
[1] = tgt_mem_addr
;
11002 record_buf_mem
[2] = 4;
11003 record_buf_mem
[3] = tgt_mem_addr
+ 4;
11004 arm_insn_r
->mem_rec_count
= 2;
11006 /* Record Rn also as it changes. */
11007 *(record_buf
) = bits (arm_insn_r
->arm_insn
, 16, 19);
11008 arm_insn_r
->reg_rec_count
= 1;
11010 else if (9 == arm_insn_r
->opcode
|| 13 == arm_insn_r
->opcode
11011 || 0 == arm_insn_r
->opcode
|| 4 == arm_insn_r
->opcode
)
11013 /* 4) Store, register pre-indexed. */
11014 /* 6) Store, register post -indexed. */
11015 reg_src1
= bits (arm_insn_r
->arm_insn
, 0, 3);
11016 reg_src2
= bits (arm_insn_r
->arm_insn
, 16, 19);
11017 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
11018 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
11019 /* Calculate target store address, Rn +/- Rm, register offset. */
11020 if (13 == arm_insn_r
->opcode
|| 4 == arm_insn_r
->opcode
)
11022 tgt_mem_addr
= u_regval
[0] + u_regval
[1];
11026 tgt_mem_addr
= u_regval
[1] - u_regval
[0];
11028 if (ARM_RECORD_STRH
== str_type
)
11030 record_buf_mem
[0] = 2;
11031 record_buf_mem
[1] = tgt_mem_addr
;
11032 arm_insn_r
->mem_rec_count
= 1;
11034 else if (ARM_RECORD_STRD
== str_type
)
11036 record_buf_mem
[0] = 4;
11037 record_buf_mem
[1] = tgt_mem_addr
;
11038 record_buf_mem
[2] = 4;
11039 record_buf_mem
[3] = tgt_mem_addr
+ 4;
11040 arm_insn_r
->mem_rec_count
= 2;
11042 /* Record Rn also as it changes. */
11043 *(record_buf
) = bits (arm_insn_r
->arm_insn
, 16, 19);
11044 arm_insn_r
->reg_rec_count
= 1;
11049 /* Handling ARM extension space insns. */
11052 arm_record_extension_space (arm_insn_decode_record
*arm_insn_r
)
11054 int ret
= 0; /* Return value: -1:record failure ; 0:success */
11055 uint32_t opcode1
= 0, opcode2
= 0, insn_op1
= 0;
11056 uint32_t record_buf
[8], record_buf_mem
[8];
11057 uint32_t reg_src1
= 0;
11058 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
11059 ULONGEST u_regval
= 0;
11061 gdb_assert (!INSN_RECORDED(arm_insn_r
));
11062 /* Handle unconditional insn extension space. */
11064 opcode1
= bits (arm_insn_r
->arm_insn
, 20, 27);
11065 opcode2
= bits (arm_insn_r
->arm_insn
, 4, 7);
11066 if (arm_insn_r
->cond
)
11068 /* PLD has no affect on architectural state, it just affects
11070 if (5 == ((opcode1
& 0xE0) >> 5))
11073 record_buf
[0] = ARM_PS_REGNUM
;
11074 record_buf
[1] = ARM_LR_REGNUM
;
11075 arm_insn_r
->reg_rec_count
= 2;
11077 /* STC2, LDC2, MCR2, MRC2, CDP2: <TBD>, co-processor insn. */
11081 opcode1
= bits (arm_insn_r
->arm_insn
, 25, 27);
11082 if (3 == opcode1
&& bit (arm_insn_r
->arm_insn
, 4))
11085 /* Undefined instruction on ARM V5; need to handle if later
11086 versions define it. */
11089 opcode1
= bits (arm_insn_r
->arm_insn
, 24, 27);
11090 opcode2
= bits (arm_insn_r
->arm_insn
, 4, 7);
11091 insn_op1
= bits (arm_insn_r
->arm_insn
, 20, 23);
11093 /* Handle arithmetic insn extension space. */
11094 if (!opcode1
&& 9 == opcode2
&& 1 != arm_insn_r
->cond
11095 && !INSN_RECORDED(arm_insn_r
))
11097 /* Handle MLA(S) and MUL(S). */
11098 if (in_inclusive_range (insn_op1
, 0U, 3U))
11100 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11101 record_buf
[1] = ARM_PS_REGNUM
;
11102 arm_insn_r
->reg_rec_count
= 2;
11104 else if (in_inclusive_range (insn_op1
, 4U, 15U))
11106 /* Handle SMLAL(S), SMULL(S), UMLAL(S), UMULL(S). */
11107 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 16, 19);
11108 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 12, 15);
11109 record_buf
[2] = ARM_PS_REGNUM
;
11110 arm_insn_r
->reg_rec_count
= 3;
11114 opcode1
= bits (arm_insn_r
->arm_insn
, 26, 27);
11115 opcode2
= bits (arm_insn_r
->arm_insn
, 23, 24);
11116 insn_op1
= bits (arm_insn_r
->arm_insn
, 21, 22);
11118 /* Handle control insn extension space. */
11120 if (!opcode1
&& 2 == opcode2
&& !bit (arm_insn_r
->arm_insn
, 20)
11121 && 1 != arm_insn_r
->cond
&& !INSN_RECORDED(arm_insn_r
))
11123 if (!bit (arm_insn_r
->arm_insn
,25))
11125 if (!bits (arm_insn_r
->arm_insn
, 4, 7))
11127 if ((0 == insn_op1
) || (2 == insn_op1
))
11130 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11131 arm_insn_r
->reg_rec_count
= 1;
11133 else if (1 == insn_op1
)
11135 /* CSPR is going to be changed. */
11136 record_buf
[0] = ARM_PS_REGNUM
;
11137 arm_insn_r
->reg_rec_count
= 1;
11139 else if (3 == insn_op1
)
11141 /* SPSR is going to be changed. */
11142 /* We need to get SPSR value, which is yet to be done. */
11146 else if (1 == bits (arm_insn_r
->arm_insn
, 4, 7))
11151 record_buf
[0] = ARM_PS_REGNUM
;
11152 arm_insn_r
->reg_rec_count
= 1;
11154 else if (3 == insn_op1
)
11157 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11158 arm_insn_r
->reg_rec_count
= 1;
11161 else if (3 == bits (arm_insn_r
->arm_insn
, 4, 7))
11164 record_buf
[0] = ARM_PS_REGNUM
;
11165 record_buf
[1] = ARM_LR_REGNUM
;
11166 arm_insn_r
->reg_rec_count
= 2;
11168 else if (5 == bits (arm_insn_r
->arm_insn
, 4, 7))
11170 /* QADD, QSUB, QDADD, QDSUB */
11171 record_buf
[0] = ARM_PS_REGNUM
;
11172 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 12, 15);
11173 arm_insn_r
->reg_rec_count
= 2;
11175 else if (7 == bits (arm_insn_r
->arm_insn
, 4, 7))
11178 record_buf
[0] = ARM_PS_REGNUM
;
11179 record_buf
[1] = ARM_LR_REGNUM
;
11180 arm_insn_r
->reg_rec_count
= 2;
11182 /* Save SPSR also;how? */
11185 else if(8 == bits (arm_insn_r
->arm_insn
, 4, 7)
11186 || 10 == bits (arm_insn_r
->arm_insn
, 4, 7)
11187 || 12 == bits (arm_insn_r
->arm_insn
, 4, 7)
11188 || 14 == bits (arm_insn_r
->arm_insn
, 4, 7)
11191 if (0 == insn_op1
|| 1 == insn_op1
)
11193 /* SMLA<x><y>, SMLAW<y>, SMULW<y>. */
11194 /* We dont do optimization for SMULW<y> where we
11196 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11197 record_buf
[1] = ARM_PS_REGNUM
;
11198 arm_insn_r
->reg_rec_count
= 2;
11200 else if (2 == insn_op1
)
11203 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11204 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 16, 19);
11205 arm_insn_r
->reg_rec_count
= 2;
11207 else if (3 == insn_op1
)
11210 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11211 arm_insn_r
->reg_rec_count
= 1;
11217 /* MSR : immediate form. */
11220 /* CSPR is going to be changed. */
11221 record_buf
[0] = ARM_PS_REGNUM
;
11222 arm_insn_r
->reg_rec_count
= 1;
11224 else if (3 == insn_op1
)
11226 /* SPSR is going to be changed. */
11227 /* we need to get SPSR value, which is yet to be done */
11233 opcode1
= bits (arm_insn_r
->arm_insn
, 25, 27);
11234 opcode2
= bits (arm_insn_r
->arm_insn
, 20, 24);
11235 insn_op1
= bits (arm_insn_r
->arm_insn
, 5, 6);
11237 /* Handle load/store insn extension space. */
11239 if (!opcode1
&& bit (arm_insn_r
->arm_insn
, 7)
11240 && bit (arm_insn_r
->arm_insn
, 4) && 1 != arm_insn_r
->cond
11241 && !INSN_RECORDED(arm_insn_r
))
11246 /* These insn, changes register and memory as well. */
11247 /* SWP or SWPB insn. */
11248 /* Get memory address given by Rn. */
11249 reg_src1
= bits (arm_insn_r
->arm_insn
, 16, 19);
11250 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
);
11251 /* SWP insn ?, swaps word. */
11252 if (8 == arm_insn_r
->opcode
)
11254 record_buf_mem
[0] = 4;
11258 /* SWPB insn, swaps only byte. */
11259 record_buf_mem
[0] = 1;
11261 record_buf_mem
[1] = u_regval
;
11262 arm_insn_r
->mem_rec_count
= 1;
11263 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11264 arm_insn_r
->reg_rec_count
= 1;
11266 else if (1 == insn_op1
&& !bit (arm_insn_r
->arm_insn
, 20))
11269 arm_record_strx(arm_insn_r
, &record_buf
[0], &record_buf_mem
[0],
11272 else if (2 == insn_op1
&& !bit (arm_insn_r
->arm_insn
, 20))
11275 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11276 record_buf
[1] = record_buf
[0] + 1;
11277 arm_insn_r
->reg_rec_count
= 2;
11279 else if (3 == insn_op1
&& !bit (arm_insn_r
->arm_insn
, 20))
11282 arm_record_strx(arm_insn_r
, &record_buf
[0], &record_buf_mem
[0],
11285 else if (bit (arm_insn_r
->arm_insn
, 20) && insn_op1
<= 3)
11287 /* LDRH, LDRSB, LDRSH. */
11288 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11289 arm_insn_r
->reg_rec_count
= 1;
11294 opcode1
= bits (arm_insn_r
->arm_insn
, 23, 27);
11295 if (24 == opcode1
&& bit (arm_insn_r
->arm_insn
, 21)
11296 && !INSN_RECORDED(arm_insn_r
))
11299 /* Handle coprocessor insn extension space. */
11302 /* To be done for ARMv5 and later; as of now we return -1. */
11306 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11307 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
11312 /* Handling opcode 000 insns. */
11315 arm_record_data_proc_misc_ld_str (arm_insn_decode_record
*arm_insn_r
)
11317 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
11318 uint32_t record_buf
[8], record_buf_mem
[8];
11319 ULONGEST u_regval
[2] = {0};
11321 uint32_t reg_src1
= 0;
11322 uint32_t opcode1
= 0;
11324 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 21, 24);
11325 arm_insn_r
->decode
= bits (arm_insn_r
->arm_insn
, 4, 7);
11326 opcode1
= bits (arm_insn_r
->arm_insn
, 20, 24);
11328 if (!((opcode1
& 0x19) == 0x10))
11330 /* Data-processing (register) and Data-processing (register-shifted
11332 /* Out of 11 shifter operands mode, all the insn modifies destination
11333 register, which is specified by 13-16 decode. */
11334 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11335 record_buf
[1] = ARM_PS_REGNUM
;
11336 arm_insn_r
->reg_rec_count
= 2;
11338 else if ((arm_insn_r
->decode
< 8) && ((opcode1
& 0x19) == 0x10))
11340 /* Miscellaneous instructions */
11342 if (3 == arm_insn_r
->decode
&& 0x12 == opcode1
11343 && sbo_sbz (arm_insn_r
->arm_insn
, 9, 12, 1))
11345 /* Handle BLX, branch and link/exchange. */
11346 if (9 == arm_insn_r
->opcode
)
11348 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm,
11349 and R14 stores the return address. */
11350 record_buf
[0] = ARM_PS_REGNUM
;
11351 record_buf
[1] = ARM_LR_REGNUM
;
11352 arm_insn_r
->reg_rec_count
= 2;
11355 else if (7 == arm_insn_r
->decode
&& 0x12 == opcode1
)
11357 /* Handle enhanced software breakpoint insn, BKPT. */
11358 /* CPSR is changed to be executed in ARM state, disabling normal
11359 interrupts, entering abort mode. */
11360 /* According to high vector configuration PC is set. */
11361 /* user hit breakpoint and type reverse, in
11362 that case, we need to go back with previous CPSR and
11363 Program Counter. */
11364 record_buf
[0] = ARM_PS_REGNUM
;
11365 record_buf
[1] = ARM_LR_REGNUM
;
11366 arm_insn_r
->reg_rec_count
= 2;
11368 /* Save SPSR also; how? */
11371 else if (1 == arm_insn_r
->decode
&& 0x12 == opcode1
11372 && sbo_sbz (arm_insn_r
->arm_insn
, 9, 12, 1))
11374 /* Handle BX, branch and link/exchange. */
11375 /* Branch is chosen by setting T bit of CSPR, bitp[0] of Rm. */
11376 record_buf
[0] = ARM_PS_REGNUM
;
11377 arm_insn_r
->reg_rec_count
= 1;
11379 else if (1 == arm_insn_r
->decode
&& 0x16 == opcode1
11380 && sbo_sbz (arm_insn_r
->arm_insn
, 9, 4, 1)
11381 && sbo_sbz (arm_insn_r
->arm_insn
, 17, 4, 1))
11383 /* Count leading zeros: CLZ. */
11384 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11385 arm_insn_r
->reg_rec_count
= 1;
11387 else if (!bit (arm_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
)
11388 && (8 == arm_insn_r
->opcode
|| 10 == arm_insn_r
->opcode
)
11389 && sbo_sbz (arm_insn_r
->arm_insn
, 17, 4, 1)
11390 && sbo_sbz (arm_insn_r
->arm_insn
, 1, 12, 0))
11392 /* Handle MRS insn. */
11393 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11394 arm_insn_r
->reg_rec_count
= 1;
11397 else if (9 == arm_insn_r
->decode
&& opcode1
< 0x10)
11399 /* Multiply and multiply-accumulate */
11401 /* Handle multiply instructions. */
11402 /* MLA, MUL, SMLAL, SMULL, UMLAL, UMULL. */
11403 if (0 == arm_insn_r
->opcode
|| 1 == arm_insn_r
->opcode
)
11405 /* Handle MLA and MUL. */
11406 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 16, 19);
11407 record_buf
[1] = ARM_PS_REGNUM
;
11408 arm_insn_r
->reg_rec_count
= 2;
11410 else if (4 <= arm_insn_r
->opcode
&& 7 >= arm_insn_r
->opcode
)
11412 /* Handle SMLAL, SMULL, UMLAL, UMULL. */
11413 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 16, 19);
11414 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 12, 15);
11415 record_buf
[2] = ARM_PS_REGNUM
;
11416 arm_insn_r
->reg_rec_count
= 3;
11419 else if (9 == arm_insn_r
->decode
&& opcode1
> 0x10)
11421 /* Synchronization primitives */
11423 /* Handling SWP, SWPB. */
11424 /* These insn, changes register and memory as well. */
11425 /* SWP or SWPB insn. */
11427 reg_src1
= bits (arm_insn_r
->arm_insn
, 16, 19);
11428 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
11429 /* SWP insn ?, swaps word. */
11430 if (8 == arm_insn_r
->opcode
)
11432 record_buf_mem
[0] = 4;
11436 /* SWPB insn, swaps only byte. */
11437 record_buf_mem
[0] = 1;
11439 record_buf_mem
[1] = u_regval
[0];
11440 arm_insn_r
->mem_rec_count
= 1;
11441 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11442 arm_insn_r
->reg_rec_count
= 1;
11444 else if (11 == arm_insn_r
->decode
|| 13 == arm_insn_r
->decode
11445 || 15 == arm_insn_r
->decode
)
11447 if ((opcode1
& 0x12) == 2)
11449 /* Extra load/store (unprivileged) */
11454 /* Extra load/store */
11455 switch (bits (arm_insn_r
->arm_insn
, 5, 6))
11458 if ((opcode1
& 0x05) == 0x0 || (opcode1
& 0x05) == 0x4)
11460 /* STRH (register), STRH (immediate) */
11461 arm_record_strx (arm_insn_r
, &record_buf
[0],
11462 &record_buf_mem
[0], ARM_RECORD_STRH
);
11464 else if ((opcode1
& 0x05) == 0x1)
11466 /* LDRH (register) */
11467 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11468 arm_insn_r
->reg_rec_count
= 1;
11470 if (bit (arm_insn_r
->arm_insn
, 21))
11472 /* Write back to Rn. */
11473 record_buf
[arm_insn_r
->reg_rec_count
++]
11474 = bits (arm_insn_r
->arm_insn
, 16, 19);
11477 else if ((opcode1
& 0x05) == 0x5)
11479 /* LDRH (immediate), LDRH (literal) */
11480 int rn
= bits (arm_insn_r
->arm_insn
, 16, 19);
11482 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11483 arm_insn_r
->reg_rec_count
= 1;
11487 /*LDRH (immediate) */
11488 if (bit (arm_insn_r
->arm_insn
, 21))
11490 /* Write back to Rn. */
11491 record_buf
[arm_insn_r
->reg_rec_count
++] = rn
;
11499 if ((opcode1
& 0x05) == 0x0)
11501 /* LDRD (register) */
11502 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11503 record_buf
[1] = record_buf
[0] + 1;
11504 arm_insn_r
->reg_rec_count
= 2;
11506 if (bit (arm_insn_r
->arm_insn
, 21))
11508 /* Write back to Rn. */
11509 record_buf
[arm_insn_r
->reg_rec_count
++]
11510 = bits (arm_insn_r
->arm_insn
, 16, 19);
11513 else if ((opcode1
& 0x05) == 0x1)
11515 /* LDRSB (register) */
11516 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11517 arm_insn_r
->reg_rec_count
= 1;
11519 if (bit (arm_insn_r
->arm_insn
, 21))
11521 /* Write back to Rn. */
11522 record_buf
[arm_insn_r
->reg_rec_count
++]
11523 = bits (arm_insn_r
->arm_insn
, 16, 19);
11526 else if ((opcode1
& 0x05) == 0x4 || (opcode1
& 0x05) == 0x5)
11528 /* LDRD (immediate), LDRD (literal), LDRSB (immediate),
11530 int rn
= bits (arm_insn_r
->arm_insn
, 16, 19);
11532 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11533 arm_insn_r
->reg_rec_count
= 1;
11537 /*LDRD (immediate), LDRSB (immediate) */
11538 if (bit (arm_insn_r
->arm_insn
, 21))
11540 /* Write back to Rn. */
11541 record_buf
[arm_insn_r
->reg_rec_count
++] = rn
;
11549 if ((opcode1
& 0x05) == 0x0)
11551 /* STRD (register) */
11552 arm_record_strx (arm_insn_r
, &record_buf
[0],
11553 &record_buf_mem
[0], ARM_RECORD_STRD
);
11555 else if ((opcode1
& 0x05) == 0x1)
11557 /* LDRSH (register) */
11558 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11559 arm_insn_r
->reg_rec_count
= 1;
11561 if (bit (arm_insn_r
->arm_insn
, 21))
11563 /* Write back to Rn. */
11564 record_buf
[arm_insn_r
->reg_rec_count
++]
11565 = bits (arm_insn_r
->arm_insn
, 16, 19);
11568 else if ((opcode1
& 0x05) == 0x4)
11570 /* STRD (immediate) */
11571 arm_record_strx (arm_insn_r
, &record_buf
[0],
11572 &record_buf_mem
[0], ARM_RECORD_STRD
);
11574 else if ((opcode1
& 0x05) == 0x5)
11576 /* LDRSH (immediate), LDRSH (literal) */
11577 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11578 arm_insn_r
->reg_rec_count
= 1;
11580 if (bit (arm_insn_r
->arm_insn
, 21))
11582 /* Write back to Rn. */
11583 record_buf
[arm_insn_r
->reg_rec_count
++]
11584 = bits (arm_insn_r
->arm_insn
, 16, 19);
11600 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11601 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
11605 /* Handling opcode 001 insns. */
11608 arm_record_data_proc_imm (arm_insn_decode_record
*arm_insn_r
)
11610 uint32_t record_buf
[8], record_buf_mem
[8];
11612 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 21, 24);
11613 arm_insn_r
->decode
= bits (arm_insn_r
->arm_insn
, 4, 7);
11615 if ((9 == arm_insn_r
->opcode
|| 11 == arm_insn_r
->opcode
)
11616 && 2 == bits (arm_insn_r
->arm_insn
, 20, 21)
11617 && sbo_sbz (arm_insn_r
->arm_insn
, 13, 4, 1)
11620 /* Handle MSR insn. */
11621 if (9 == arm_insn_r
->opcode
)
11623 /* CSPR is going to be changed. */
11624 record_buf
[0] = ARM_PS_REGNUM
;
11625 arm_insn_r
->reg_rec_count
= 1;
11629 /* SPSR is going to be changed. */
11632 else if (arm_insn_r
->opcode
<= 15)
11634 /* Normal data processing insns. */
11635 /* Out of 11 shifter operands mode, all the insn modifies destination
11636 register, which is specified by 13-16 decode. */
11637 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11638 record_buf
[1] = ARM_PS_REGNUM
;
11639 arm_insn_r
->reg_rec_count
= 2;
11646 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11647 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
11652 arm_record_media (arm_insn_decode_record
*arm_insn_r
)
11654 uint32_t record_buf
[8];
11656 switch (bits (arm_insn_r
->arm_insn
, 22, 24))
11659 /* Parallel addition and subtraction, signed */
11661 /* Parallel addition and subtraction, unsigned */
11664 /* Packing, unpacking, saturation and reversal */
11666 int rd
= bits (arm_insn_r
->arm_insn
, 12, 15);
11668 record_buf
[arm_insn_r
->reg_rec_count
++] = rd
;
11674 /* Signed multiplies */
11676 int rd
= bits (arm_insn_r
->arm_insn
, 16, 19);
11677 unsigned int op1
= bits (arm_insn_r
->arm_insn
, 20, 22);
11679 record_buf
[arm_insn_r
->reg_rec_count
++] = rd
;
11681 record_buf
[arm_insn_r
->reg_rec_count
++] = ARM_PS_REGNUM
;
11682 else if (op1
== 0x4)
11683 record_buf
[arm_insn_r
->reg_rec_count
++]
11684 = bits (arm_insn_r
->arm_insn
, 12, 15);
11690 if (bit (arm_insn_r
->arm_insn
, 21)
11691 && bits (arm_insn_r
->arm_insn
, 5, 6) == 0x2)
11694 record_buf
[arm_insn_r
->reg_rec_count
++]
11695 = bits (arm_insn_r
->arm_insn
, 12, 15);
11697 else if (bits (arm_insn_r
->arm_insn
, 20, 21) == 0x0
11698 && bits (arm_insn_r
->arm_insn
, 5, 7) == 0x0)
11700 /* USAD8 and USADA8 */
11701 record_buf
[arm_insn_r
->reg_rec_count
++]
11702 = bits (arm_insn_r
->arm_insn
, 16, 19);
11709 if (bits (arm_insn_r
->arm_insn
, 20, 21) == 0x3
11710 && bits (arm_insn_r
->arm_insn
, 5, 7) == 0x7)
11712 /* Permanently UNDEFINED */
11717 /* BFC, BFI and UBFX */
11718 record_buf
[arm_insn_r
->reg_rec_count
++]
11719 = bits (arm_insn_r
->arm_insn
, 12, 15);
11728 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11733 /* Handle ARM mode instructions with opcode 010. */
11736 arm_record_ld_st_imm_offset (arm_insn_decode_record
*arm_insn_r
)
11738 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
11740 uint32_t reg_base
, reg_dest
;
11741 uint32_t offset_12
, tgt_mem_addr
;
11742 uint32_t record_buf
[8], record_buf_mem
[8];
11743 unsigned char wback
;
11746 /* Calculate wback. */
11747 wback
= (bit (arm_insn_r
->arm_insn
, 24) == 0)
11748 || (bit (arm_insn_r
->arm_insn
, 21) == 1);
11750 arm_insn_r
->reg_rec_count
= 0;
11751 reg_base
= bits (arm_insn_r
->arm_insn
, 16, 19);
11753 if (bit (arm_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
11755 /* LDR (immediate), LDR (literal), LDRB (immediate), LDRB (literal), LDRBT
11758 reg_dest
= bits (arm_insn_r
->arm_insn
, 12, 15);
11759 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_dest
;
11761 /* The LDR instruction is capable of doing branching. If MOV LR, PC
11762 preceeds a LDR instruction having R15 as reg_base, it
11763 emulates a branch and link instruction, and hence we need to save
11764 CPSR and PC as well. */
11765 if (ARM_PC_REGNUM
== reg_dest
)
11766 record_buf
[arm_insn_r
->reg_rec_count
++] = ARM_PS_REGNUM
;
11768 /* If wback is true, also save the base register, which is going to be
11771 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_base
;
11775 /* STR (immediate), STRB (immediate), STRBT and STRT. */
11777 offset_12
= bits (arm_insn_r
->arm_insn
, 0, 11);
11778 regcache_raw_read_unsigned (reg_cache
, reg_base
, &u_regval
);
11780 /* Handle bit U. */
11781 if (bit (arm_insn_r
->arm_insn
, 23))
11783 /* U == 1: Add the offset. */
11784 tgt_mem_addr
= (uint32_t) u_regval
+ offset_12
;
11788 /* U == 0: subtract the offset. */
11789 tgt_mem_addr
= (uint32_t) u_regval
- offset_12
;
11792 /* Bit 22 tells us whether the store instruction writes 1 byte or 4
11794 if (bit (arm_insn_r
->arm_insn
, 22))
11796 /* STRB and STRBT: 1 byte. */
11797 record_buf_mem
[0] = 1;
11801 /* STR and STRT: 4 bytes. */
11802 record_buf_mem
[0] = 4;
11805 /* Handle bit P. */
11806 if (bit (arm_insn_r
->arm_insn
, 24))
11807 record_buf_mem
[1] = tgt_mem_addr
;
11809 record_buf_mem
[1] = (uint32_t) u_regval
;
11811 arm_insn_r
->mem_rec_count
= 1;
11813 /* If wback is true, also save the base register, which is going to be
11816 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_base
;
11819 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
11820 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
11824 /* Handling opcode 011 insns. */
11827 arm_record_ld_st_reg_offset (arm_insn_decode_record
*arm_insn_r
)
11829 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
11831 uint32_t shift_imm
= 0;
11832 uint32_t reg_src1
= 0, reg_src2
= 0, reg_dest
= 0;
11833 uint32_t offset_12
= 0, tgt_mem_addr
= 0;
11834 uint32_t record_buf
[8], record_buf_mem
[8];
11837 ULONGEST u_regval
[2];
11839 if (bit (arm_insn_r
->arm_insn
, 4))
11840 return arm_record_media (arm_insn_r
);
11842 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 21, 24);
11843 arm_insn_r
->decode
= bits (arm_insn_r
->arm_insn
, 4, 7);
11845 /* Handle enhanced store insns and LDRD DSP insn,
11846 order begins according to addressing modes for store insns
11850 if (bit (arm_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
11852 reg_dest
= bits (arm_insn_r
->arm_insn
, 12, 15);
11853 /* LDR insn has a capability to do branching, if
11854 MOV LR, PC is preceded by LDR insn having Rn as R15
11855 in that case, it emulates branch and link insn, and hence we
11856 need to save CSPR and PC as well. */
11857 if (15 != reg_dest
)
11859 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
11860 arm_insn_r
->reg_rec_count
= 1;
11864 record_buf
[0] = reg_dest
;
11865 record_buf
[1] = ARM_PS_REGNUM
;
11866 arm_insn_r
->reg_rec_count
= 2;
11871 if (! bits (arm_insn_r
->arm_insn
, 4, 11))
11873 /* Store insn, register offset and register pre-indexed,
11874 register post-indexed. */
11876 reg_src1
= bits (arm_insn_r
->arm_insn
, 0, 3);
11878 reg_src2
= bits (arm_insn_r
->arm_insn
, 16, 19);
11879 regcache_raw_read_unsigned (reg_cache
, reg_src1
11881 regcache_raw_read_unsigned (reg_cache
, reg_src2
11883 if (15 == reg_src2
)
11885 /* If R15 was used as Rn, hence current PC+8. */
11886 /* Pre-indexed mode doesnt reach here ; illegal insn. */
11887 u_regval
[0] = u_regval
[0] + 8;
11889 /* Calculate target store address, Rn +/- Rm, register offset. */
11891 if (bit (arm_insn_r
->arm_insn
, 23))
11893 tgt_mem_addr
= u_regval
[0] + u_regval
[1];
11897 tgt_mem_addr
= u_regval
[1] - u_regval
[0];
11900 switch (arm_insn_r
->opcode
)
11914 record_buf_mem
[0] = 4;
11929 record_buf_mem
[0] = 1;
11933 gdb_assert_not_reached ("no decoding pattern found");
11936 record_buf_mem
[1] = tgt_mem_addr
;
11937 arm_insn_r
->mem_rec_count
= 1;
11939 if (9 == arm_insn_r
->opcode
|| 11 == arm_insn_r
->opcode
11940 || 13 == arm_insn_r
->opcode
|| 15 == arm_insn_r
->opcode
11941 || 0 == arm_insn_r
->opcode
|| 2 == arm_insn_r
->opcode
11942 || 4 == arm_insn_r
->opcode
|| 6 == arm_insn_r
->opcode
11943 || 1 == arm_insn_r
->opcode
|| 3 == arm_insn_r
->opcode
11944 || 5 == arm_insn_r
->opcode
|| 7 == arm_insn_r
->opcode
11947 /* Rn is going to be changed in pre-indexed mode and
11948 post-indexed mode as well. */
11949 record_buf
[0] = reg_src2
;
11950 arm_insn_r
->reg_rec_count
= 1;
11955 /* Store insn, scaled register offset; scaled pre-indexed. */
11956 offset_12
= bits (arm_insn_r
->arm_insn
, 5, 6);
11958 reg_src1
= bits (arm_insn_r
->arm_insn
, 0, 3);
11960 reg_src2
= bits (arm_insn_r
->arm_insn
, 16, 19);
11961 /* Get shift_imm. */
11962 shift_imm
= bits (arm_insn_r
->arm_insn
, 7, 11);
11963 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
11964 regcache_raw_read_signed (reg_cache
, reg_src1
, &s_word
);
11965 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
11966 /* Offset_12 used as shift. */
11970 /* Offset_12 used as index. */
11971 offset_12
= u_regval
[0] << shift_imm
;
11975 offset_12
= (!shift_imm
)?0:u_regval
[0] >> shift_imm
;
11981 if (bit (u_regval
[0], 31))
11983 offset_12
= 0xFFFFFFFF;
11992 /* This is arithmetic shift. */
11993 offset_12
= s_word
>> shift_imm
;
12000 regcache_raw_read_unsigned (reg_cache
, ARM_PS_REGNUM
,
12002 /* Get C flag value and shift it by 31. */
12003 offset_12
= (((bit (u_regval
[1], 29)) << 31) \
12004 | (u_regval
[0]) >> 1);
12008 offset_12
= (u_regval
[0] >> shift_imm
) \
12010 (sizeof(uint32_t) - shift_imm
));
12015 gdb_assert_not_reached ("no decoding pattern found");
12019 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
12021 if (bit (arm_insn_r
->arm_insn
, 23))
12023 tgt_mem_addr
= u_regval
[1] + offset_12
;
12027 tgt_mem_addr
= u_regval
[1] - offset_12
;
12030 switch (arm_insn_r
->opcode
)
12044 record_buf_mem
[0] = 4;
12059 record_buf_mem
[0] = 1;
12063 gdb_assert_not_reached ("no decoding pattern found");
12066 record_buf_mem
[1] = tgt_mem_addr
;
12067 arm_insn_r
->mem_rec_count
= 1;
12069 if (9 == arm_insn_r
->opcode
|| 11 == arm_insn_r
->opcode
12070 || 13 == arm_insn_r
->opcode
|| 15 == arm_insn_r
->opcode
12071 || 0 == arm_insn_r
->opcode
|| 2 == arm_insn_r
->opcode
12072 || 4 == arm_insn_r
->opcode
|| 6 == arm_insn_r
->opcode
12073 || 1 == arm_insn_r
->opcode
|| 3 == arm_insn_r
->opcode
12074 || 5 == arm_insn_r
->opcode
|| 7 == arm_insn_r
->opcode
12077 /* Rn is going to be changed in register scaled pre-indexed
12078 mode,and scaled post indexed mode. */
12079 record_buf
[0] = reg_src2
;
12080 arm_insn_r
->reg_rec_count
= 1;
12085 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
12086 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
12090 /* Handle ARM mode instructions with opcode 100. */
12093 arm_record_ld_st_multiple (arm_insn_decode_record
*arm_insn_r
)
12095 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
12096 uint32_t register_count
= 0, register_bits
;
12097 uint32_t reg_base
, addr_mode
;
12098 uint32_t record_buf
[24], record_buf_mem
[48];
12102 /* Fetch the list of registers. */
12103 register_bits
= bits (arm_insn_r
->arm_insn
, 0, 15);
12104 arm_insn_r
->reg_rec_count
= 0;
12106 /* Fetch the base register that contains the address we are loading data
12108 reg_base
= bits (arm_insn_r
->arm_insn
, 16, 19);
12110 /* Calculate wback. */
12111 wback
= (bit (arm_insn_r
->arm_insn
, 21) == 1);
12113 if (bit (arm_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
12115 /* LDM/LDMIA/LDMFD, LDMDA/LDMFA, LDMDB and LDMIB. */
12117 /* Find out which registers are going to be loaded from memory. */
12118 while (register_bits
)
12120 if (register_bits
& 0x00000001)
12121 record_buf
[arm_insn_r
->reg_rec_count
++] = register_count
;
12122 register_bits
= register_bits
>> 1;
12127 /* If wback is true, also save the base register, which is going to be
12130 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_base
;
12132 /* Save the CPSR register. */
12133 record_buf
[arm_insn_r
->reg_rec_count
++] = ARM_PS_REGNUM
;
12137 /* STM (STMIA, STMEA), STMDA (STMED), STMDB (STMFD) and STMIB (STMFA). */
12139 addr_mode
= bits (arm_insn_r
->arm_insn
, 23, 24);
12141 regcache_raw_read_unsigned (reg_cache
, reg_base
, &u_regval
);
12143 /* Find out how many registers are going to be stored to memory. */
12144 while (register_bits
)
12146 if (register_bits
& 0x00000001)
12148 register_bits
= register_bits
>> 1;
12153 /* STMDA (STMED): Decrement after. */
12155 record_buf_mem
[1] = (uint32_t) u_regval
12156 - register_count
* ARM_INT_REGISTER_SIZE
+ 4;
12158 /* STM (STMIA, STMEA): Increment after. */
12160 record_buf_mem
[1] = (uint32_t) u_regval
;
12162 /* STMDB (STMFD): Decrement before. */
12164 record_buf_mem
[1] = (uint32_t) u_regval
12165 - register_count
* ARM_INT_REGISTER_SIZE
;
12167 /* STMIB (STMFA): Increment before. */
12169 record_buf_mem
[1] = (uint32_t) u_regval
+ ARM_INT_REGISTER_SIZE
;
12172 gdb_assert_not_reached ("no decoding pattern found");
12176 record_buf_mem
[0] = register_count
* ARM_INT_REGISTER_SIZE
;
12177 arm_insn_r
->mem_rec_count
= 1;
12179 /* If wback is true, also save the base register, which is going to be
12182 record_buf
[arm_insn_r
->reg_rec_count
++] = reg_base
;
12185 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
12186 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
12190 /* Handling opcode 101 insns. */
12193 arm_record_b_bl (arm_insn_decode_record
*arm_insn_r
)
12195 uint32_t record_buf
[8];
12197 /* Handle B, BL, BLX(1) insns. */
12198 /* B simply branches so we do nothing here. */
12199 /* Note: BLX(1) doesnt fall here but instead it falls into
12200 extension space. */
12201 if (bit (arm_insn_r
->arm_insn
, 24))
12203 record_buf
[0] = ARM_LR_REGNUM
;
12204 arm_insn_r
->reg_rec_count
= 1;
12207 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
12213 arm_record_unsupported_insn (arm_insn_decode_record
*arm_insn_r
)
12215 gdb_printf (gdb_stderr
,
12216 _("Process record does not support instruction "
12217 "0x%0x at address %s.\n"),arm_insn_r
->arm_insn
,
12218 paddress (arm_insn_r
->gdbarch
, arm_insn_r
->this_addr
));
12223 /* Record handler for vector data transfer instructions. */
12226 arm_record_vdata_transfer_insn (arm_insn_decode_record
*arm_insn_r
)
12228 uint32_t bits_a
, bit_c
, bit_l
, reg_t
, reg_v
;
12229 uint32_t record_buf
[4];
12231 reg_t
= bits (arm_insn_r
->arm_insn
, 12, 15);
12232 reg_v
= bits (arm_insn_r
->arm_insn
, 21, 23);
12233 bits_a
= bits (arm_insn_r
->arm_insn
, 21, 23);
12234 bit_l
= bit (arm_insn_r
->arm_insn
, 20);
12235 bit_c
= bit (arm_insn_r
->arm_insn
, 8);
12237 /* Handle VMOV instruction. */
12238 if (bit_l
&& bit_c
)
12240 record_buf
[0] = reg_t
;
12241 arm_insn_r
->reg_rec_count
= 1;
12243 else if (bit_l
&& !bit_c
)
12245 /* Handle VMOV instruction. */
12246 if (bits_a
== 0x00)
12248 record_buf
[0] = reg_t
;
12249 arm_insn_r
->reg_rec_count
= 1;
12251 /* Handle VMRS instruction. */
12252 else if (bits_a
== 0x07)
12255 reg_t
= ARM_PS_REGNUM
;
12257 record_buf
[0] = reg_t
;
12258 arm_insn_r
->reg_rec_count
= 1;
12261 else if (!bit_l
&& !bit_c
)
12263 /* Handle VMOV instruction. */
12264 if (bits_a
== 0x00)
12266 record_buf
[0] = ARM_D0_REGNUM
+ reg_v
;
12268 arm_insn_r
->reg_rec_count
= 1;
12270 /* Handle VMSR instruction. */
12271 else if (bits_a
== 0x07)
12273 record_buf
[0] = ARM_FPSCR_REGNUM
;
12274 arm_insn_r
->reg_rec_count
= 1;
12277 else if (!bit_l
&& bit_c
)
12279 /* Handle VMOV instruction. */
12280 if (!(bits_a
& 0x04))
12282 record_buf
[0] = (reg_v
| (bit (arm_insn_r
->arm_insn
, 7) << 4))
12284 arm_insn_r
->reg_rec_count
= 1;
12286 /* Handle VDUP instruction. */
12289 if (bit (arm_insn_r
->arm_insn
, 21))
12291 reg_v
= reg_v
| (bit (arm_insn_r
->arm_insn
, 7) << 4);
12292 record_buf
[0] = reg_v
+ ARM_D0_REGNUM
;
12293 record_buf
[1] = reg_v
+ ARM_D0_REGNUM
+ 1;
12294 arm_insn_r
->reg_rec_count
= 2;
12298 reg_v
= reg_v
| (bit (arm_insn_r
->arm_insn
, 7) << 4);
12299 record_buf
[0] = reg_v
+ ARM_D0_REGNUM
;
12300 arm_insn_r
->reg_rec_count
= 1;
12305 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
12309 /* Record handler for extension register load/store instructions. */
12312 arm_record_exreg_ld_st_insn (arm_insn_decode_record
*arm_insn_r
)
12314 uint32_t opcode
, single_reg
;
12315 uint8_t op_vldm_vstm
;
12316 uint32_t record_buf
[8], record_buf_mem
[128];
12317 ULONGEST u_regval
= 0;
12319 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
12321 opcode
= bits (arm_insn_r
->arm_insn
, 20, 24);
12322 single_reg
= !bit (arm_insn_r
->arm_insn
, 8);
12323 op_vldm_vstm
= opcode
& 0x1b;
12325 /* Handle VMOV instructions. */
12326 if ((opcode
& 0x1e) == 0x04)
12328 if (bit (arm_insn_r
->arm_insn
, 20)) /* to_arm_registers bit 20? */
12330 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
12331 record_buf
[1] = bits (arm_insn_r
->arm_insn
, 16, 19);
12332 arm_insn_r
->reg_rec_count
= 2;
12336 uint8_t reg_m
= bits (arm_insn_r
->arm_insn
, 0, 3);
12337 uint8_t bit_m
= bit (arm_insn_r
->arm_insn
, 5);
12341 /* The first S register number m is REG_M:M (M is bit 5),
12342 the corresponding D register number is REG_M:M / 2, which
12344 record_buf
[arm_insn_r
->reg_rec_count
++] = ARM_D0_REGNUM
+ reg_m
;
12345 /* The second S register number is REG_M:M + 1, the
12346 corresponding D register number is (REG_M:M + 1) / 2.
12347 IOW, if bit M is 1, the first and second S registers
12348 are mapped to different D registers, otherwise, they are
12349 in the same D register. */
12352 record_buf
[arm_insn_r
->reg_rec_count
++]
12353 = ARM_D0_REGNUM
+ reg_m
+ 1;
12358 record_buf
[0] = ((bit_m
<< 4) + reg_m
+ ARM_D0_REGNUM
);
12359 arm_insn_r
->reg_rec_count
= 1;
12363 /* Handle VSTM and VPUSH instructions. */
12364 else if (op_vldm_vstm
== 0x08 || op_vldm_vstm
== 0x0a
12365 || op_vldm_vstm
== 0x12)
12367 uint32_t start_address
, reg_rn
, imm_off32
, imm_off8
, memory_count
;
12368 uint32_t memory_index
= 0;
12370 reg_rn
= bits (arm_insn_r
->arm_insn
, 16, 19);
12371 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
);
12372 imm_off8
= bits (arm_insn_r
->arm_insn
, 0, 7);
12373 imm_off32
= imm_off8
<< 2;
12374 memory_count
= imm_off8
;
12376 if (bit (arm_insn_r
->arm_insn
, 23))
12377 start_address
= u_regval
;
12379 start_address
= u_regval
- imm_off32
;
12381 if (bit (arm_insn_r
->arm_insn
, 21))
12383 record_buf
[0] = reg_rn
;
12384 arm_insn_r
->reg_rec_count
= 1;
12387 while (memory_count
> 0)
12391 record_buf_mem
[memory_index
] = 4;
12392 record_buf_mem
[memory_index
+ 1] = start_address
;
12393 start_address
= start_address
+ 4;
12394 memory_index
= memory_index
+ 2;
12398 record_buf_mem
[memory_index
] = 4;
12399 record_buf_mem
[memory_index
+ 1] = start_address
;
12400 record_buf_mem
[memory_index
+ 2] = 4;
12401 record_buf_mem
[memory_index
+ 3] = start_address
+ 4;
12402 start_address
= start_address
+ 8;
12403 memory_index
= memory_index
+ 4;
12407 arm_insn_r
->mem_rec_count
= (memory_index
>> 1);
12409 /* Handle VLDM instructions. */
12410 else if (op_vldm_vstm
== 0x09 || op_vldm_vstm
== 0x0b
12411 || op_vldm_vstm
== 0x13)
12413 uint32_t reg_count
, reg_vd
;
12414 uint32_t reg_index
= 0;
12415 uint32_t bit_d
= bit (arm_insn_r
->arm_insn
, 22);
12417 reg_vd
= bits (arm_insn_r
->arm_insn
, 12, 15);
12418 reg_count
= bits (arm_insn_r
->arm_insn
, 0, 7);
12420 /* REG_VD is the first D register number. If the instruction
12421 loads memory to S registers (SINGLE_REG is TRUE), the register
12422 number is (REG_VD << 1 | bit D), so the corresponding D
12423 register number is (REG_VD << 1 | bit D) / 2 = REG_VD. */
12425 reg_vd
= reg_vd
| (bit_d
<< 4);
12427 if (bit (arm_insn_r
->arm_insn
, 21) /* write back */)
12428 record_buf
[reg_index
++] = bits (arm_insn_r
->arm_insn
, 16, 19);
12430 /* If the instruction loads memory to D register, REG_COUNT should
12431 be divided by 2, according to the ARM Architecture Reference
12432 Manual. If the instruction loads memory to S register, divide by
12433 2 as well because two S registers are mapped to D register. */
12434 reg_count
= reg_count
/ 2;
12435 if (single_reg
&& bit_d
)
12437 /* Increase the register count if S register list starts from
12438 an odd number (bit d is one). */
12442 while (reg_count
> 0)
12444 record_buf
[reg_index
++] = ARM_D0_REGNUM
+ reg_vd
+ reg_count
- 1;
12447 arm_insn_r
->reg_rec_count
= reg_index
;
12449 /* VSTR Vector store register. */
12450 else if ((opcode
& 0x13) == 0x10)
12452 uint32_t start_address
, reg_rn
, imm_off32
, imm_off8
;
12453 uint32_t memory_index
= 0;
12455 reg_rn
= bits (arm_insn_r
->arm_insn
, 16, 19);
12456 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
);
12457 imm_off8
= bits (arm_insn_r
->arm_insn
, 0, 7);
12458 imm_off32
= imm_off8
<< 2;
12460 if (bit (arm_insn_r
->arm_insn
, 23))
12461 start_address
= u_regval
+ imm_off32
;
12463 start_address
= u_regval
- imm_off32
;
12467 record_buf_mem
[memory_index
] = 4;
12468 record_buf_mem
[memory_index
+ 1] = start_address
;
12469 arm_insn_r
->mem_rec_count
= 1;
12473 record_buf_mem
[memory_index
] = 4;
12474 record_buf_mem
[memory_index
+ 1] = start_address
;
12475 record_buf_mem
[memory_index
+ 2] = 4;
12476 record_buf_mem
[memory_index
+ 3] = start_address
+ 4;
12477 arm_insn_r
->mem_rec_count
= 2;
12480 /* VLDR Vector load register. */
12481 else if ((opcode
& 0x13) == 0x11)
12483 uint32_t reg_vd
= bits (arm_insn_r
->arm_insn
, 12, 15);
12487 reg_vd
= reg_vd
| (bit (arm_insn_r
->arm_insn
, 22) << 4);
12488 record_buf
[0] = ARM_D0_REGNUM
+ reg_vd
;
12492 reg_vd
= (reg_vd
<< 1) | bit (arm_insn_r
->arm_insn
, 22);
12493 /* Record register D rather than pseudo register S. */
12494 record_buf
[0] = ARM_D0_REGNUM
+ reg_vd
/ 2;
12496 arm_insn_r
->reg_rec_count
= 1;
12499 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
12500 MEM_ALLOC (arm_insn_r
->arm_mems
, arm_insn_r
->mem_rec_count
, record_buf_mem
);
12504 /* Record handler for arm/thumb mode VFP data processing instructions. */
12507 arm_record_vfp_data_proc_insn (arm_insn_decode_record
*arm_insn_r
)
12509 uint32_t opc1
, opc2
, opc3
, dp_op_sz
, bit_d
, reg_vd
;
12510 uint32_t record_buf
[4];
12511 enum insn_types
{INSN_T0
, INSN_T1
, INSN_T2
, INSN_T3
, INSN_INV
};
12512 enum insn_types curr_insn_type
= INSN_INV
;
12514 reg_vd
= bits (arm_insn_r
->arm_insn
, 12, 15);
12515 opc1
= bits (arm_insn_r
->arm_insn
, 20, 23);
12516 opc2
= bits (arm_insn_r
->arm_insn
, 16, 19);
12517 opc3
= bits (arm_insn_r
->arm_insn
, 6, 7);
12518 dp_op_sz
= bit (arm_insn_r
->arm_insn
, 8);
12519 bit_d
= bit (arm_insn_r
->arm_insn
, 22);
12520 /* Mask off the "D" bit. */
12521 opc1
= opc1
& ~0x04;
12523 /* Handle VMLA, VMLS. */
12526 if (bit (arm_insn_r
->arm_insn
, 10))
12528 if (bit (arm_insn_r
->arm_insn
, 6))
12529 curr_insn_type
= INSN_T0
;
12531 curr_insn_type
= INSN_T1
;
12536 curr_insn_type
= INSN_T1
;
12538 curr_insn_type
= INSN_T2
;
12541 /* Handle VNMLA, VNMLS, VNMUL. */
12542 else if (opc1
== 0x01)
12545 curr_insn_type
= INSN_T1
;
12547 curr_insn_type
= INSN_T2
;
12550 else if (opc1
== 0x02 && !(opc3
& 0x01))
12552 if (bit (arm_insn_r
->arm_insn
, 10))
12554 if (bit (arm_insn_r
->arm_insn
, 6))
12555 curr_insn_type
= INSN_T0
;
12557 curr_insn_type
= INSN_T1
;
12562 curr_insn_type
= INSN_T1
;
12564 curr_insn_type
= INSN_T2
;
12567 /* Handle VADD, VSUB. */
12568 else if (opc1
== 0x03)
12570 if (!bit (arm_insn_r
->arm_insn
, 9))
12572 if (bit (arm_insn_r
->arm_insn
, 6))
12573 curr_insn_type
= INSN_T0
;
12575 curr_insn_type
= INSN_T1
;
12580 curr_insn_type
= INSN_T1
;
12582 curr_insn_type
= INSN_T2
;
12586 else if (opc1
== 0x08)
12589 curr_insn_type
= INSN_T1
;
12591 curr_insn_type
= INSN_T2
;
12593 /* Handle all other vfp data processing instructions. */
12594 else if (opc1
== 0x0b)
12597 if (!(opc3
& 0x01) || (opc2
== 0x00 && opc3
== 0x01))
12599 if (bit (arm_insn_r
->arm_insn
, 4))
12601 if (bit (arm_insn_r
->arm_insn
, 6))
12602 curr_insn_type
= INSN_T0
;
12604 curr_insn_type
= INSN_T1
;
12609 curr_insn_type
= INSN_T1
;
12611 curr_insn_type
= INSN_T2
;
12614 /* Handle VNEG and VABS. */
12615 else if ((opc2
== 0x01 && opc3
== 0x01)
12616 || (opc2
== 0x00 && opc3
== 0x03))
12618 if (!bit (arm_insn_r
->arm_insn
, 11))
12620 if (bit (arm_insn_r
->arm_insn
, 6))
12621 curr_insn_type
= INSN_T0
;
12623 curr_insn_type
= INSN_T1
;
12628 curr_insn_type
= INSN_T1
;
12630 curr_insn_type
= INSN_T2
;
12633 /* Handle VSQRT. */
12634 else if (opc2
== 0x01 && opc3
== 0x03)
12637 curr_insn_type
= INSN_T1
;
12639 curr_insn_type
= INSN_T2
;
12642 else if (opc2
== 0x07 && opc3
== 0x03)
12645 curr_insn_type
= INSN_T1
;
12647 curr_insn_type
= INSN_T2
;
12649 else if (opc3
& 0x01)
12652 if ((opc2
== 0x08) || (opc2
& 0x0e) == 0x0c)
12654 if (!bit (arm_insn_r
->arm_insn
, 18))
12655 curr_insn_type
= INSN_T2
;
12659 curr_insn_type
= INSN_T1
;
12661 curr_insn_type
= INSN_T2
;
12665 else if ((opc2
& 0x0e) == 0x0a || (opc2
& 0x0e) == 0x0e)
12668 curr_insn_type
= INSN_T1
;
12670 curr_insn_type
= INSN_T2
;
12672 /* Handle VCVTB, VCVTT. */
12673 else if ((opc2
& 0x0e) == 0x02)
12674 curr_insn_type
= INSN_T2
;
12675 /* Handle VCMP, VCMPE. */
12676 else if ((opc2
& 0x0e) == 0x04)
12677 curr_insn_type
= INSN_T3
;
12681 switch (curr_insn_type
)
12684 reg_vd
= reg_vd
| (bit_d
<< 4);
12685 record_buf
[0] = reg_vd
+ ARM_D0_REGNUM
;
12686 record_buf
[1] = reg_vd
+ ARM_D0_REGNUM
+ 1;
12687 arm_insn_r
->reg_rec_count
= 2;
12691 reg_vd
= reg_vd
| (bit_d
<< 4);
12692 record_buf
[0] = reg_vd
+ ARM_D0_REGNUM
;
12693 arm_insn_r
->reg_rec_count
= 1;
12697 reg_vd
= (reg_vd
<< 1) | bit_d
;
12698 record_buf
[0] = reg_vd
+ ARM_D0_REGNUM
;
12699 arm_insn_r
->reg_rec_count
= 1;
12703 record_buf
[0] = ARM_FPSCR_REGNUM
;
12704 arm_insn_r
->reg_rec_count
= 1;
12708 gdb_assert_not_reached ("no decoding pattern found");
12712 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, record_buf
);
12716 /* Handling opcode 110 insns. */
12719 arm_record_asimd_vfp_coproc (arm_insn_decode_record
*arm_insn_r
)
12721 uint32_t op1
, op1_ebit
, coproc
;
12723 coproc
= bits (arm_insn_r
->arm_insn
, 8, 11);
12724 op1
= bits (arm_insn_r
->arm_insn
, 20, 25);
12725 op1_ebit
= bit (arm_insn_r
->arm_insn
, 20);
12727 if ((coproc
& 0x0e) == 0x0a)
12729 /* Handle extension register ld/st instructions. */
12731 return arm_record_exreg_ld_st_insn (arm_insn_r
);
12733 /* 64-bit transfers between arm core and extension registers. */
12734 if ((op1
& 0x3e) == 0x04)
12735 return arm_record_exreg_ld_st_insn (arm_insn_r
);
12739 /* Handle coprocessor ld/st instructions. */
12744 return arm_record_unsupported_insn (arm_insn_r
);
12747 return arm_record_unsupported_insn (arm_insn_r
);
12750 /* Move to coprocessor from two arm core registers. */
12752 return arm_record_unsupported_insn (arm_insn_r
);
12754 /* Move to two arm core registers from coprocessor. */
12759 reg_t
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
12760 reg_t
[1] = bits (arm_insn_r
->arm_insn
, 16, 19);
12761 arm_insn_r
->reg_rec_count
= 2;
12763 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
, reg_t
);
12767 return arm_record_unsupported_insn (arm_insn_r
);
12770 /* Handling opcode 111 insns. */
12773 arm_record_coproc_data_proc (arm_insn_decode_record
*arm_insn_r
)
12775 uint32_t op
, op1_ebit
, coproc
, bits_24_25
;
12776 arm_gdbarch_tdep
*tdep
12777 = (arm_gdbarch_tdep
*) gdbarch_tdep (arm_insn_r
->gdbarch
);
12778 struct regcache
*reg_cache
= arm_insn_r
->regcache
;
12780 arm_insn_r
->opcode
= bits (arm_insn_r
->arm_insn
, 24, 27);
12781 coproc
= bits (arm_insn_r
->arm_insn
, 8, 11);
12782 op1_ebit
= bit (arm_insn_r
->arm_insn
, 20);
12783 op
= bit (arm_insn_r
->arm_insn
, 4);
12784 bits_24_25
= bits (arm_insn_r
->arm_insn
, 24, 25);
12786 /* Handle arm SWI/SVC system call instructions. */
12787 if (bits_24_25
== 0x3)
12789 if (tdep
->arm_syscall_record
!= NULL
)
12791 ULONGEST svc_operand
, svc_number
;
12793 svc_operand
= (0x00ffffff & arm_insn_r
->arm_insn
);
12795 if (svc_operand
) /* OABI. */
12796 svc_number
= svc_operand
- 0x900000;
12798 regcache_raw_read_unsigned (reg_cache
, 7, &svc_number
);
12800 return tdep
->arm_syscall_record (reg_cache
, svc_number
);
12804 gdb_printf (gdb_stderr
, _("no syscall record support\n"));
12808 else if (bits_24_25
== 0x02)
12812 if ((coproc
& 0x0e) == 0x0a)
12814 /* 8, 16, and 32-bit transfer */
12815 return arm_record_vdata_transfer_insn (arm_insn_r
);
12822 uint32_t record_buf
[1];
12824 record_buf
[0] = bits (arm_insn_r
->arm_insn
, 12, 15);
12825 if (record_buf
[0] == 15)
12826 record_buf
[0] = ARM_PS_REGNUM
;
12828 arm_insn_r
->reg_rec_count
= 1;
12829 REG_ALLOC (arm_insn_r
->arm_regs
, arm_insn_r
->reg_rec_count
,
12842 if ((coproc
& 0x0e) == 0x0a)
12844 /* VFP data-processing instructions. */
12845 return arm_record_vfp_data_proc_insn (arm_insn_r
);
12856 unsigned int op1
= bits (arm_insn_r
->arm_insn
, 20, 25);
12860 if ((coproc
& 0x0e) != 0x0a)
12866 else if (op1
== 4 || op1
== 5)
12868 if ((coproc
& 0x0e) == 0x0a)
12870 /* 64-bit transfers between ARM core and extension */
12879 else if (op1
== 0 || op1
== 1)
12886 if ((coproc
& 0x0e) == 0x0a)
12888 /* Extension register load/store */
12892 /* STC, STC2, LDC, LDC2 */
12901 /* Handling opcode 000 insns. */
12904 thumb_record_shift_add_sub (arm_insn_decode_record
*thumb_insn_r
)
12906 uint32_t record_buf
[8];
12907 uint32_t reg_src1
= 0;
12909 reg_src1
= bits (thumb_insn_r
->arm_insn
, 0, 2);
12911 record_buf
[0] = ARM_PS_REGNUM
;
12912 record_buf
[1] = reg_src1
;
12913 thumb_insn_r
->reg_rec_count
= 2;
12915 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
12921 /* Handling opcode 001 insns. */
12924 thumb_record_add_sub_cmp_mov (arm_insn_decode_record
*thumb_insn_r
)
12926 uint32_t record_buf
[8];
12927 uint32_t reg_src1
= 0;
12929 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
12931 record_buf
[0] = ARM_PS_REGNUM
;
12932 record_buf
[1] = reg_src1
;
12933 thumb_insn_r
->reg_rec_count
= 2;
12935 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
12940 /* Handling opcode 010 insns. */
12943 thumb_record_ld_st_reg_offset (arm_insn_decode_record
*thumb_insn_r
)
12945 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
12946 uint32_t record_buf
[8], record_buf_mem
[8];
12948 uint32_t reg_src1
= 0, reg_src2
= 0;
12949 uint32_t opcode1
= 0, opcode2
= 0, opcode3
= 0;
12951 ULONGEST u_regval
[2] = {0};
12953 opcode1
= bits (thumb_insn_r
->arm_insn
, 10, 12);
12955 if (bit (thumb_insn_r
->arm_insn
, 12))
12957 /* Handle load/store register offset. */
12958 uint32_t opB
= bits (thumb_insn_r
->arm_insn
, 9, 11);
12960 if (in_inclusive_range (opB
, 4U, 7U))
12962 /* LDR(2), LDRB(2) , LDRH(2), LDRSB, LDRSH. */
12963 reg_src1
= bits (thumb_insn_r
->arm_insn
,0, 2);
12964 record_buf
[0] = reg_src1
;
12965 thumb_insn_r
->reg_rec_count
= 1;
12967 else if (in_inclusive_range (opB
, 0U, 2U))
12969 /* STR(2), STRB(2), STRH(2) . */
12970 reg_src1
= bits (thumb_insn_r
->arm_insn
, 3, 5);
12971 reg_src2
= bits (thumb_insn_r
->arm_insn
, 6, 8);
12972 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
[0]);
12973 regcache_raw_read_unsigned (reg_cache
, reg_src2
, &u_regval
[1]);
12975 record_buf_mem
[0] = 4; /* STR (2). */
12977 record_buf_mem
[0] = 1; /* STRB (2). */
12979 record_buf_mem
[0] = 2; /* STRH (2). */
12980 record_buf_mem
[1] = u_regval
[0] + u_regval
[1];
12981 thumb_insn_r
->mem_rec_count
= 1;
12984 else if (bit (thumb_insn_r
->arm_insn
, 11))
12986 /* Handle load from literal pool. */
12988 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
12989 record_buf
[0] = reg_src1
;
12990 thumb_insn_r
->reg_rec_count
= 1;
12994 /* Special data instructions and branch and exchange */
12995 opcode2
= bits (thumb_insn_r
->arm_insn
, 8, 9);
12996 opcode3
= bits (thumb_insn_r
->arm_insn
, 0, 2);
12997 if ((3 == opcode2
) && (!opcode3
))
12999 /* Branch with exchange. */
13000 record_buf
[0] = ARM_PS_REGNUM
;
13001 thumb_insn_r
->reg_rec_count
= 1;
13005 /* Format 8; special data processing insns. */
13006 record_buf
[0] = ARM_PS_REGNUM
;
13007 record_buf
[1] = (bit (thumb_insn_r
->arm_insn
, 7) << 3
13008 | bits (thumb_insn_r
->arm_insn
, 0, 2));
13009 thumb_insn_r
->reg_rec_count
= 2;
13014 /* Format 5; data processing insns. */
13015 reg_src1
= bits (thumb_insn_r
->arm_insn
, 0, 2);
13016 if (bit (thumb_insn_r
->arm_insn
, 7))
13018 reg_src1
= reg_src1
+ 8;
13020 record_buf
[0] = ARM_PS_REGNUM
;
13021 record_buf
[1] = reg_src1
;
13022 thumb_insn_r
->reg_rec_count
= 2;
13025 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
13026 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
13032 /* Handling opcode 001 insns. */
13035 thumb_record_ld_st_imm_offset (arm_insn_decode_record
*thumb_insn_r
)
13037 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
13038 uint32_t record_buf
[8], record_buf_mem
[8];
13040 uint32_t reg_src1
= 0;
13041 uint32_t opcode
= 0, immed_5
= 0;
13043 ULONGEST u_regval
= 0;
13045 opcode
= bits (thumb_insn_r
->arm_insn
, 11, 12);
13050 reg_src1
= bits (thumb_insn_r
->arm_insn
, 0, 2);
13051 record_buf
[0] = reg_src1
;
13052 thumb_insn_r
->reg_rec_count
= 1;
13057 reg_src1
= bits (thumb_insn_r
->arm_insn
, 3, 5);
13058 immed_5
= bits (thumb_insn_r
->arm_insn
, 6, 10);
13059 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
);
13060 record_buf_mem
[0] = 4;
13061 record_buf_mem
[1] = u_regval
+ (immed_5
* 4);
13062 thumb_insn_r
->mem_rec_count
= 1;
13065 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
13066 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
13072 /* Handling opcode 100 insns. */
13075 thumb_record_ld_st_stack (arm_insn_decode_record
*thumb_insn_r
)
13077 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
13078 uint32_t record_buf
[8], record_buf_mem
[8];
13080 uint32_t reg_src1
= 0;
13081 uint32_t opcode
= 0, immed_8
= 0, immed_5
= 0;
13083 ULONGEST u_regval
= 0;
13085 opcode
= bits (thumb_insn_r
->arm_insn
, 11, 12);
13090 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
13091 record_buf
[0] = reg_src1
;
13092 thumb_insn_r
->reg_rec_count
= 1;
13094 else if (1 == opcode
)
13097 reg_src1
= bits (thumb_insn_r
->arm_insn
, 0, 2);
13098 record_buf
[0] = reg_src1
;
13099 thumb_insn_r
->reg_rec_count
= 1;
13101 else if (2 == opcode
)
13104 immed_8
= bits (thumb_insn_r
->arm_insn
, 0, 7);
13105 regcache_raw_read_unsigned (reg_cache
, ARM_SP_REGNUM
, &u_regval
);
13106 record_buf_mem
[0] = 4;
13107 record_buf_mem
[1] = u_regval
+ (immed_8
* 4);
13108 thumb_insn_r
->mem_rec_count
= 1;
13110 else if (0 == opcode
)
13113 immed_5
= bits (thumb_insn_r
->arm_insn
, 6, 10);
13114 reg_src1
= bits (thumb_insn_r
->arm_insn
, 3, 5);
13115 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
);
13116 record_buf_mem
[0] = 2;
13117 record_buf_mem
[1] = u_regval
+ (immed_5
* 2);
13118 thumb_insn_r
->mem_rec_count
= 1;
13121 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
13122 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
13128 /* Handling opcode 101 insns. */
13131 thumb_record_misc (arm_insn_decode_record
*thumb_insn_r
)
13133 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
13135 uint32_t opcode
= 0;
13136 uint32_t register_bits
= 0, register_count
= 0;
13137 uint32_t index
= 0, start_address
= 0;
13138 uint32_t record_buf
[24], record_buf_mem
[48];
13141 ULONGEST u_regval
= 0;
13143 opcode
= bits (thumb_insn_r
->arm_insn
, 11, 12);
13145 if (opcode
== 0 || opcode
== 1)
13147 /* ADR and ADD (SP plus immediate) */
13149 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
13150 record_buf
[0] = reg_src1
;
13151 thumb_insn_r
->reg_rec_count
= 1;
13155 /* Miscellaneous 16-bit instructions */
13156 uint32_t opcode2
= bits (thumb_insn_r
->arm_insn
, 8, 11);
13161 /* SETEND and CPS */
13164 /* ADD/SUB (SP plus immediate) */
13165 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
13166 record_buf
[0] = ARM_SP_REGNUM
;
13167 thumb_insn_r
->reg_rec_count
= 1;
13169 case 1: /* fall through */
13170 case 3: /* fall through */
13171 case 9: /* fall through */
13176 /* SXTH, SXTB, UXTH, UXTB */
13177 record_buf
[0] = bits (thumb_insn_r
->arm_insn
, 0, 2);
13178 thumb_insn_r
->reg_rec_count
= 1;
13180 case 4: /* fall through */
13183 register_bits
= bits (thumb_insn_r
->arm_insn
, 0, 7);
13184 regcache_raw_read_unsigned (reg_cache
, ARM_SP_REGNUM
, &u_regval
);
13185 while (register_bits
)
13187 if (register_bits
& 0x00000001)
13189 register_bits
= register_bits
>> 1;
13191 start_address
= u_regval
- \
13192 (4 * (bit (thumb_insn_r
->arm_insn
, 8) + register_count
));
13193 thumb_insn_r
->mem_rec_count
= register_count
;
13194 while (register_count
)
13196 record_buf_mem
[(register_count
* 2) - 1] = start_address
;
13197 record_buf_mem
[(register_count
* 2) - 2] = 4;
13198 start_address
= start_address
+ 4;
13201 record_buf
[0] = ARM_SP_REGNUM
;
13202 thumb_insn_r
->reg_rec_count
= 1;
13205 /* REV, REV16, REVSH */
13206 record_buf
[0] = bits (thumb_insn_r
->arm_insn
, 0, 2);
13207 thumb_insn_r
->reg_rec_count
= 1;
13209 case 12: /* fall through */
13212 register_bits
= bits (thumb_insn_r
->arm_insn
, 0, 7);
13213 while (register_bits
)
13215 if (register_bits
& 0x00000001)
13216 record_buf
[index
++] = register_count
;
13217 register_bits
= register_bits
>> 1;
13220 record_buf
[index
++] = ARM_PS_REGNUM
;
13221 record_buf
[index
++] = ARM_SP_REGNUM
;
13222 thumb_insn_r
->reg_rec_count
= index
;
13226 /* Handle enhanced software breakpoint insn, BKPT. */
13227 /* CPSR is changed to be executed in ARM state, disabling normal
13228 interrupts, entering abort mode. */
13229 /* According to high vector configuration PC is set. */
13230 /* User hits breakpoint and type reverse, in that case, we need to go back with
13231 previous CPSR and Program Counter. */
13232 record_buf
[0] = ARM_PS_REGNUM
;
13233 record_buf
[1] = ARM_LR_REGNUM
;
13234 thumb_insn_r
->reg_rec_count
= 2;
13235 /* We need to save SPSR value, which is not yet done. */
13236 gdb_printf (gdb_stderr
,
13237 _("Process record does not support instruction "
13238 "0x%0x at address %s.\n"),
13239 thumb_insn_r
->arm_insn
,
13240 paddress (thumb_insn_r
->gdbarch
,
13241 thumb_insn_r
->this_addr
));
13245 /* If-Then, and hints */
13252 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
13253 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
13259 /* Handling opcode 110 insns. */
13262 thumb_record_ldm_stm_swi (arm_insn_decode_record
*thumb_insn_r
)
13264 arm_gdbarch_tdep
*tdep
13265 = (arm_gdbarch_tdep
*) gdbarch_tdep (thumb_insn_r
->gdbarch
);
13266 struct regcache
*reg_cache
= thumb_insn_r
->regcache
;
13268 uint32_t ret
= 0; /* function return value: -1:record failure ; 0:success */
13269 uint32_t reg_src1
= 0;
13270 uint32_t opcode1
= 0, opcode2
= 0, register_bits
= 0, register_count
= 0;
13271 uint32_t index
= 0, start_address
= 0;
13272 uint32_t record_buf
[24], record_buf_mem
[48];
13274 ULONGEST u_regval
= 0;
13276 opcode1
= bits (thumb_insn_r
->arm_insn
, 8, 12);
13277 opcode2
= bits (thumb_insn_r
->arm_insn
, 11, 12);
13283 register_bits
= bits (thumb_insn_r
->arm_insn
, 0, 7);
13285 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
13286 while (register_bits
)
13288 if (register_bits
& 0x00000001)
13289 record_buf
[index
++] = register_count
;
13290 register_bits
= register_bits
>> 1;
13293 record_buf
[index
++] = reg_src1
;
13294 thumb_insn_r
->reg_rec_count
= index
;
13296 else if (0 == opcode2
)
13298 /* It handles both STMIA. */
13299 register_bits
= bits (thumb_insn_r
->arm_insn
, 0, 7);
13301 reg_src1
= bits (thumb_insn_r
->arm_insn
, 8, 10);
13302 regcache_raw_read_unsigned (reg_cache
, reg_src1
, &u_regval
);
13303 while (register_bits
)
13305 if (register_bits
& 0x00000001)
13307 register_bits
= register_bits
>> 1;
13309 start_address
= u_regval
;
13310 thumb_insn_r
->mem_rec_count
= register_count
;
13311 while (register_count
)
13313 record_buf_mem
[(register_count
* 2) - 1] = start_address
;
13314 record_buf_mem
[(register_count
* 2) - 2] = 4;
13315 start_address
= start_address
+ 4;
13319 else if (0x1F == opcode1
)
13321 /* Handle arm syscall insn. */
13322 if (tdep
->arm_syscall_record
!= NULL
)
13324 regcache_raw_read_unsigned (reg_cache
, 7, &u_regval
);
13325 ret
= tdep
->arm_syscall_record (reg_cache
, u_regval
);
13329 gdb_printf (gdb_stderr
, _("no syscall record support\n"));
13334 /* B (1), conditional branch is automatically taken care in process_record,
13335 as PC is saved there. */
13337 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
13338 MEM_ALLOC (thumb_insn_r
->arm_mems
, thumb_insn_r
->mem_rec_count
,
13344 /* Handling opcode 111 insns. */
13347 thumb_record_branch (arm_insn_decode_record
*thumb_insn_r
)
13349 uint32_t record_buf
[8];
13350 uint32_t bits_h
= 0;
13352 bits_h
= bits (thumb_insn_r
->arm_insn
, 11, 12);
13354 if (2 == bits_h
|| 3 == bits_h
)
13357 record_buf
[0] = ARM_LR_REGNUM
;
13358 thumb_insn_r
->reg_rec_count
= 1;
13360 else if (1 == bits_h
)
13363 record_buf
[0] = ARM_PS_REGNUM
;
13364 record_buf
[1] = ARM_LR_REGNUM
;
13365 thumb_insn_r
->reg_rec_count
= 2;
13368 /* B(2) is automatically taken care in process_record, as PC is
13371 REG_ALLOC (thumb_insn_r
->arm_regs
, thumb_insn_r
->reg_rec_count
, record_buf
);
13376 /* Handler for thumb2 load/store multiple instructions. */
13379 thumb2_record_ld_st_multiple (arm_insn_decode_record
*thumb2_insn_r
)
13381 struct regcache
*reg_cache
= thumb2_insn_r
->regcache
;
13383 uint32_t reg_rn
, op
;
13384 uint32_t register_bits
= 0, register_count
= 0;
13385 uint32_t index
= 0, start_address
= 0;
13386 uint32_t record_buf
[24], record_buf_mem
[48];
13388 ULONGEST u_regval
= 0;
13390 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
13391 op
= bits (thumb2_insn_r
->arm_insn
, 23, 24);
13393 if (0 == op
|| 3 == op
)
13395 if (bit (thumb2_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
13397 /* Handle RFE instruction. */
13398 record_buf
[0] = ARM_PS_REGNUM
;
13399 thumb2_insn_r
->reg_rec_count
= 1;
13403 /* Handle SRS instruction after reading banked SP. */
13404 return arm_record_unsupported_insn (thumb2_insn_r
);
13407 else if (1 == op
|| 2 == op
)
13409 if (bit (thumb2_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
13411 /* Handle LDM/LDMIA/LDMFD and LDMDB/LDMEA instructions. */
13412 register_bits
= bits (thumb2_insn_r
->arm_insn
, 0, 15);
13413 while (register_bits
)
13415 if (register_bits
& 0x00000001)
13416 record_buf
[index
++] = register_count
;
13419 register_bits
= register_bits
>> 1;
13421 record_buf
[index
++] = reg_rn
;
13422 record_buf
[index
++] = ARM_PS_REGNUM
;
13423 thumb2_insn_r
->reg_rec_count
= index
;
13427 /* Handle STM/STMIA/STMEA and STMDB/STMFD. */
13428 register_bits
= bits (thumb2_insn_r
->arm_insn
, 0, 15);
13429 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
);
13430 while (register_bits
)
13432 if (register_bits
& 0x00000001)
13435 register_bits
= register_bits
>> 1;
13440 /* Start address calculation for LDMDB/LDMEA. */
13441 start_address
= u_regval
;
13445 /* Start address calculation for LDMDB/LDMEA. */
13446 start_address
= u_regval
- register_count
* 4;
13449 thumb2_insn_r
->mem_rec_count
= register_count
;
13450 while (register_count
)
13452 record_buf_mem
[register_count
* 2 - 1] = start_address
;
13453 record_buf_mem
[register_count
* 2 - 2] = 4;
13454 start_address
= start_address
+ 4;
13457 record_buf
[0] = reg_rn
;
13458 record_buf
[1] = ARM_PS_REGNUM
;
13459 thumb2_insn_r
->reg_rec_count
= 2;
13463 MEM_ALLOC (thumb2_insn_r
->arm_mems
, thumb2_insn_r
->mem_rec_count
,
13465 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
13467 return ARM_RECORD_SUCCESS
;
13470 /* Handler for thumb2 load/store (dual/exclusive) and table branch
13474 thumb2_record_ld_st_dual_ex_tbb (arm_insn_decode_record
*thumb2_insn_r
)
13476 struct regcache
*reg_cache
= thumb2_insn_r
->regcache
;
13478 uint32_t reg_rd
, reg_rn
, offset_imm
;
13479 uint32_t reg_dest1
, reg_dest2
;
13480 uint32_t address
, offset_addr
;
13481 uint32_t record_buf
[8], record_buf_mem
[8];
13482 uint32_t op1
, op2
, op3
;
13484 ULONGEST u_regval
[2];
13486 op1
= bits (thumb2_insn_r
->arm_insn
, 23, 24);
13487 op2
= bits (thumb2_insn_r
->arm_insn
, 20, 21);
13488 op3
= bits (thumb2_insn_r
->arm_insn
, 4, 7);
13490 if (bit (thumb2_insn_r
->arm_insn
, INSN_S_L_BIT_NUM
))
13492 if(!(1 == op1
&& 1 == op2
&& (0 == op3
|| 1 == op3
)))
13494 reg_dest1
= bits (thumb2_insn_r
->arm_insn
, 12, 15);
13495 record_buf
[0] = reg_dest1
;
13496 record_buf
[1] = ARM_PS_REGNUM
;
13497 thumb2_insn_r
->reg_rec_count
= 2;
13500 if (3 == op2
|| (op1
& 2) || (1 == op1
&& 1 == op2
&& 7 == op3
))
13502 reg_dest2
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
13503 record_buf
[2] = reg_dest2
;
13504 thumb2_insn_r
->reg_rec_count
= 3;
13509 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
13510 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
[0]);
13512 if (0 == op1
&& 0 == op2
)
13514 /* Handle STREX. */
13515 offset_imm
= bits (thumb2_insn_r
->arm_insn
, 0, 7);
13516 address
= u_regval
[0] + (offset_imm
* 4);
13517 record_buf_mem
[0] = 4;
13518 record_buf_mem
[1] = address
;
13519 thumb2_insn_r
->mem_rec_count
= 1;
13520 reg_rd
= bits (thumb2_insn_r
->arm_insn
, 0, 3);
13521 record_buf
[0] = reg_rd
;
13522 thumb2_insn_r
->reg_rec_count
= 1;
13524 else if (1 == op1
&& 0 == op2
)
13526 reg_rd
= bits (thumb2_insn_r
->arm_insn
, 0, 3);
13527 record_buf
[0] = reg_rd
;
13528 thumb2_insn_r
->reg_rec_count
= 1;
13529 address
= u_regval
[0];
13530 record_buf_mem
[1] = address
;
13534 /* Handle STREXB. */
13535 record_buf_mem
[0] = 1;
13536 thumb2_insn_r
->mem_rec_count
= 1;
13540 /* Handle STREXH. */
13541 record_buf_mem
[0] = 2 ;
13542 thumb2_insn_r
->mem_rec_count
= 1;
13546 /* Handle STREXD. */
13547 address
= u_regval
[0];
13548 record_buf_mem
[0] = 4;
13549 record_buf_mem
[2] = 4;
13550 record_buf_mem
[3] = address
+ 4;
13551 thumb2_insn_r
->mem_rec_count
= 2;
13556 offset_imm
= bits (thumb2_insn_r
->arm_insn
, 0, 7);
13558 if (bit (thumb2_insn_r
->arm_insn
, 24))
13560 if (bit (thumb2_insn_r
->arm_insn
, 23))
13561 offset_addr
= u_regval
[0] + (offset_imm
* 4);
13563 offset_addr
= u_regval
[0] - (offset_imm
* 4);
13565 address
= offset_addr
;
13568 address
= u_regval
[0];
13570 record_buf_mem
[0] = 4;
13571 record_buf_mem
[1] = address
;
13572 record_buf_mem
[2] = 4;
13573 record_buf_mem
[3] = address
+ 4;
13574 thumb2_insn_r
->mem_rec_count
= 2;
13575 record_buf
[0] = reg_rn
;
13576 thumb2_insn_r
->reg_rec_count
= 1;
13580 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
13582 MEM_ALLOC (thumb2_insn_r
->arm_mems
, thumb2_insn_r
->mem_rec_count
,
13584 return ARM_RECORD_SUCCESS
;
13587 /* Handler for thumb2 data processing (shift register and modified immediate)
13591 thumb2_record_data_proc_sreg_mimm (arm_insn_decode_record
*thumb2_insn_r
)
13593 uint32_t reg_rd
, op
;
13594 uint32_t record_buf
[8];
13596 op
= bits (thumb2_insn_r
->arm_insn
, 21, 24);
13597 reg_rd
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
13599 if ((0 == op
|| 4 == op
|| 8 == op
|| 13 == op
) && 15 == reg_rd
)
13601 record_buf
[0] = ARM_PS_REGNUM
;
13602 thumb2_insn_r
->reg_rec_count
= 1;
13606 record_buf
[0] = reg_rd
;
13607 record_buf
[1] = ARM_PS_REGNUM
;
13608 thumb2_insn_r
->reg_rec_count
= 2;
13611 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
13613 return ARM_RECORD_SUCCESS
;
13616 /* Generic handler for thumb2 instructions which effect destination and PS
13620 thumb2_record_ps_dest_generic (arm_insn_decode_record
*thumb2_insn_r
)
13623 uint32_t record_buf
[8];
13625 reg_rd
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
13627 record_buf
[0] = reg_rd
;
13628 record_buf
[1] = ARM_PS_REGNUM
;
13629 thumb2_insn_r
->reg_rec_count
= 2;
13631 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
13633 return ARM_RECORD_SUCCESS
;
13636 /* Handler for thumb2 branch and miscellaneous control instructions. */
13639 thumb2_record_branch_misc_cntrl (arm_insn_decode_record
*thumb2_insn_r
)
13641 uint32_t op
, op1
, op2
;
13642 uint32_t record_buf
[8];
13644 op
= bits (thumb2_insn_r
->arm_insn
, 20, 26);
13645 op1
= bits (thumb2_insn_r
->arm_insn
, 12, 14);
13646 op2
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
13648 /* Handle MSR insn. */
13649 if (!(op1
& 0x2) && 0x38 == op
)
13653 /* CPSR is going to be changed. */
13654 record_buf
[0] = ARM_PS_REGNUM
;
13655 thumb2_insn_r
->reg_rec_count
= 1;
13659 arm_record_unsupported_insn(thumb2_insn_r
);
13663 else if (4 == (op1
& 0x5) || 5 == (op1
& 0x5))
13666 record_buf
[0] = ARM_PS_REGNUM
;
13667 record_buf
[1] = ARM_LR_REGNUM
;
13668 thumb2_insn_r
->reg_rec_count
= 2;
13671 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
13673 return ARM_RECORD_SUCCESS
;
13676 /* Handler for thumb2 store single data item instructions. */
13679 thumb2_record_str_single_data (arm_insn_decode_record
*thumb2_insn_r
)
13681 struct regcache
*reg_cache
= thumb2_insn_r
->regcache
;
13683 uint32_t reg_rn
, reg_rm
, offset_imm
, shift_imm
;
13684 uint32_t address
, offset_addr
;
13685 uint32_t record_buf
[8], record_buf_mem
[8];
13688 ULONGEST u_regval
[2];
13690 op1
= bits (thumb2_insn_r
->arm_insn
, 21, 23);
13691 op2
= bits (thumb2_insn_r
->arm_insn
, 6, 11);
13692 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
13693 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
[0]);
13695 if (bit (thumb2_insn_r
->arm_insn
, 23))
13698 offset_imm
= bits (thumb2_insn_r
->arm_insn
, 0, 11);
13699 offset_addr
= u_regval
[0] + offset_imm
;
13700 address
= offset_addr
;
13705 if ((0 == op1
|| 1 == op1
|| 2 == op1
) && !(op2
& 0x20))
13707 /* Handle STRB (register). */
13708 reg_rm
= bits (thumb2_insn_r
->arm_insn
, 0, 3);
13709 regcache_raw_read_unsigned (reg_cache
, reg_rm
, &u_regval
[1]);
13710 shift_imm
= bits (thumb2_insn_r
->arm_insn
, 4, 5);
13711 offset_addr
= u_regval
[1] << shift_imm
;
13712 address
= u_regval
[0] + offset_addr
;
13716 offset_imm
= bits (thumb2_insn_r
->arm_insn
, 0, 7);
13717 if (bit (thumb2_insn_r
->arm_insn
, 10))
13719 if (bit (thumb2_insn_r
->arm_insn
, 9))
13720 offset_addr
= u_regval
[0] + offset_imm
;
13722 offset_addr
= u_regval
[0] - offset_imm
;
13724 address
= offset_addr
;
13727 address
= u_regval
[0];
13733 /* Store byte instructions. */
13736 record_buf_mem
[0] = 1;
13738 /* Store half word instructions. */
13741 record_buf_mem
[0] = 2;
13743 /* Store word instructions. */
13746 record_buf_mem
[0] = 4;
13750 gdb_assert_not_reached ("no decoding pattern found");
13754 record_buf_mem
[1] = address
;
13755 thumb2_insn_r
->mem_rec_count
= 1;
13756 record_buf
[0] = reg_rn
;
13757 thumb2_insn_r
->reg_rec_count
= 1;
13759 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
13761 MEM_ALLOC (thumb2_insn_r
->arm_mems
, thumb2_insn_r
->mem_rec_count
,
13763 return ARM_RECORD_SUCCESS
;
13766 /* Handler for thumb2 load memory hints instructions. */
13769 thumb2_record_ld_mem_hints (arm_insn_decode_record
*thumb2_insn_r
)
13771 uint32_t record_buf
[8];
13772 uint32_t reg_rt
, reg_rn
;
13774 reg_rt
= bits (thumb2_insn_r
->arm_insn
, 12, 15);
13775 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
13777 if (ARM_PC_REGNUM
!= reg_rt
)
13779 record_buf
[0] = reg_rt
;
13780 record_buf
[1] = reg_rn
;
13781 record_buf
[2] = ARM_PS_REGNUM
;
13782 thumb2_insn_r
->reg_rec_count
= 3;
13784 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
13786 return ARM_RECORD_SUCCESS
;
13789 return ARM_RECORD_FAILURE
;
13792 /* Handler for thumb2 load word instructions. */
13795 thumb2_record_ld_word (arm_insn_decode_record
*thumb2_insn_r
)
13797 uint32_t record_buf
[8];
13799 record_buf
[0] = bits (thumb2_insn_r
->arm_insn
, 12, 15);
13800 record_buf
[1] = ARM_PS_REGNUM
;
13801 thumb2_insn_r
->reg_rec_count
= 2;
13803 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
13805 return ARM_RECORD_SUCCESS
;
13808 /* Handler for thumb2 long multiply, long multiply accumulate, and
13809 divide instructions. */
13812 thumb2_record_lmul_lmla_div (arm_insn_decode_record
*thumb2_insn_r
)
13814 uint32_t opcode1
= 0, opcode2
= 0;
13815 uint32_t record_buf
[8];
13817 opcode1
= bits (thumb2_insn_r
->arm_insn
, 20, 22);
13818 opcode2
= bits (thumb2_insn_r
->arm_insn
, 4, 7);
13820 if (0 == opcode1
|| 2 == opcode1
|| (opcode1
>= 4 && opcode1
<= 6))
13822 /* Handle SMULL, UMULL, SMULAL. */
13823 /* Handle SMLAL(S), SMULL(S), UMLAL(S), UMULL(S). */
13824 record_buf
[0] = bits (thumb2_insn_r
->arm_insn
, 16, 19);
13825 record_buf
[1] = bits (thumb2_insn_r
->arm_insn
, 12, 15);
13826 record_buf
[2] = ARM_PS_REGNUM
;
13827 thumb2_insn_r
->reg_rec_count
= 3;
13829 else if (1 == opcode1
|| 3 == opcode2
)
13831 /* Handle SDIV and UDIV. */
13832 record_buf
[0] = bits (thumb2_insn_r
->arm_insn
, 16, 19);
13833 record_buf
[1] = bits (thumb2_insn_r
->arm_insn
, 12, 15);
13834 record_buf
[2] = ARM_PS_REGNUM
;
13835 thumb2_insn_r
->reg_rec_count
= 3;
13838 return ARM_RECORD_FAILURE
;
13840 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
13842 return ARM_RECORD_SUCCESS
;
13845 /* Record handler for thumb32 coprocessor instructions. */
13848 thumb2_record_coproc_insn (arm_insn_decode_record
*thumb2_insn_r
)
13850 if (bit (thumb2_insn_r
->arm_insn
, 25))
13851 return arm_record_coproc_data_proc (thumb2_insn_r
);
13853 return arm_record_asimd_vfp_coproc (thumb2_insn_r
);
13856 /* Record handler for advance SIMD structure load/store instructions. */
13859 thumb2_record_asimd_struct_ld_st (arm_insn_decode_record
*thumb2_insn_r
)
13861 struct regcache
*reg_cache
= thumb2_insn_r
->regcache
;
13862 uint32_t l_bit
, a_bit
, b_bits
;
13863 uint32_t record_buf
[128], record_buf_mem
[128];
13864 uint32_t reg_rn
, reg_vd
, address
, f_elem
;
13865 uint32_t index_r
= 0, index_e
= 0, bf_regs
= 0, index_m
= 0, loop_t
= 0;
13868 l_bit
= bit (thumb2_insn_r
->arm_insn
, 21);
13869 a_bit
= bit (thumb2_insn_r
->arm_insn
, 23);
13870 b_bits
= bits (thumb2_insn_r
->arm_insn
, 8, 11);
13871 reg_rn
= bits (thumb2_insn_r
->arm_insn
, 16, 19);
13872 reg_vd
= bits (thumb2_insn_r
->arm_insn
, 12, 15);
13873 reg_vd
= (bit (thumb2_insn_r
->arm_insn
, 22) << 4) | reg_vd
;
13874 f_ebytes
= (1 << bits (thumb2_insn_r
->arm_insn
, 6, 7));
13875 f_elem
= 8 / f_ebytes
;
13879 ULONGEST u_regval
= 0;
13880 regcache_raw_read_unsigned (reg_cache
, reg_rn
, &u_regval
);
13881 address
= u_regval
;
13886 if (b_bits
== 0x02 || b_bits
== 0x0a || (b_bits
& 0x0e) == 0x06)
13888 if (b_bits
== 0x07)
13890 else if (b_bits
== 0x0a)
13892 else if (b_bits
== 0x06)
13894 else if (b_bits
== 0x02)
13899 for (index_r
= 0; index_r
< bf_regs
; index_r
++)
13901 for (index_e
= 0; index_e
< f_elem
; index_e
++)
13903 record_buf_mem
[index_m
++] = f_ebytes
;
13904 record_buf_mem
[index_m
++] = address
;
13905 address
= address
+ f_ebytes
;
13906 thumb2_insn_r
->mem_rec_count
+= 1;
13911 else if (b_bits
== 0x03 || (b_bits
& 0x0e) == 0x08)
13913 if (b_bits
== 0x09 || b_bits
== 0x08)
13915 else if (b_bits
== 0x03)
13920 for (index_r
= 0; index_r
< bf_regs
; index_r
++)
13921 for (index_e
= 0; index_e
< f_elem
; index_e
++)
13923 for (loop_t
= 0; loop_t
< 2; loop_t
++)
13925 record_buf_mem
[index_m
++] = f_ebytes
;
13926 record_buf_mem
[index_m
++] = address
+ (loop_t
* f_ebytes
);
13927 thumb2_insn_r
->mem_rec_count
+= 1;
13929 address
= address
+ (2 * f_ebytes
);
13933 else if ((b_bits
& 0x0e) == 0x04)
13935 for (index_e
= 0; index_e
< f_elem
; index_e
++)
13937 for (loop_t
= 0; loop_t
< 3; loop_t
++)
13939 record_buf_mem
[index_m
++] = f_ebytes
;
13940 record_buf_mem
[index_m
++] = address
+ (loop_t
* f_ebytes
);
13941 thumb2_insn_r
->mem_rec_count
+= 1;
13943 address
= address
+ (3 * f_ebytes
);
13947 else if (!(b_bits
& 0x0e))
13949 for (index_e
= 0; index_e
< f_elem
; index_e
++)
13951 for (loop_t
= 0; loop_t
< 4; loop_t
++)
13953 record_buf_mem
[index_m
++] = f_ebytes
;
13954 record_buf_mem
[index_m
++] = address
+ (loop_t
* f_ebytes
);
13955 thumb2_insn_r
->mem_rec_count
+= 1;
13957 address
= address
+ (4 * f_ebytes
);
13963 uint8_t bft_size
= bits (thumb2_insn_r
->arm_insn
, 10, 11);
13965 if (bft_size
== 0x00)
13967 else if (bft_size
== 0x01)
13969 else if (bft_size
== 0x02)
13975 if (!(b_bits
& 0x0b) || b_bits
== 0x08)
13976 thumb2_insn_r
->mem_rec_count
= 1;
13978 else if ((b_bits
& 0x0b) == 0x01 || b_bits
== 0x09)
13979 thumb2_insn_r
->mem_rec_count
= 2;
13981 else if ((b_bits
& 0x0b) == 0x02 || b_bits
== 0x0a)
13982 thumb2_insn_r
->mem_rec_count
= 3;
13984 else if ((b_bits
& 0x0b) == 0x03 || b_bits
== 0x0b)
13985 thumb2_insn_r
->mem_rec_count
= 4;
13987 for (index_m
= 0; index_m
< thumb2_insn_r
->mem_rec_count
; index_m
++)
13989 record_buf_mem
[index_m
] = f_ebytes
;
13990 record_buf_mem
[index_m
] = address
+ (index_m
* f_ebytes
);
13999 if (b_bits
== 0x02 || b_bits
== 0x0a || (b_bits
& 0x0e) == 0x06)
14000 thumb2_insn_r
->reg_rec_count
= 1;
14002 else if (b_bits
== 0x03 || (b_bits
& 0x0e) == 0x08)
14003 thumb2_insn_r
->reg_rec_count
= 2;
14005 else if ((b_bits
& 0x0e) == 0x04)
14006 thumb2_insn_r
->reg_rec_count
= 3;
14008 else if (!(b_bits
& 0x0e))
14009 thumb2_insn_r
->reg_rec_count
= 4;
14014 if (!(b_bits
& 0x0b) || b_bits
== 0x08 || b_bits
== 0x0c)
14015 thumb2_insn_r
->reg_rec_count
= 1;
14017 else if ((b_bits
& 0x0b) == 0x01 || b_bits
== 0x09 || b_bits
== 0x0d)
14018 thumb2_insn_r
->reg_rec_count
= 2;
14020 else if ((b_bits
& 0x0b) == 0x02 || b_bits
== 0x0a || b_bits
== 0x0e)
14021 thumb2_insn_r
->reg_rec_count
= 3;
14023 else if ((b_bits
& 0x0b) == 0x03 || b_bits
== 0x0b || b_bits
== 0x0f)
14024 thumb2_insn_r
->reg_rec_count
= 4;
14026 for (index_r
= 0; index_r
< thumb2_insn_r
->reg_rec_count
; index_r
++)
14027 record_buf
[index_r
] = reg_vd
+ ARM_D0_REGNUM
+ index_r
;
14031 if (bits (thumb2_insn_r
->arm_insn
, 0, 3) != 15)
14033 record_buf
[index_r
] = reg_rn
;
14034 thumb2_insn_r
->reg_rec_count
+= 1;
14037 REG_ALLOC (thumb2_insn_r
->arm_regs
, thumb2_insn_r
->reg_rec_count
,
14039 MEM_ALLOC (thumb2_insn_r
->arm_mems
, thumb2_insn_r
->mem_rec_count
,
14044 /* Decodes thumb2 instruction type and invokes its record handler. */
14046 static unsigned int
14047 thumb2_record_decode_insn_handler (arm_insn_decode_record
*thumb2_insn_r
)
14049 uint32_t op
, op1
, op2
;
14051 op
= bit (thumb2_insn_r
->arm_insn
, 15);
14052 op1
= bits (thumb2_insn_r
->arm_insn
, 27, 28);
14053 op2
= bits (thumb2_insn_r
->arm_insn
, 20, 26);
14057 if (!(op2
& 0x64 ))
14059 /* Load/store multiple instruction. */
14060 return thumb2_record_ld_st_multiple (thumb2_insn_r
);
14062 else if ((op2
& 0x64) == 0x4)
14064 /* Load/store (dual/exclusive) and table branch instruction. */
14065 return thumb2_record_ld_st_dual_ex_tbb (thumb2_insn_r
);
14067 else if ((op2
& 0x60) == 0x20)
14069 /* Data-processing (shifted register). */
14070 return thumb2_record_data_proc_sreg_mimm (thumb2_insn_r
);
14072 else if (op2
& 0x40)
14074 /* Co-processor instructions. */
14075 return thumb2_record_coproc_insn (thumb2_insn_r
);
14078 else if (op1
== 0x02)
14082 /* Branches and miscellaneous control instructions. */
14083 return thumb2_record_branch_misc_cntrl (thumb2_insn_r
);
14085 else if (op2
& 0x20)
14087 /* Data-processing (plain binary immediate) instruction. */
14088 return thumb2_record_ps_dest_generic (thumb2_insn_r
);
14092 /* Data-processing (modified immediate). */
14093 return thumb2_record_data_proc_sreg_mimm (thumb2_insn_r
);
14096 else if (op1
== 0x03)
14098 if (!(op2
& 0x71 ))
14100 /* Store single data item. */
14101 return thumb2_record_str_single_data (thumb2_insn_r
);
14103 else if (!((op2
& 0x71) ^ 0x10))
14105 /* Advanced SIMD or structure load/store instructions. */
14106 return thumb2_record_asimd_struct_ld_st (thumb2_insn_r
);
14108 else if (!((op2
& 0x67) ^ 0x01))
14110 /* Load byte, memory hints instruction. */
14111 return thumb2_record_ld_mem_hints (thumb2_insn_r
);
14113 else if (!((op2
& 0x67) ^ 0x03))
14115 /* Load halfword, memory hints instruction. */
14116 return thumb2_record_ld_mem_hints (thumb2_insn_r
);
14118 else if (!((op2
& 0x67) ^ 0x05))
14120 /* Load word instruction. */
14121 return thumb2_record_ld_word (thumb2_insn_r
);
14123 else if (!((op2
& 0x70) ^ 0x20))
14125 /* Data-processing (register) instruction. */
14126 return thumb2_record_ps_dest_generic (thumb2_insn_r
);
14128 else if (!((op2
& 0x78) ^ 0x30))
14130 /* Multiply, multiply accumulate, abs diff instruction. */
14131 return thumb2_record_ps_dest_generic (thumb2_insn_r
);
14133 else if (!((op2
& 0x78) ^ 0x38))
14135 /* Long multiply, long multiply accumulate, and divide. */
14136 return thumb2_record_lmul_lmla_div (thumb2_insn_r
);
14138 else if (op2
& 0x40)
14140 /* Co-processor instructions. */
14141 return thumb2_record_coproc_insn (thumb2_insn_r
);
14149 /* Abstract memory reader. */
14151 class abstract_memory_reader
14154 /* Read LEN bytes of target memory at address MEMADDR, placing the
14155 results in GDB's memory at BUF. Return true on success. */
14157 virtual bool read (CORE_ADDR memaddr
, gdb_byte
*buf
, const size_t len
) = 0;
14160 /* Instruction reader from real target. */
14162 class instruction_reader
: public abstract_memory_reader
14165 bool read (CORE_ADDR memaddr
, gdb_byte
*buf
, const size_t len
) override
14167 if (target_read_memory (memaddr
, buf
, len
))
14176 /* Extracts arm/thumb/thumb2 insn depending on the size, and returns 0 on success
14177 and positive val on failure. */
14180 extract_arm_insn (abstract_memory_reader
& reader
,
14181 arm_insn_decode_record
*insn_record
, uint32_t insn_size
)
14183 gdb_byte buf
[insn_size
];
14185 memset (&buf
[0], 0, insn_size
);
14187 if (!reader
.read (insn_record
->this_addr
, buf
, insn_size
))
14189 insn_record
->arm_insn
= (uint32_t) extract_unsigned_integer (&buf
[0],
14191 gdbarch_byte_order_for_code (insn_record
->gdbarch
));
14195 typedef int (*sti_arm_hdl_fp_t
) (arm_insn_decode_record
*);
14197 /* Decode arm/thumb insn depending on condition cods and opcodes; and
14201 decode_insn (abstract_memory_reader
&reader
,
14202 arm_insn_decode_record
*arm_record
,
14203 record_type_t record_type
, uint32_t insn_size
)
14206 /* (Starting from numerical 0); bits 25, 26, 27 decodes type of arm
14208 static const sti_arm_hdl_fp_t arm_handle_insn
[8] =
14210 arm_record_data_proc_misc_ld_str
, /* 000. */
14211 arm_record_data_proc_imm
, /* 001. */
14212 arm_record_ld_st_imm_offset
, /* 010. */
14213 arm_record_ld_st_reg_offset
, /* 011. */
14214 arm_record_ld_st_multiple
, /* 100. */
14215 arm_record_b_bl
, /* 101. */
14216 arm_record_asimd_vfp_coproc
, /* 110. */
14217 arm_record_coproc_data_proc
/* 111. */
14220 /* (Starting from numerical 0); bits 13,14,15 decodes type of thumb
14222 static const sti_arm_hdl_fp_t thumb_handle_insn
[8] =
14224 thumb_record_shift_add_sub
, /* 000. */
14225 thumb_record_add_sub_cmp_mov
, /* 001. */
14226 thumb_record_ld_st_reg_offset
, /* 010. */
14227 thumb_record_ld_st_imm_offset
, /* 011. */
14228 thumb_record_ld_st_stack
, /* 100. */
14229 thumb_record_misc
, /* 101. */
14230 thumb_record_ldm_stm_swi
, /* 110. */
14231 thumb_record_branch
/* 111. */
14234 uint32_t ret
= 0; /* return value: negative:failure 0:success. */
14235 uint32_t insn_id
= 0;
14237 if (extract_arm_insn (reader
, arm_record
, insn_size
))
14241 gdb_printf (gdb_stdlog
,
14242 _("Process record: error reading memory at "
14243 "addr %s len = %d.\n"),
14244 paddress (arm_record
->gdbarch
,
14245 arm_record
->this_addr
), insn_size
);
14249 else if (ARM_RECORD
== record_type
)
14251 arm_record
->cond
= bits (arm_record
->arm_insn
, 28, 31);
14252 insn_id
= bits (arm_record
->arm_insn
, 25, 27);
14254 if (arm_record
->cond
== 0xf)
14255 ret
= arm_record_extension_space (arm_record
);
14258 /* If this insn has fallen into extension space
14259 then we need not decode it anymore. */
14260 ret
= arm_handle_insn
[insn_id
] (arm_record
);
14262 if (ret
!= ARM_RECORD_SUCCESS
)
14264 arm_record_unsupported_insn (arm_record
);
14268 else if (THUMB_RECORD
== record_type
)
14270 /* As thumb does not have condition codes, we set negative. */
14271 arm_record
->cond
= -1;
14272 insn_id
= bits (arm_record
->arm_insn
, 13, 15);
14273 ret
= thumb_handle_insn
[insn_id
] (arm_record
);
14274 if (ret
!= ARM_RECORD_SUCCESS
)
14276 arm_record_unsupported_insn (arm_record
);
14280 else if (THUMB2_RECORD
== record_type
)
14282 /* As thumb does not have condition codes, we set negative. */
14283 arm_record
->cond
= -1;
14285 /* Swap first half of 32bit thumb instruction with second half. */
14286 arm_record
->arm_insn
14287 = (arm_record
->arm_insn
>> 16) | (arm_record
->arm_insn
<< 16);
14289 ret
= thumb2_record_decode_insn_handler (arm_record
);
14291 if (ret
!= ARM_RECORD_SUCCESS
)
14293 arm_record_unsupported_insn (arm_record
);
14299 /* Throw assertion. */
14300 gdb_assert_not_reached ("not a valid instruction, could not decode");
14307 namespace selftests
{
14309 /* Provide both 16-bit and 32-bit thumb instructions. */
14311 class instruction_reader_thumb
: public abstract_memory_reader
14314 template<size_t SIZE
>
14315 instruction_reader_thumb (enum bfd_endian endian
,
14316 const uint16_t (&insns
)[SIZE
])
14317 : m_endian (endian
), m_insns (insns
), m_insns_size (SIZE
)
14320 bool read (CORE_ADDR memaddr
, gdb_byte
*buf
, const size_t len
) override
14322 SELF_CHECK (len
== 4 || len
== 2);
14323 SELF_CHECK (memaddr
% 2 == 0);
14324 SELF_CHECK ((memaddr
/ 2) < m_insns_size
);
14326 store_unsigned_integer (buf
, 2, m_endian
, m_insns
[memaddr
/ 2]);
14329 store_unsigned_integer (&buf
[2], 2, m_endian
,
14330 m_insns
[memaddr
/ 2 + 1]);
14336 enum bfd_endian m_endian
;
14337 const uint16_t *m_insns
;
14338 size_t m_insns_size
;
14342 arm_record_test (void)
14344 struct gdbarch_info info
;
14345 info
.bfd_arch_info
= bfd_scan_arch ("arm");
14347 struct gdbarch
*gdbarch
= gdbarch_find_by_info (info
);
14349 SELF_CHECK (gdbarch
!= NULL
);
14351 /* 16-bit Thumb instructions. */
14353 arm_insn_decode_record arm_record
;
14355 memset (&arm_record
, 0, sizeof (arm_insn_decode_record
));
14356 arm_record
.gdbarch
= gdbarch
;
14358 static const uint16_t insns
[] = {
14359 /* db b2 uxtb r3, r3 */
14361 /* cd 58 ldr r5, [r1, r3] */
14365 enum bfd_endian endian
= gdbarch_byte_order_for_code (arm_record
.gdbarch
);
14366 instruction_reader_thumb
reader (endian
, insns
);
14367 int ret
= decode_insn (reader
, &arm_record
, THUMB_RECORD
,
14368 THUMB_INSN_SIZE_BYTES
);
14370 SELF_CHECK (ret
== 0);
14371 SELF_CHECK (arm_record
.mem_rec_count
== 0);
14372 SELF_CHECK (arm_record
.reg_rec_count
== 1);
14373 SELF_CHECK (arm_record
.arm_regs
[0] == 3);
14375 arm_record
.this_addr
+= 2;
14376 ret
= decode_insn (reader
, &arm_record
, THUMB_RECORD
,
14377 THUMB_INSN_SIZE_BYTES
);
14379 SELF_CHECK (ret
== 0);
14380 SELF_CHECK (arm_record
.mem_rec_count
== 0);
14381 SELF_CHECK (arm_record
.reg_rec_count
== 1);
14382 SELF_CHECK (arm_record
.arm_regs
[0] == 5);
14385 /* 32-bit Thumb-2 instructions. */
14387 arm_insn_decode_record arm_record
;
14389 memset (&arm_record
, 0, sizeof (arm_insn_decode_record
));
14390 arm_record
.gdbarch
= gdbarch
;
14392 static const uint16_t insns
[] = {
14393 /* 1d ee 70 7f mrc 15, 0, r7, cr13, cr0, {3} */
14397 enum bfd_endian endian
= gdbarch_byte_order_for_code (arm_record
.gdbarch
);
14398 instruction_reader_thumb
reader (endian
, insns
);
14399 int ret
= decode_insn (reader
, &arm_record
, THUMB2_RECORD
,
14400 THUMB2_INSN_SIZE_BYTES
);
14402 SELF_CHECK (ret
== 0);
14403 SELF_CHECK (arm_record
.mem_rec_count
== 0);
14404 SELF_CHECK (arm_record
.reg_rec_count
== 1);
14405 SELF_CHECK (arm_record
.arm_regs
[0] == 7);
14409 /* Instruction reader from manually cooked instruction sequences. */
14411 class test_arm_instruction_reader
: public arm_instruction_reader
14414 explicit test_arm_instruction_reader (gdb::array_view
<const uint32_t> insns
)
14418 uint32_t read (CORE_ADDR memaddr
, enum bfd_endian byte_order
) const override
14420 SELF_CHECK (memaddr
% 4 == 0);
14421 SELF_CHECK (memaddr
/ 4 < m_insns
.size ());
14423 return m_insns
[memaddr
/ 4];
14427 const gdb::array_view
<const uint32_t> m_insns
;
14431 arm_analyze_prologue_test ()
14433 for (bfd_endian endianness
: {BFD_ENDIAN_LITTLE
, BFD_ENDIAN_BIG
})
14435 struct gdbarch_info info
;
14436 info
.byte_order
= endianness
;
14437 info
.byte_order_for_code
= endianness
;
14438 info
.bfd_arch_info
= bfd_scan_arch ("arm");
14440 struct gdbarch
*gdbarch
= gdbarch_find_by_info (info
);
14442 SELF_CHECK (gdbarch
!= NULL
);
14444 /* The "sub" instruction contains an immediate value rotate count of 0,
14445 which resulted in a 32-bit shift of a 32-bit value, caught by
14447 const uint32_t insns
[] = {
14448 0xe92d4ff0, /* push {r4, r5, r6, r7, r8, r9, sl, fp, lr} */
14449 0xe1a05000, /* mov r5, r0 */
14450 0xe5903020, /* ldr r3, [r0, #32] */
14451 0xe24dd044, /* sub sp, sp, #68 ; 0x44 */
14454 test_arm_instruction_reader
mem_reader (insns
);
14455 arm_prologue_cache cache
;
14456 arm_cache_init (&cache
, gdbarch
);
14458 arm_analyze_prologue (gdbarch
, 0, sizeof (insns
) - 1, &cache
, mem_reader
);
14462 } // namespace selftests
14463 #endif /* GDB_SELF_TEST */
14465 /* Cleans up local record registers and memory allocations. */
14468 deallocate_reg_mem (arm_insn_decode_record
*record
)
14470 xfree (record
->arm_regs
);
14471 xfree (record
->arm_mems
);
14475 /* Parse the current instruction and record the values of the registers and
14476 memory that will be changed in current instruction to record_arch_list".
14477 Return -1 if something is wrong. */
14480 arm_process_record (struct gdbarch
*gdbarch
, struct regcache
*regcache
,
14481 CORE_ADDR insn_addr
)
14484 uint32_t no_of_rec
= 0;
14485 uint32_t ret
= 0; /* return value: -1:record failure ; 0:success */
14486 ULONGEST t_bit
= 0, insn_id
= 0;
14488 ULONGEST u_regval
= 0;
14490 arm_insn_decode_record arm_record
;
14492 memset (&arm_record
, 0, sizeof (arm_insn_decode_record
));
14493 arm_record
.regcache
= regcache
;
14494 arm_record
.this_addr
= insn_addr
;
14495 arm_record
.gdbarch
= gdbarch
;
14498 if (record_debug
> 1)
14500 gdb_printf (gdb_stdlog
, "Process record: arm_process_record "
14502 paddress (gdbarch
, arm_record
.this_addr
));
14505 instruction_reader reader
;
14506 if (extract_arm_insn (reader
, &arm_record
, 2))
14510 gdb_printf (gdb_stdlog
,
14511 _("Process record: error reading memory at "
14512 "addr %s len = %d.\n"),
14513 paddress (arm_record
.gdbarch
,
14514 arm_record
.this_addr
), 2);
14519 /* Check the insn, whether it is thumb or arm one. */
14521 t_bit
= arm_psr_thumb_bit (arm_record
.gdbarch
);
14522 regcache_raw_read_unsigned (arm_record
.regcache
, ARM_PS_REGNUM
, &u_regval
);
14525 if (!(u_regval
& t_bit
))
14527 /* We are decoding arm insn. */
14528 ret
= decode_insn (reader
, &arm_record
, ARM_RECORD
, ARM_INSN_SIZE_BYTES
);
14532 insn_id
= bits (arm_record
.arm_insn
, 11, 15);
14533 /* is it thumb2 insn? */
14534 if ((0x1D == insn_id
) || (0x1E == insn_id
) || (0x1F == insn_id
))
14536 ret
= decode_insn (reader
, &arm_record
, THUMB2_RECORD
,
14537 THUMB2_INSN_SIZE_BYTES
);
14541 /* We are decoding thumb insn. */
14542 ret
= decode_insn (reader
, &arm_record
, THUMB_RECORD
,
14543 THUMB_INSN_SIZE_BYTES
);
14549 /* Record registers. */
14550 record_full_arch_list_add_reg (arm_record
.regcache
, ARM_PC_REGNUM
);
14551 if (arm_record
.arm_regs
)
14553 for (no_of_rec
= 0; no_of_rec
< arm_record
.reg_rec_count
; no_of_rec
++)
14555 if (record_full_arch_list_add_reg
14556 (arm_record
.regcache
, arm_record
.arm_regs
[no_of_rec
]))
14560 /* Record memories. */
14561 if (arm_record
.arm_mems
)
14563 for (no_of_rec
= 0; no_of_rec
< arm_record
.mem_rec_count
; no_of_rec
++)
14565 if (record_full_arch_list_add_mem
14566 ((CORE_ADDR
)arm_record
.arm_mems
[no_of_rec
].addr
,
14567 arm_record
.arm_mems
[no_of_rec
].len
))
14572 if (record_full_arch_list_add_end ())
14577 deallocate_reg_mem (&arm_record
);
14582 /* See arm-tdep.h. */
14584 const target_desc
*
14585 arm_read_description (arm_fp_type fp_type
, bool tls
)
14587 struct target_desc
*tdesc
= tdesc_arm_list
[fp_type
][tls
];
14589 if (tdesc
== nullptr)
14591 tdesc
= arm_create_target_description (fp_type
, tls
);
14592 tdesc_arm_list
[fp_type
][tls
] = tdesc
;
14598 /* See arm-tdep.h. */
14600 const target_desc
*
14601 arm_read_mprofile_description (arm_m_profile_type m_type
)
14603 struct target_desc
*tdesc
= tdesc_arm_mprofile_list
[m_type
];
14605 if (tdesc
== nullptr)
14607 tdesc
= arm_create_mprofile_target_description (m_type
);
14608 tdesc_arm_mprofile_list
[m_type
] = tdesc
;