]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - opcodes/aarch64-opc.h
[AArch64][SVE 23/32] Add SVE pattern and prfop operands
[thirdparty/binutils-gdb.git] / opcodes / aarch64-opc.h
CommitLineData
a06ea964 1/* aarch64-opc.h -- Header file for aarch64-opc.c and aarch64-opc-2.c.
6f2750fe 2 Copyright (C) 2012-2016 Free Software Foundation, Inc.
a06ea964
NC
3 Contributed by ARM Ltd.
4
5 This file is part of the GNU opcodes library.
6
7 This library 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, or (at your option)
10 any later version.
11
12 It is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; see the file COPYING3. If not,
19 see <http://www.gnu.org/licenses/>. */
20
21#ifndef OPCODES_AARCH64_OPC_H
22#define OPCODES_AARCH64_OPC_H
23
24#include <string.h>
25#include "opcode/aarch64.h"
26
27/* Instruction fields.
28 Keep synced with fields. */
29enum aarch64_field_kind
30{
31 FLD_NIL,
32 FLD_cond2,
33 FLD_nzcv,
34 FLD_defgh,
35 FLD_abc,
36 FLD_imm19,
37 FLD_immhi,
38 FLD_immlo,
39 FLD_size,
40 FLD_vldst_size,
41 FLD_op,
42 FLD_Q,
43 FLD_Rt,
44 FLD_Rd,
45 FLD_Rn,
46 FLD_Rt2,
47 FLD_Ra,
48 FLD_op2,
49 FLD_CRm,
50 FLD_CRn,
51 FLD_op1,
52 FLD_op0,
53 FLD_imm3,
54 FLD_cond,
55 FLD_opcode,
56 FLD_cmode,
57 FLD_asisdlso_opcode,
58 FLD_len,
59 FLD_Rm,
60 FLD_Rs,
61 FLD_option,
62 FLD_S,
63 FLD_hw,
64 FLD_opc,
65 FLD_opc1,
66 FLD_shift,
67 FLD_type,
68 FLD_ldst_size,
69 FLD_imm6,
70 FLD_imm4,
71 FLD_imm5,
72 FLD_imm7,
73 FLD_imm8,
74 FLD_imm9,
75 FLD_imm12,
76 FLD_imm14,
77 FLD_imm16,
78 FLD_imm26,
79 FLD_imms,
80 FLD_immr,
81 FLD_immb,
82 FLD_immh,
83 FLD_N,
84 FLD_index,
85 FLD_index2,
86 FLD_sf,
ee804238 87 FLD_lse_sz,
a06ea964
NC
88 FLD_H,
89 FLD_L,
90 FLD_M,
91 FLD_b5,
92 FLD_b40,
93 FLD_scale,
f11ad6bc
RS
94 FLD_SVE_Pd,
95 FLD_SVE_Pg3,
96 FLD_SVE_Pg4_5,
97 FLD_SVE_Pg4_10,
98 FLD_SVE_Pg4_16,
99 FLD_SVE_Pm,
100 FLD_SVE_Pn,
101 FLD_SVE_Pt,
102 FLD_SVE_Za_5,
103 FLD_SVE_Za_16,
104 FLD_SVE_Zd,
105 FLD_SVE_Zm_5,
106 FLD_SVE_Zm_16,
107 FLD_SVE_Zn,
108 FLD_SVE_Zt,
245d2e3f
RS
109 FLD_SVE_pattern,
110 FLD_SVE_prfop,
f11ad6bc 111 FLD_SVE_tszh,
a06ea964
NC
112};
113
114/* Field description. */
115struct aarch64_field
116{
117 int lsb;
118 int width;
119};
120
121typedef struct aarch64_field aarch64_field;
122
123extern const aarch64_field fields[];
124\f
125/* Operand description. */
126
127struct aarch64_operand
128{
129 enum aarch64_operand_class op_class;
130
131 /* Name of the operand code; used mainly for the purpose of internal
132 debugging. */
133 const char *name;
134
135 unsigned int flags;
136
137 /* The associated instruction bit-fields; no operand has more than 4
138 bit-fields */
139 enum aarch64_field_kind fields[4];
140
141 /* Brief description */
142 const char *desc;
143};
144
145typedef struct aarch64_operand aarch64_operand;
146
147extern const aarch64_operand aarch64_operands[];
148
149/* Operand flags. */
150
151#define OPD_F_HAS_INSERTER 0x00000001
152#define OPD_F_HAS_EXTRACTOR 0x00000002
153#define OPD_F_SEXT 0x00000004 /* Require sign-extension. */
154#define OPD_F_SHIFT_BY_2 0x00000008 /* Need to left shift the field
155 value by 2 to get the value
156 of an immediate operand. */
157#define OPD_F_MAYBE_SP 0x00000010 /* May potentially be SP. */
158
159static inline bfd_boolean
160operand_has_inserter (const aarch64_operand *operand)
161{
162 return (operand->flags & OPD_F_HAS_INSERTER) ? TRUE : FALSE;
163}
164
165static inline bfd_boolean
166operand_has_extractor (const aarch64_operand *operand)
167{
168 return (operand->flags & OPD_F_HAS_EXTRACTOR) ? TRUE : FALSE;
169}
170
171static inline bfd_boolean
172operand_need_sign_extension (const aarch64_operand *operand)
173{
174 return (operand->flags & OPD_F_SEXT) ? TRUE : FALSE;
175}
176
177static inline bfd_boolean
178operand_need_shift_by_two (const aarch64_operand *operand)
179{
180 return (operand->flags & OPD_F_SHIFT_BY_2) ? TRUE : FALSE;
181}
182
183static inline bfd_boolean
184operand_maybe_stack_pointer (const aarch64_operand *operand)
185{
186 return (operand->flags & OPD_F_MAYBE_SP) ? TRUE : FALSE;
187}
188
189/* Return the total width of the operand *OPERAND. */
190static inline unsigned
191get_operand_fields_width (const aarch64_operand *operand)
192{
193 int i = 0;
194 unsigned width = 0;
195 while (operand->fields[i] != FLD_NIL)
196 width += fields[operand->fields[i++]].width;
197 assert (width > 0 && width < 32);
198 return width;
199}
200
201static inline const aarch64_operand *
202get_operand_from_code (enum aarch64_opnd code)
203{
204 return aarch64_operands + code;
205}
206\f
207/* Operand qualifier and operand constraint checking. */
208
209int aarch64_match_operands_constraint (aarch64_inst *,
210 aarch64_operand_error *);
211
212/* Operand qualifier related functions. */
213const char* aarch64_get_qualifier_name (aarch64_opnd_qualifier_t);
214unsigned char aarch64_get_qualifier_nelem (aarch64_opnd_qualifier_t);
215aarch64_insn aarch64_get_qualifier_standard_value (aarch64_opnd_qualifier_t);
216int aarch64_find_best_match (const aarch64_inst *,
217 const aarch64_opnd_qualifier_seq_t *,
218 int, aarch64_opnd_qualifier_t *);
219
220static inline void
221reset_operand_qualifier (aarch64_inst *inst, int idx)
222{
223 assert (idx >=0 && idx < aarch64_num_of_operands (inst->opcode));
224 inst->operands[idx].qualifier = AARCH64_OPND_QLF_NIL;
225}
226\f
227/* Inline functions operating on instruction bit-field(s). */
228
229/* Generate a mask that has WIDTH number of consecutive 1s. */
230
231static inline aarch64_insn
232gen_mask (int width)
233{
5bb3703f 234 return ((aarch64_insn) 1 << width) - 1;
a06ea964
NC
235}
236
237/* LSB_REL is the relative location of the lsb in the sub field, starting from 0. */
238static inline int
239gen_sub_field (enum aarch64_field_kind kind, int lsb_rel, int width, aarch64_field *ret)
240{
241 const aarch64_field *field = &fields[kind];
242 if (lsb_rel < 0 || width <= 0 || lsb_rel + width > field->width)
243 return 0;
244 ret->lsb = field->lsb + lsb_rel;
245 ret->width = width;
246 return 1;
247}
248
249/* Insert VALUE into FIELD of CODE. MASK can be zero or the base mask
250 of the opcode. */
251
252static inline void
253insert_field_2 (const aarch64_field *field, aarch64_insn *code,
254 aarch64_insn value, aarch64_insn mask)
255{
256 assert (field->width < 32 && field->width >= 1 && field->lsb >= 0
257 && field->lsb + field->width <= 32);
258 value &= gen_mask (field->width);
259 value <<= field->lsb;
260 /* In some opcodes, field can be part of the base opcode, e.g. the size
261 field in FADD. The following helps avoid corrupt the base opcode. */
262 value &= ~mask;
263 *code |= value;
264}
265
266/* Extract FIELD of CODE and return the value. MASK can be zero or the base
267 mask of the opcode. */
268
269static inline aarch64_insn
270extract_field_2 (const aarch64_field *field, aarch64_insn code,
271 aarch64_insn mask)
272{
273 aarch64_insn value;
274 /* Clear any bit that is a part of the base opcode. */
275 code &= ~mask;
276 value = (code >> field->lsb) & gen_mask (field->width);
277 return value;
278}
279
280/* Insert VALUE into field KIND of CODE. MASK can be zero or the base mask
281 of the opcode. */
282
283static inline void
284insert_field (enum aarch64_field_kind kind, aarch64_insn *code,
285 aarch64_insn value, aarch64_insn mask)
286{
287 insert_field_2 (&fields[kind], code, value, mask);
288}
289
290/* Extract field KIND of CODE and return the value. MASK can be zero or the
291 base mask of the opcode. */
292
293static inline aarch64_insn
294extract_field (enum aarch64_field_kind kind, aarch64_insn code,
295 aarch64_insn mask)
296{
297 return extract_field_2 (&fields[kind], code, mask);
298}
299\f
300/* Inline functions selecting operand to do the encoding/decoding for a
301 certain instruction bit-field. */
302
303/* Select the operand to do the encoding/decoding of the 'sf' field.
304 The heuristic-based rule is that the result operand is respected more. */
305
306static inline int
307select_operand_for_sf_field_coding (const aarch64_opcode *opcode)
308{
309 int idx = -1;
310 if (aarch64_get_operand_class (opcode->operands[0])
311 == AARCH64_OPND_CLASS_INT_REG)
312 /* normal case. */
313 idx = 0;
314 else if (aarch64_get_operand_class (opcode->operands[1])
315 == AARCH64_OPND_CLASS_INT_REG)
316 /* e.g. float2fix. */
317 idx = 1;
318 else
319 { assert (0); abort (); }
320 return idx;
321}
322
323/* Select the operand to do the encoding/decoding of the 'type' field in
324 the floating-point instructions.
325 The heuristic-based rule is that the source operand is respected more. */
326
327static inline int
328select_operand_for_fptype_field_coding (const aarch64_opcode *opcode)
329{
330 int idx;
331 if (aarch64_get_operand_class (opcode->operands[1])
332 == AARCH64_OPND_CLASS_FP_REG)
333 /* normal case. */
334 idx = 1;
335 else if (aarch64_get_operand_class (opcode->operands[0])
336 == AARCH64_OPND_CLASS_FP_REG)
337 /* e.g. float2fix. */
338 idx = 0;
339 else
340 { assert (0); abort (); }
341 return idx;
342}
343
344/* Select the operand to do the encoding/decoding of the 'size' field in
345 the AdvSIMD scalar instructions.
346 The heuristic-based rule is that the destination operand is respected
347 more. */
348
349static inline int
350select_operand_for_scalar_size_field_coding (const aarch64_opcode *opcode)
351{
352 int src_size = 0, dst_size = 0;
353 if (aarch64_get_operand_class (opcode->operands[0])
354 == AARCH64_OPND_CLASS_SISD_REG)
355 dst_size = aarch64_get_qualifier_esize (opcode->qualifiers_list[0][0]);
356 if (aarch64_get_operand_class (opcode->operands[1])
357 == AARCH64_OPND_CLASS_SISD_REG)
358 src_size = aarch64_get_qualifier_esize (opcode->qualifiers_list[0][1]);
359 if (src_size == dst_size && src_size == 0)
360 { assert (0); abort (); }
361 /* When the result is not a sisd register or it is a long operantion. */
362 if (dst_size == 0 || dst_size == src_size << 1)
363 return 1;
364 else
365 return 0;
366}
367
368/* Select the operand to do the encoding/decoding of the 'size:Q' fields in
369 the AdvSIMD instructions. */
370
371int aarch64_select_operand_for_sizeq_field_coding (const aarch64_opcode *);
372\f
373/* Miscellaneous. */
374
375aarch64_insn aarch64_get_operand_modifier_value (enum aarch64_modifier_kind);
376enum aarch64_modifier_kind
377aarch64_get_operand_modifier_from_value (aarch64_insn, bfd_boolean);
378
379
380bfd_boolean aarch64_wide_constant_p (int64_t, int, unsigned int *);
381bfd_boolean aarch64_logical_immediate_p (uint64_t, int, aarch64_insn *);
382int aarch64_shrink_expanded_imm8 (uint64_t);
383
384/* Copy the content of INST->OPERANDS[SRC] to INST->OPERANDS[DST]. */
385static inline void
386copy_operand_info (aarch64_inst *inst, int dst, int src)
387{
388 assert (dst >= 0 && src >= 0 && dst < AARCH64_MAX_OPND_NUM
389 && src < AARCH64_MAX_OPND_NUM);
390 memcpy (&inst->operands[dst], &inst->operands[src],
391 sizeof (aarch64_opnd_info));
392 inst->operands[dst].idx = dst;
393}
394
395/* A primitive log caculator. */
396
397static inline unsigned int
398get_logsz (unsigned int size)
399{
400 const unsigned char ls[16] =
401 {0, 1, -1, 2, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, -1, 4};
402 if (size > 16)
403 {
404 assert (0);
405 return -1;
406 }
407 assert (ls[size - 1] != (unsigned char)-1);
408 return ls[size - 1];
409}
410
411#endif /* OPCODES_AARCH64_OPC_H */