Share some ARM target dependent code from GDB with GDBServer
[deliverable/binutils-gdb.git] / gdb / arm-tdep.h
CommitLineData
34e8f22d 1/* Common target dependent code for GDB on ARM systems.
32d0add0 2 Copyright (C) 2002-2015 Free Software Foundation, Inc.
34e8f22d
RE
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
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
34e8f22d
RE
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
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
34e8f22d 18
47ccd048
MK
19#ifndef ARM_TDEP_H
20#define ARM_TDEP_H
21
cb587d83 22/* Forward declarations. */
47ccd048 23struct gdbarch;
cb587d83 24struct regset;
3352110b 25struct address_space;
cb587d83 26
ec741292 27#include "arch/arm.h"
34e8f22d 28
34e8f22d
RE
29/* Say how long FP registers are. Used for documentation purposes and
30 code readability in this header. IEEE extended doubles are 80
31 bits. DWORD aligned they use 96 bits. */
7a5ea0d4 32#define FP_REGISTER_SIZE 12
34e8f22d 33
3184d3f9
JL
34/* Say how long VFP double precision registers are. Used for documentation
35 purposes and code readability. These are fixed at 64 bits. */
36#define VFP_REGISTER_SIZE 8
37
34e8f22d 38/* Number of machine registers. The only define actually required
f57d151a 39 is gdbarch_num_regs. The other definitions are used for documentation
34e8f22d
RE
40 purposes and code readability. */
41/* For 26 bit ARM code, a fake copy of the PC is placed in register 25 (PS)
42 (and called PS for processor status) so the status bits can be cleared
43 from the PC (register 15). For 32 bit ARM code, a copy of CPSR is placed
44 in PS. */
45#define NUM_FREGS 8 /* Number of floating point registers. */
46#define NUM_SREGS 2 /* Number of status registers. */
47#define NUM_GREGS 16 /* Number of general purpose registers. */
48
49
9779414d 50
08216dd7
RE
51/* Type of floating-point code in use by inferior. There are really 3 models
52 that are traditionally supported (plus the endianness issue), but gcc can
53 only generate 2 of those. The third is APCS_FLOAT, where arguments to
54 functions are passed in floating-point registers.
55
fd50bc42
RE
56 In addition to the traditional models, VFP adds two more.
57
58 If you update this enum, don't forget to update fp_model_strings in
59 arm-tdep.c. */
08216dd7
RE
60
61enum arm_float_model
62{
fd50bc42
RE
63 ARM_FLOAT_AUTO, /* Automatic detection. Do not set in tdep. */
64 ARM_FLOAT_SOFT_FPA, /* Traditional soft-float (mixed-endian on LE ARM). */
65 ARM_FLOAT_FPA, /* FPA co-processor. GCC calling convention. */
66 ARM_FLOAT_SOFT_VFP, /* Soft-float with pure-endian doubles. */
67 ARM_FLOAT_VFP, /* Full VFP calling convention. */
68 ARM_FLOAT_LAST /* Keep at end. */
08216dd7
RE
69};
70
28e97307
DJ
71/* ABI used by the inferior. */
72enum arm_abi_kind
73{
74 ARM_ABI_AUTO,
75 ARM_ABI_APCS,
76 ARM_ABI_AAPCS,
77 ARM_ABI_LAST
78};
fd50bc42 79
7c00367c
MK
80/* Convention for returning structures. */
81
82enum struct_return
83{
84 pcc_struct_return, /* Return "short" structures in memory. */
85 reg_struct_return /* Return "short" structures in registers. */
86};
87
97e03143
RE
88/* Target-dependent structure in gdbarch. */
89struct gdbarch_tdep
90{
28e97307
DJ
91 /* The ABI for this architecture. It should never be set to
92 ARM_ABI_AUTO. */
93 enum arm_abi_kind arm_abi;
94
08216dd7
RE
95 enum arm_float_model fp_model; /* Floating point calling conventions. */
96
ff6f572f 97 int have_fpa_registers; /* Does the target report the FPA registers? */
a56cc1ce 98 int have_wmmx_registers; /* Does the target report the WMMX registers? */
330c6ca9
YQ
99 /* The number of VFP registers reported by the target. It is zero
100 if VFP registers are not supported. */
101 int vfp_register_count;
58d6951d
DJ
102 int have_vfp_pseudos; /* Are we synthesizing the single precision
103 VFP registers? */
104 int have_neon_pseudos; /* Are we synthesizing the quad precision
105 NEON registers? Requires
106 have_vfp_pseudos. */
107 int have_neon; /* Do we have a NEON unit? */
ff6f572f 108
9779414d 109 int is_m; /* Does the target follow the "M" profile. */
97e03143
RE
110 CORE_ADDR lowest_pc; /* Lowest address at which instructions
111 will appear. */
9df628e0 112
948f8e3d 113 const gdb_byte *arm_breakpoint; /* Breakpoint pattern for an ARM insn. */
9df628e0 114 int arm_breakpoint_size; /* And its size. */
948f8e3d 115 const gdb_byte *thumb_breakpoint; /* Breakpoint pattern for a Thumb insn. */
9df628e0
RE
116 int thumb_breakpoint_size; /* And its size. */
117
177321bd
DJ
118 /* If the Thumb breakpoint is an undefined instruction (which is
119 affected by IT blocks) rather than a BKPT instruction (which is
120 not), then we need a 32-bit Thumb breakpoint to preserve the
121 instruction count in IT blocks. */
948f8e3d 122 const gdb_byte *thumb2_breakpoint;
177321bd
DJ
123 int thumb2_breakpoint_size;
124
0963b4bd 125 int jb_pc; /* Offset to PC value in jump buffer.
9df628e0
RE
126 If this is negative, longjmp support
127 will be disabled. */
128 size_t jb_elt_size; /* And the size of each entry in the buf. */
cb587d83 129
7c00367c
MK
130 /* Convention for returning structures. */
131 enum struct_return struct_return;
132
27067745
UW
133 /* ISA-specific data types. */
134 struct type *arm_ext_type;
58d6951d
DJ
135 struct type *neon_double_type;
136 struct type *neon_quad_type;
25b41d01
YQ
137
138 /* Return the expected next PC if FRAME is stopped at a syscall
139 instruction. */
140 CORE_ADDR (*syscall_next_pc) (struct frame_info *frame);
72508ac0 141
97dfe206
OJ
142 /* syscall record. */
143 int (*arm_syscall_record) (struct regcache *regcache, unsigned long svc_number);
97e03143
RE
144};
145
cca44b1b
JB
146/* Structures used for displaced stepping. */
147
148/* The maximum number of temporaries available for displaced instructions. */
149#define DISPLACED_TEMPS 16
150/* The maximum number of modified instructions generated for one single-stepped
151 instruction, including the breakpoint (usually at the end of the instruction
152 sequence) and any scratch words, etc. */
153#define DISPLACED_MODIFIED_INSNS 8
154
155struct displaced_step_closure
156{
157 ULONGEST tmp[DISPLACED_TEMPS];
158 int rd;
159 int wrote_to_pc;
160 union
161 {
162 struct
163 {
164 int xfersize;
165 int rn; /* Writeback register. */
166 unsigned int immed : 1; /* Offset is immediate. */
167 unsigned int writeback : 1; /* Perform base-register writeback. */
168 unsigned int restore_r4 : 1; /* Used r4 as scratch. */
169 } ldst;
170
171 struct
172 {
173 unsigned long dest;
174 unsigned int link : 1;
175 unsigned int exchange : 1;
176 unsigned int cond : 4;
177 } branch;
178
179 struct
180 {
181 unsigned int regmask;
182 int rn;
183 CORE_ADDR xfer_addr;
184 unsigned int load : 1;
185 unsigned int user : 1;
186 unsigned int increment : 1;
187 unsigned int before : 1;
188 unsigned int writeback : 1;
189 unsigned int cond : 4;
190 } block;
191
192 struct
193 {
194 unsigned int immed : 1;
195 } preload;
196
197 struct
198 {
199 /* If non-NULL, override generic SVC handling (e.g. for a particular
200 OS). */
bd18283a 201 int (*copy_svc_os) (struct gdbarch *gdbarch, struct regcache *regs,
cca44b1b
JB
202 struct displaced_step_closure *dsc);
203 } svc;
204 } u;
4db71c0b
YQ
205
206 /* The size of original instruction, 2 or 4. */
207 unsigned int insn_size;
208 /* True if the original insn (and thus all replacement insns) are Thumb
209 instead of ARM. */
210 unsigned int is_thumb;
211
212 /* The slots in the array is used in this way below,
213 - ARM instruction occupies one slot,
214 - Thumb 16 bit instruction occupies one slot,
215 - Thumb 32-bit instruction occupies *two* slots, one part for each. */
cca44b1b
JB
216 unsigned long modinsn[DISPLACED_MODIFIED_INSNS];
217 int numinsns;
218 CORE_ADDR insn_addr;
219 CORE_ADDR scratch_base;
220 void (*cleanup) (struct gdbarch *, struct regcache *,
221 struct displaced_step_closure *);
222};
223
224/* Values for the WRITE_PC argument to displaced_write_reg. If the register
225 write may write to the PC, specifies the way the CPSR T bit, etc. is
226 modified by the instruction. */
227
228enum pc_write_style
229{
230 BRANCH_WRITE_PC,
231 BX_WRITE_PC,
232 LOAD_WRITE_PC,
233 ALU_WRITE_PC,
234 CANNOT_WRITE_PC
235};
236
237extern void
b434a28f
YQ
238 arm_process_displaced_insn (struct gdbarch *gdbarch, CORE_ADDR from,
239 CORE_ADDR to, struct regcache *regs,
cca44b1b
JB
240 struct displaced_step_closure *dsc);
241extern void
242 arm_displaced_init_closure (struct gdbarch *gdbarch, CORE_ADDR from,
243 CORE_ADDR to, struct displaced_step_closure *dsc);
244extern ULONGEST
36073a92
YQ
245 displaced_read_reg (struct regcache *regs, struct displaced_step_closure *dsc,
246 int regno);
cca44b1b
JB
247extern void
248 displaced_write_reg (struct regcache *regs,
249 struct displaced_step_closure *dsc, int regno,
250 ULONGEST val, enum pc_write_style write_pc);
7c00367c 251
6dc13412 252CORE_ADDR arm_skip_stub (struct frame_info *, CORE_ADDR);
daddc3c1 253CORE_ADDR arm_get_next_pc (struct frame_info *, CORE_ADDR);
18819fa6
UW
254void arm_insert_single_step_breakpoint (struct gdbarch *,
255 struct address_space *, CORE_ADDR);
35f73cfc 256int arm_deal_with_atomic_sequence (struct frame_info *);
0b1b3e42 257int arm_software_single_step (struct frame_info *);
25b41d01 258int arm_frame_is_thumb (struct frame_info *frame);
190dce09 259
cca44b1b
JB
260extern struct displaced_step_closure *
261 arm_displaced_step_copy_insn (struct gdbarch *, CORE_ADDR, CORE_ADDR,
262 struct regcache *);
263extern void arm_displaced_step_fixup (struct gdbarch *,
264 struct displaced_step_closure *,
265 CORE_ADDR, CORE_ADDR, struct regcache *);
266
478fd957
UW
267/* Return the bit mask in ARM_PS_REGNUM that indicates Thumb mode. */
268extern int arm_psr_thumb_bit (struct gdbarch *);
269
e3039479
UW
270/* Is the instruction at the given memory address a Thumb or ARM
271 instruction? */
272extern int arm_pc_is_thumb (struct gdbarch *, CORE_ADDR);
273
72508ac0
PO
274extern int arm_process_record (struct gdbarch *gdbarch,
275 struct regcache *regcache, CORE_ADDR addr);
47ccd048
MK
276/* Functions exported from armbsd-tdep.h. */
277
278/* Return the appropriate register set for the core section identified
279 by SECT_NAME and SECT_SIZE. */
280
ed09174e
AA
281extern void
282 armbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
283 iterate_over_regset_sections_cb *cb,
284 void *cb_data,
285 const struct regcache *regcache);
47ccd048 286
ef7e8358
UW
287/* Target descriptions. */
288extern struct target_desc *tdesc_arm_with_m;
289extern struct target_desc *tdesc_arm_with_iwmmxt;
290extern struct target_desc *tdesc_arm_with_vfpv2;
291extern struct target_desc *tdesc_arm_with_vfpv3;
292extern struct target_desc *tdesc_arm_with_neon;
293
47ccd048 294#endif /* arm-tdep.h */
This page took 1.021777 seconds and 4 git commands to generate.