705aa77a0ed65f4f6f008152e8fdf2b12f8759a4
[binutils-gdb.git] / gdb / arm-tdep.h
1 /* Common target dependent code for GDB on ARM systems.
2 Copyright (C) 2002-2021 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #ifndef ARM_TDEP_H
20 #define ARM_TDEP_H
21
22 /* Forward declarations. */
23 struct regset;
24 struct address_space;
25 struct get_next_pcs;
26 struct arm_get_next_pcs;
27 struct gdb_get_next_pcs;
28
29 /* Set to true if the 32-bit mode is in use. */
30
31 extern bool arm_apcs_32;
32
33 #include "gdbarch.h"
34 #include "arch/arm.h"
35 #include "infrun.h"
36
37 #include <vector>
38
39 /* Number of machine registers. The only define actually required
40 is gdbarch_num_regs. The other definitions are used for documentation
41 purposes and code readability. */
42 /* For 26 bit ARM code, a fake copy of the PC is placed in register 25 (PS)
43 (and called PS for processor status) so the status bits can be cleared
44 from the PC (register 15). For 32 bit ARM code, a copy of CPSR is placed
45 in PS. */
46 #define NUM_FREGS 8 /* Number of floating point registers. */
47 #define NUM_SREGS 2 /* Number of status registers. */
48 #define NUM_GREGS 16 /* Number of general purpose registers. */
49
50
51
52 /* Type of floating-point code in use by inferior. There are really 3 models
53 that are traditionally supported (plus the endianness issue), but gcc can
54 only generate 2 of those. The third is APCS_FLOAT, where arguments to
55 functions are passed in floating-point registers.
56
57 In addition to the traditional models, VFP adds two more.
58
59 If you update this enum, don't forget to update fp_model_strings in
60 arm-tdep.c. */
61
62 enum arm_float_model
63 {
64 ARM_FLOAT_AUTO, /* Automatic detection. Do not set in tdep. */
65 ARM_FLOAT_SOFT_FPA, /* Traditional soft-float (mixed-endian on LE ARM). */
66 ARM_FLOAT_FPA, /* FPA co-processor. GCC calling convention. */
67 ARM_FLOAT_SOFT_VFP, /* Soft-float with pure-endian doubles. */
68 ARM_FLOAT_VFP, /* Full VFP calling convention. */
69 ARM_FLOAT_LAST /* Keep at end. */
70 };
71
72 /* ABI used by the inferior. */
73 enum arm_abi_kind
74 {
75 ARM_ABI_AUTO,
76 ARM_ABI_APCS,
77 ARM_ABI_AAPCS,
78 ARM_ABI_LAST
79 };
80
81 /* Convention for returning structures. */
82
83 enum struct_return
84 {
85 pcc_struct_return, /* Return "short" structures in memory. */
86 reg_struct_return /* Return "short" structures in registers. */
87 };
88
89 /* Target-dependent structure in gdbarch. */
90 struct gdbarch_tdep
91 {
92 /* The ABI for this architecture. It should never be set to
93 ARM_ABI_AUTO. */
94 enum arm_abi_kind arm_abi;
95
96 enum arm_float_model fp_model; /* Floating point calling conventions. */
97
98 bool have_fpa_registers; /* Does the target report the FPA registers? */
99 bool have_wmmx_registers; /* Does the target report the WMMX registers? */
100 /* The number of VFP registers reported by the target. It is zero
101 if VFP registers are not supported. */
102 int vfp_register_count;
103 bool have_s_pseudos; /* Are we synthesizing the single precision
104 VFP registers? */
105 int s_pseudo_base; /* Register number for the first S pseudo
106 register. */
107 int s_pseudo_count; /* Number of S pseudo registers. */
108 bool have_q_pseudos; /* Are we synthesizing the quad precision
109 Q (NEON or MVE) registers? Requires
110 have_s_pseudos. */
111 int q_pseudo_base; /* Register number for the first quad
112 precision pseudo register. */
113 int q_pseudo_count; /* Number of quad precision pseudo
114 registers. */
115 bool have_neon; /* Do we have a NEON unit? */
116
117 bool have_mve; /* Do we have a MVE extension? */
118 int mve_vpr_regnum; /* MVE VPR register number. */
119 int mve_pseudo_base; /* Number of the first MVE pseudo register. */
120 int mve_pseudo_count; /* Total number of MVE pseudo registers. */
121
122 bool is_m; /* Does the target follow the "M" profile. */
123 CORE_ADDR lowest_pc; /* Lowest address at which instructions
124 will appear. */
125
126 const gdb_byte *arm_breakpoint; /* Breakpoint pattern for an ARM insn. */
127 int arm_breakpoint_size; /* And its size. */
128 const gdb_byte *thumb_breakpoint; /* Breakpoint pattern for a Thumb insn. */
129 int thumb_breakpoint_size; /* And its size. */
130
131 /* If the Thumb breakpoint is an undefined instruction (which is
132 affected by IT blocks) rather than a BKPT instruction (which is
133 not), then we need a 32-bit Thumb breakpoint to preserve the
134 instruction count in IT blocks. */
135 const gdb_byte *thumb2_breakpoint;
136 int thumb2_breakpoint_size;
137
138 int jb_pc; /* Offset to PC value in jump buffer.
139 If this is negative, longjmp support
140 will be disabled. */
141 size_t jb_elt_size; /* And the size of each entry in the buf. */
142
143 /* Convention for returning structures. */
144 enum struct_return struct_return;
145
146 /* ISA-specific data types. */
147 struct type *arm_ext_type;
148 struct type *neon_double_type;
149 struct type *neon_quad_type;
150
151 /* syscall record. */
152 int (*arm_syscall_record) (struct regcache *regcache, unsigned long svc_number);
153 };
154
155 /* Structures used for displaced stepping. */
156
157 /* The maximum number of temporaries available for displaced instructions. */
158 #define DISPLACED_TEMPS 16
159 /* The maximum number of modified instructions generated for one single-stepped
160 instruction, including the breakpoint (usually at the end of the instruction
161 sequence) and any scratch words, etc. */
162 #define ARM_DISPLACED_MODIFIED_INSNS 8
163
164 struct arm_displaced_step_copy_insn_closure
165 : public displaced_step_copy_insn_closure
166 {
167 ULONGEST tmp[DISPLACED_TEMPS];
168 int rd;
169 int wrote_to_pc;
170 union
171 {
172 struct
173 {
174 int xfersize;
175 int rn; /* Writeback register. */
176 unsigned int immed : 1; /* Offset is immediate. */
177 unsigned int writeback : 1; /* Perform base-register writeback. */
178 unsigned int restore_r4 : 1; /* Used r4 as scratch. */
179 } ldst;
180
181 struct
182 {
183 unsigned long dest;
184 unsigned int link : 1;
185 unsigned int exchange : 1;
186 unsigned int cond : 4;
187 } branch;
188
189 struct
190 {
191 unsigned int regmask;
192 int rn;
193 CORE_ADDR xfer_addr;
194 unsigned int load : 1;
195 unsigned int user : 1;
196 unsigned int increment : 1;
197 unsigned int before : 1;
198 unsigned int writeback : 1;
199 unsigned int cond : 4;
200 } block;
201
202 struct
203 {
204 unsigned int immed : 1;
205 } preload;
206
207 struct
208 {
209 /* If non-NULL, override generic SVC handling (e.g. for a particular
210 OS). */
211 int (*copy_svc_os) (struct gdbarch *gdbarch, struct regcache *regs,
212 arm_displaced_step_copy_insn_closure *dsc);
213 } svc;
214 } u;
215
216 /* The size of original instruction, 2 or 4. */
217 unsigned int insn_size;
218 /* True if the original insn (and thus all replacement insns) are Thumb
219 instead of ARM. */
220 unsigned int is_thumb;
221
222 /* The slots in the array is used in this way below,
223 - ARM instruction occupies one slot,
224 - Thumb 16 bit instruction occupies one slot,
225 - Thumb 32-bit instruction occupies *two* slots, one part for each. */
226 unsigned long modinsn[ARM_DISPLACED_MODIFIED_INSNS];
227 int numinsns;
228 CORE_ADDR insn_addr;
229 CORE_ADDR scratch_base;
230 void (*cleanup) (struct gdbarch *, struct regcache *,
231 arm_displaced_step_copy_insn_closure *);
232 };
233
234 /* Values for the WRITE_PC argument to displaced_write_reg. If the register
235 write may write to the PC, specifies the way the CPSR T bit, etc. is
236 modified by the instruction. */
237
238 enum pc_write_style
239 {
240 BRANCH_WRITE_PC,
241 BX_WRITE_PC,
242 LOAD_WRITE_PC,
243 ALU_WRITE_PC,
244 CANNOT_WRITE_PC
245 };
246
247 extern void
248 arm_process_displaced_insn (struct gdbarch *gdbarch, CORE_ADDR from,
249 CORE_ADDR to, struct regcache *regs,
250 arm_displaced_step_copy_insn_closure *dsc);
251 extern void
252 arm_displaced_init_closure (struct gdbarch *gdbarch, CORE_ADDR from,
253 CORE_ADDR to,
254 arm_displaced_step_copy_insn_closure *dsc);
255 extern ULONGEST
256 displaced_read_reg (regcache *regs, arm_displaced_step_copy_insn_closure *dsc,
257 int regno);
258 extern void
259 displaced_write_reg (struct regcache *regs,
260 arm_displaced_step_copy_insn_closure *dsc, int regno,
261 ULONGEST val, enum pc_write_style write_pc);
262
263 CORE_ADDR arm_skip_stub (struct frame_info *, CORE_ADDR);
264
265 ULONGEST arm_get_next_pcs_read_memory_unsigned_integer (CORE_ADDR memaddr,
266 int len,
267 int byte_order);
268
269 CORE_ADDR arm_get_next_pcs_addr_bits_remove (struct arm_get_next_pcs *self,
270 CORE_ADDR val);
271
272 int arm_get_next_pcs_is_thumb (struct arm_get_next_pcs *self);
273
274 std::vector<CORE_ADDR> arm_software_single_step (struct regcache *);
275 int arm_is_thumb (struct regcache *regcache);
276 int arm_frame_is_thumb (struct frame_info *frame);
277
278 extern void arm_displaced_step_fixup (struct gdbarch *,
279 displaced_step_copy_insn_closure *,
280 CORE_ADDR, CORE_ADDR, struct regcache *);
281
282 /* Return the bit mask in ARM_PS_REGNUM that indicates Thumb mode. */
283 extern int arm_psr_thumb_bit (struct gdbarch *);
284
285 /* Is the instruction at the given memory address a Thumb or ARM
286 instruction? */
287 extern int arm_pc_is_thumb (struct gdbarch *, CORE_ADDR);
288
289 extern int arm_process_record (struct gdbarch *gdbarch,
290 struct regcache *regcache, CORE_ADDR addr);
291 /* Functions exported from arm-bsd-tdep.h. */
292
293 /* Return the appropriate register set for the core section identified
294 by SECT_NAME and SECT_SIZE. */
295
296 extern void
297 armbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
298 iterate_over_regset_sections_cb *cb,
299 void *cb_data,
300 const struct regcache *regcache);
301
302 /* Get the correct Arm target description with given FP hardware type. */
303 const target_desc *arm_read_description (arm_fp_type fp_type);
304
305 /* Get the correct Arm M-Profile target description with given hardware
306 type. */
307 const target_desc *arm_read_mprofile_description (arm_m_profile_type m_type);
308
309 #endif /* arm-tdep.h */