Rename emit_load_store to aarch64_emit_load_store
[deliverable/binutils-gdb.git] / gdb / arch / aarch64-insn.h
CommitLineData
787749ea
PL
1/* Copyright (C) 2009-2015 Free Software Foundation, Inc.
2 Contributed by ARM Ltd.
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 AARCH64_INSN_H
20#define AARCH64_INSN_H 1
21
22extern int aarch64_debug;
23
b6542f81
YQ
24/* List of opcodes that we need for building the jump pad and relocating
25 an instruction. */
26
27enum aarch64_opcodes
28{
29 /* B 0001 01ii iiii iiii iiii iiii iiii iiii */
30 /* BL 1001 01ii iiii iiii iiii iiii iiii iiii */
31 /* B.COND 0101 0100 iiii iiii iiii iiii iii0 cccc */
32 /* CBZ s011 0100 iiii iiii iiii iiii iiir rrrr */
33 /* CBNZ s011 0101 iiii iiii iiii iiii iiir rrrr */
34 /* TBZ b011 0110 bbbb biii iiii iiii iiir rrrr */
35 /* TBNZ b011 0111 bbbb biii iiii iiii iiir rrrr */
36 B = 0x14000000,
37 BL = 0x80000000 | B,
38 BCOND = 0x40000000 | B,
39 CBZ = 0x20000000 | B,
40 CBNZ = 0x21000000 | B,
41 TBZ = 0x36000000 | B,
42 TBNZ = 0x37000000 | B,
43 /* BLR 1101 0110 0011 1111 0000 00rr rrr0 0000 */
44 BLR = 0xd63f0000,
45 /* RET 1101 0110 0101 1111 0000 00rr rrr0 0000 */
46 RET = 0xd65f0000,
47 /* STP s010 100o o0ii iiii irrr rrrr rrrr rrrr */
48 /* LDP s010 100o o1ii iiii irrr rrrr rrrr rrrr */
49 /* STP (SIMD&VFP) ss10 110o o0ii iiii irrr rrrr rrrr rrrr */
50 /* LDP (SIMD&VFP) ss10 110o o1ii iiii irrr rrrr rrrr rrrr */
51 STP = 0x28000000,
52 LDP = 0x28400000,
53 STP_SIMD_VFP = 0x04000000 | STP,
54 LDP_SIMD_VFP = 0x04000000 | LDP,
55 /* STR ss11 100o 00xi iiii iiii xxrr rrrr rrrr */
56 /* LDR ss11 100o 01xi iiii iiii xxrr rrrr rrrr */
57 /* LDRSW 1011 100o 10xi iiii iiii xxrr rrrr rrrr */
58 STR = 0x38000000,
59 LDR = 0x00400000 | STR,
60 LDRSW = 0x80800000 | STR,
61 /* LDAXR ss00 1000 0101 1111 1111 11rr rrrr rrrr */
62 LDAXR = 0x085ffc00,
63 /* STXR ss00 1000 000r rrrr 0111 11rr rrrr rrrr */
64 STXR = 0x08007c00,
65 /* STLR ss00 1000 1001 1111 1111 11rr rrrr rrrr */
66 STLR = 0x089ffc00,
67 /* MOV s101 0010 1xxi iiii iiii iiii iiir rrrr */
68 /* MOVK s111 0010 1xxi iiii iiii iiii iiir rrrr */
69 MOV = 0x52800000,
70 MOVK = 0x20000000 | MOV,
71 /* ADD s00o ooo1 xxxx xxxx xxxx xxxx xxxx xxxx */
72 /* SUB s10o ooo1 xxxx xxxx xxxx xxxx xxxx xxxx */
73 /* SUBS s11o ooo1 xxxx xxxx xxxx xxxx xxxx xxxx */
74 ADD = 0x01000000,
75 SUB = 0x40000000 | ADD,
76 SUBS = 0x20000000 | SUB,
77 /* AND s000 1010 xx0x xxxx xxxx xxxx xxxx xxxx */
78 /* ORR s010 1010 xx0x xxxx xxxx xxxx xxxx xxxx */
79 /* ORN s010 1010 xx1x xxxx xxxx xxxx xxxx xxxx */
80 /* EOR s100 1010 xx0x xxxx xxxx xxxx xxxx xxxx */
81 AND = 0x0a000000,
82 ORR = 0x20000000 | AND,
83 ORN = 0x00200000 | ORR,
84 EOR = 0x40000000 | AND,
85 /* LSLV s001 1010 110r rrrr 0010 00rr rrrr rrrr */
86 /* LSRV s001 1010 110r rrrr 0010 01rr rrrr rrrr */
87 /* ASRV s001 1010 110r rrrr 0010 10rr rrrr rrrr */
88 LSLV = 0x1ac02000,
89 LSRV = 0x00000400 | LSLV,
90 ASRV = 0x00000800 | LSLV,
91 /* SBFM s001 0011 0nii iiii iiii iirr rrrr rrrr */
92 SBFM = 0x13000000,
93 /* UBFM s101 0011 0nii iiii iiii iirr rrrr rrrr */
94 UBFM = 0x40000000 | SBFM,
95 /* CSINC s001 1010 100r rrrr cccc 01rr rrrr rrrr */
96 CSINC = 0x9a800400,
97 /* MUL s001 1011 000r rrrr 0111 11rr rrrr rrrr */
98 MUL = 0x1b007c00,
99 /* MSR (register) 1101 0101 0001 oooo oooo oooo ooor rrrr */
100 /* MRS 1101 0101 0011 oooo oooo oooo ooor rrrr */
101 MSR = 0xd5100000,
102 MRS = 0x00200000 | MSR,
103 /* HINT 1101 0101 0000 0011 0010 oooo ooo1 1111 */
104 HINT = 0xd503201f,
105 SEVL = (5 << 5) | HINT,
106 WFE = (2 << 5) | HINT,
107 NOP = (0 << 5) | HINT,
108};
109
110/* Representation of a general purpose register of the form xN or wN.
111
112 This type is used by emitting functions that take registers as operands. */
113
114struct aarch64_register
115{
116 unsigned num;
117 int is64;
118};
119
120/* Representation of a memory operand, used for load and store
121 instructions.
122
123 The types correspond to the following variants:
124
125 MEMORY_OPERAND_OFFSET: LDR rt, [rn, #offset]
126 MEMORY_OPERAND_PREINDEX: LDR rt, [rn, #index]!
127 MEMORY_OPERAND_POSTINDEX: LDR rt, [rn], #index */
128
129struct aarch64_memory_operand
130{
131 /* Type of the operand. */
132 enum
133 {
134 MEMORY_OPERAND_OFFSET,
135 MEMORY_OPERAND_PREINDEX,
136 MEMORY_OPERAND_POSTINDEX,
137 } type;
138 /* Index from the base register. */
139 int32_t index;
140};
141
142/* Helper macro to mask and shift a value into a bitfield. */
143
144#define ENCODE(val, size, offset) \
145 ((uint32_t) ((val & ((1ULL << size) - 1)) << offset))
146
6ec5f4be
PL
147int aarch64_decode_adr (CORE_ADDR addr, uint32_t insn, int *is_adrp,
148 unsigned *rd, int32_t *offset);
787749ea
PL
149
150int aarch64_decode_b (CORE_ADDR addr, uint32_t insn, int *is_bl,
151 int32_t *offset);
152
153int aarch64_decode_bcond (CORE_ADDR addr, uint32_t insn, unsigned *cond,
154 int32_t *offset);
155
156int aarch64_decode_cb (CORE_ADDR addr, uint32_t insn, int *is64,
157 int *is_cbnz, unsigned *rn, int32_t *offset);
158
159int aarch64_decode_tb (CORE_ADDR addr, uint32_t insn, int *is_tbnz,
160 unsigned *bit, unsigned *rt, int32_t *imm);
161
246994ce
YQ
162int aarch64_decode_ldr_literal (CORE_ADDR addr, uint32_t insn, int *is_w,
163 int *is64, unsigned *rt, int32_t *offset);
164
165/* Data passed to each method of aarch64_insn_visitor. */
166
167struct aarch64_insn_data
168{
169 /* The instruction address. */
170 CORE_ADDR insn_addr;
171};
172
173/* Visit different instructions by different methods. */
174
175struct aarch64_insn_visitor
176{
177 /* Visit instruction B/BL OFFSET. */
178 void (*b) (const int is_bl, const int32_t offset,
179 struct aarch64_insn_data *data);
180
181 /* Visit instruction B.COND OFFSET. */
182 void (*b_cond) (const unsigned cond, const int32_t offset,
183 struct aarch64_insn_data *data);
184
185 /* Visit instruction CBZ/CBNZ Rn, OFFSET. */
186 void (*cb) (const int32_t offset, const int is_cbnz,
187 const unsigned rn, int is64,
188 struct aarch64_insn_data *data);
189
190 /* Visit instruction TBZ/TBNZ Rt, #BIT, OFFSET. */
191 void (*tb) (const int32_t offset, int is_tbnz,
192 const unsigned rt, unsigned bit,
193 struct aarch64_insn_data *data);
194
195 /* Visit instruction ADR/ADRP Rd, OFFSET. */
196 void (*adr) (const int32_t offset, const unsigned rd,
197 const int is_adrp, struct aarch64_insn_data *data);
198
199 /* Visit instruction LDR/LDRSW Rt, OFFSET. */
200 void (*ldr_literal) (const int32_t offset, const int is_sw,
201 const unsigned rt, const int is64,
202 struct aarch64_insn_data *data);
203
204 /* Visit instruction INSN of other kinds. */
205 void (*others) (const uint32_t insn, struct aarch64_insn_data *data);
206};
207
208void aarch64_relocate_instruction (uint32_t insn,
209 const struct aarch64_insn_visitor *visitor,
210 struct aarch64_insn_data *data);
211
b6542f81
YQ
212#define can_encode_int32(val, bits) \
213 (((val) >> (bits)) == 0 || ((val) >> (bits)) == -1)
214
215/* Write a B or BL instruction into *BUF.
216
217 B #offset
218 BL #offset
219
220 IS_BL specifies if the link register should be updated.
221 OFFSET is the immediate offset from the current PC. It is
222 byte-addressed but should be 4 bytes aligned. It has a limited range of
223 +/- 128MB (26 bits << 2). */
224
225#define emit_b(buf, is_bl, offset) \
e1c587c3 226 aarch64_emit_insn (buf, ((is_bl) ? BL : B) | (ENCODE ((offset) >> 2, 26, 0)))
b6542f81
YQ
227
228/* Write a BCOND instruction into *BUF.
229
230 B.COND #offset
231
232 COND specifies the condition field.
233 OFFSET is the immediate offset from the current PC. It is
234 byte-addressed but should be 4 bytes aligned. It has a limited range of
235 +/- 1MB (19 bits << 2). */
236
e1c587c3
YQ
237#define emit_bcond(buf, cond, offset) \
238 aarch64_emit_insn (buf, \
239 BCOND | ENCODE ((offset) >> 2, 19, 5) \
240 | ENCODE ((cond), 4, 0))
b6542f81
YQ
241
242/* Write a CBZ or CBNZ instruction into *BUF.
243
244 CBZ rt, #offset
245 CBNZ rt, #offset
246
247 IS_CBNZ distinguishes between CBZ and CBNZ instructions.
248 RN is the register to test.
249 OFFSET is the immediate offset from the current PC. It is
250 byte-addressed but should be 4 bytes aligned. It has a limited range of
251 +/- 1MB (19 bits << 2). */
252
e1c587c3
YQ
253#define emit_cb(buf, is_cbnz, rt, offset) \
254 aarch64_emit_insn (buf, \
255 ((is_cbnz) ? CBNZ : CBZ) \
256 | ENCODE (rt.is64, 1, 31) /* sf */ \
257 | ENCODE (offset >> 2, 19, 5) /* imm19 */ \
258 | ENCODE (rt.num, 5, 0))
b6542f81
YQ
259
260/* Write a LDR instruction into *BUF.
261
262 LDR rt, [rn, #offset]
263 LDR rt, [rn, #index]!
264 LDR rt, [rn], #index
265
266 RT is the register to store.
267 RN is the base address register.
268 OFFSET is the immediate to add to the base address. It is limited to
269 0 .. 32760 range (12 bits << 3). */
270
271#define emit_ldr(buf, rt, rn, operand) \
1c2e1515 272 aarch64_emit_load_store (buf, rt.is64 ? 3 : 2, LDR, rt, rn, operand)
b6542f81
YQ
273
274/* Write a LDRSW instruction into *BUF. The register size is 64-bit.
275
276 LDRSW xt, [rn, #offset]
277 LDRSW xt, [rn, #index]!
278 LDRSW xt, [rn], #index
279
280 RT is the register to store.
281 RN is the base address register.
282 OFFSET is the immediate to add to the base address. It is limited to
283 0 .. 16380 range (12 bits << 2). */
284
285#define emit_ldrsw(buf, rt, rn, operand) \
1c2e1515 286 aarch64_emit_load_store (buf, 3, LDRSW, rt, rn, operand)
b6542f81
YQ
287
288
289/* Write a TBZ or TBNZ instruction into *BUF.
290
291 TBZ rt, #bit, #offset
292 TBNZ rt, #bit, #offset
293
294 IS_TBNZ distinguishes between TBZ and TBNZ instructions.
295 RT is the register to test.
296 BIT is the index of the bit to test in register RT.
297 OFFSET is the immediate offset from the current PC. It is
298 byte-addressed but should be 4 bytes aligned. It has a limited range of
299 +/- 32KB (14 bits << 2). */
300
e1c587c3
YQ
301#define emit_tb(buf, is_tbnz, bit, rt, offset) \
302 aarch64_emit_insn (buf, \
303 ((is_tbnz) ? TBNZ: TBZ) \
304 | ENCODE (bit >> 5, 1, 31) /* b5 */ \
305 | ENCODE (bit, 5, 19) /* b40 */ \
306 | ENCODE (offset >> 2, 14, 5) /* imm14 */ \
307 | ENCODE (rt.num, 5, 0))
b6542f81
YQ
308
309/* Write a NOP instruction into *BUF. */
310
e1c587c3 311#define emit_nop(buf) aarch64_emit_insn (buf, NOP)
b6542f81 312
e1c587c3 313int aarch64_emit_insn (uint32_t *buf, uint32_t insn);
b6542f81 314
1c2e1515
YQ
315int aarch64_emit_load_store (uint32_t *buf, uint32_t size,
316 enum aarch64_opcodes opcode,
317 struct aarch64_register rt,
318 struct aarch64_register rn,
319 struct aarch64_memory_operand operand);
b6542f81 320
787749ea 321#endif
This page took 0.04 seconds and 4 git commands to generate.