1 /* aarch64-opc.h -- Header file for aarch64-opc.c and aarch64-opc-2.c.
2 Copyright (C) 2012-2016 Free Software Foundation, Inc.
3 Contributed by ARM Ltd.
5 This file is part of the GNU opcodes library.
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)
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.
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/>. */
21 #ifndef OPCODES_AARCH64_OPC_H
22 #define OPCODES_AARCH64_OPC_H
25 #include "opcode/aarch64.h"
27 /* Instruction fields.
28 Keep synced with fields. */
29 enum aarch64_field_kind
141 /* Field description. */
148 typedef struct aarch64_field aarch64_field
;
150 extern const aarch64_field fields
[];
152 /* Operand description. */
154 struct aarch64_operand
156 enum aarch64_operand_class op_class
;
158 /* Name of the operand code; used mainly for the purpose of internal
164 /* The associated instruction bit-fields; no operand has more than 4
166 enum aarch64_field_kind fields
[4];
168 /* Brief description */
172 typedef struct aarch64_operand aarch64_operand
;
174 extern const aarch64_operand aarch64_operands
[];
178 #define OPD_F_HAS_INSERTER 0x00000001
179 #define OPD_F_HAS_EXTRACTOR 0x00000002
180 #define OPD_F_SEXT 0x00000004 /* Require sign-extension. */
181 #define OPD_F_SHIFT_BY_2 0x00000008 /* Need to left shift the field
182 value by 2 to get the value
183 of an immediate operand. */
184 #define OPD_F_MAYBE_SP 0x00000010 /* May potentially be SP. */
185 #define OPD_F_OD_MASK 0x00000060 /* Operand-dependent data. */
186 #define OPD_F_OD_LSB 5
187 #define OPD_F_NO_ZR 0x00000080 /* ZR index not allowed. */
189 static inline bfd_boolean
190 operand_has_inserter (const aarch64_operand
*operand
)
192 return (operand
->flags
& OPD_F_HAS_INSERTER
) ? TRUE
: FALSE
;
195 static inline bfd_boolean
196 operand_has_extractor (const aarch64_operand
*operand
)
198 return (operand
->flags
& OPD_F_HAS_EXTRACTOR
) ? TRUE
: FALSE
;
201 static inline bfd_boolean
202 operand_need_sign_extension (const aarch64_operand
*operand
)
204 return (operand
->flags
& OPD_F_SEXT
) ? TRUE
: FALSE
;
207 static inline bfd_boolean
208 operand_need_shift_by_two (const aarch64_operand
*operand
)
210 return (operand
->flags
& OPD_F_SHIFT_BY_2
) ? TRUE
: FALSE
;
213 static inline bfd_boolean
214 operand_maybe_stack_pointer (const aarch64_operand
*operand
)
216 return (operand
->flags
& OPD_F_MAYBE_SP
) ? TRUE
: FALSE
;
219 /* Return the value of the operand-specific data field (OPD_F_OD_MASK). */
220 static inline unsigned int
221 get_operand_specific_data (const aarch64_operand
*operand
)
223 return (operand
->flags
& OPD_F_OD_MASK
) >> OPD_F_OD_LSB
;
226 /* Return the total width of the operand *OPERAND. */
227 static inline unsigned
228 get_operand_fields_width (const aarch64_operand
*operand
)
232 while (operand
->fields
[i
] != FLD_NIL
)
233 width
+= fields
[operand
->fields
[i
++]].width
;
234 assert (width
> 0 && width
< 32);
238 static inline const aarch64_operand
*
239 get_operand_from_code (enum aarch64_opnd code
)
241 return aarch64_operands
+ code
;
244 /* Operand qualifier and operand constraint checking. */
246 int aarch64_match_operands_constraint (aarch64_inst
*,
247 aarch64_operand_error
*);
249 /* Operand qualifier related functions. */
250 const char* aarch64_get_qualifier_name (aarch64_opnd_qualifier_t
);
251 unsigned char aarch64_get_qualifier_nelem (aarch64_opnd_qualifier_t
);
252 aarch64_insn
aarch64_get_qualifier_standard_value (aarch64_opnd_qualifier_t
);
253 int aarch64_find_best_match (const aarch64_inst
*,
254 const aarch64_opnd_qualifier_seq_t
*,
255 int, aarch64_opnd_qualifier_t
*);
258 reset_operand_qualifier (aarch64_inst
*inst
, int idx
)
260 assert (idx
>=0 && idx
< aarch64_num_of_operands (inst
->opcode
));
261 inst
->operands
[idx
].qualifier
= AARCH64_OPND_QLF_NIL
;
264 /* Inline functions operating on instruction bit-field(s). */
266 /* Generate a mask that has WIDTH number of consecutive 1s. */
268 static inline aarch64_insn
271 return ((aarch64_insn
) 1 << width
) - 1;
274 /* LSB_REL is the relative location of the lsb in the sub field, starting from 0. */
276 gen_sub_field (enum aarch64_field_kind kind
, int lsb_rel
, int width
, aarch64_field
*ret
)
278 const aarch64_field
*field
= &fields
[kind
];
279 if (lsb_rel
< 0 || width
<= 0 || lsb_rel
+ width
> field
->width
)
281 ret
->lsb
= field
->lsb
+ lsb_rel
;
286 /* Insert VALUE into FIELD of CODE. MASK can be zero or the base mask
290 insert_field_2 (const aarch64_field
*field
, aarch64_insn
*code
,
291 aarch64_insn value
, aarch64_insn mask
)
293 assert (field
->width
< 32 && field
->width
>= 1 && field
->lsb
>= 0
294 && field
->lsb
+ field
->width
<= 32);
295 value
&= gen_mask (field
->width
);
296 value
<<= field
->lsb
;
297 /* In some opcodes, field can be part of the base opcode, e.g. the size
298 field in FADD. The following helps avoid corrupt the base opcode. */
303 /* Extract FIELD of CODE and return the value. MASK can be zero or the base
304 mask of the opcode. */
306 static inline aarch64_insn
307 extract_field_2 (const aarch64_field
*field
, aarch64_insn code
,
311 /* Clear any bit that is a part of the base opcode. */
313 value
= (code
>> field
->lsb
) & gen_mask (field
->width
);
317 /* Insert VALUE into field KIND of CODE. MASK can be zero or the base mask
321 insert_field (enum aarch64_field_kind kind
, aarch64_insn
*code
,
322 aarch64_insn value
, aarch64_insn mask
)
324 insert_field_2 (&fields
[kind
], code
, value
, mask
);
327 /* Extract field KIND of CODE and return the value. MASK can be zero or the
328 base mask of the opcode. */
330 static inline aarch64_insn
331 extract_field (enum aarch64_field_kind kind
, aarch64_insn code
,
334 return extract_field_2 (&fields
[kind
], code
, mask
);
337 /* Inline functions selecting operand to do the encoding/decoding for a
338 certain instruction bit-field. */
340 /* Select the operand to do the encoding/decoding of the 'sf' field.
341 The heuristic-based rule is that the result operand is respected more. */
344 select_operand_for_sf_field_coding (const aarch64_opcode
*opcode
)
347 if (aarch64_get_operand_class (opcode
->operands
[0])
348 == AARCH64_OPND_CLASS_INT_REG
)
351 else if (aarch64_get_operand_class (opcode
->operands
[1])
352 == AARCH64_OPND_CLASS_INT_REG
)
353 /* e.g. float2fix. */
356 { assert (0); abort (); }
360 /* Select the operand to do the encoding/decoding of the 'type' field in
361 the floating-point instructions.
362 The heuristic-based rule is that the source operand is respected more. */
365 select_operand_for_fptype_field_coding (const aarch64_opcode
*opcode
)
368 if (aarch64_get_operand_class (opcode
->operands
[1])
369 == AARCH64_OPND_CLASS_FP_REG
)
372 else if (aarch64_get_operand_class (opcode
->operands
[0])
373 == AARCH64_OPND_CLASS_FP_REG
)
374 /* e.g. float2fix. */
377 { assert (0); abort (); }
381 /* Select the operand to do the encoding/decoding of the 'size' field in
382 the AdvSIMD scalar instructions.
383 The heuristic-based rule is that the destination operand is respected
387 select_operand_for_scalar_size_field_coding (const aarch64_opcode
*opcode
)
389 int src_size
= 0, dst_size
= 0;
390 if (aarch64_get_operand_class (opcode
->operands
[0])
391 == AARCH64_OPND_CLASS_SISD_REG
)
392 dst_size
= aarch64_get_qualifier_esize (opcode
->qualifiers_list
[0][0]);
393 if (aarch64_get_operand_class (opcode
->operands
[1])
394 == AARCH64_OPND_CLASS_SISD_REG
)
395 src_size
= aarch64_get_qualifier_esize (opcode
->qualifiers_list
[0][1]);
396 if (src_size
== dst_size
&& src_size
== 0)
397 { assert (0); abort (); }
398 /* When the result is not a sisd register or it is a long operantion. */
399 if (dst_size
== 0 || dst_size
== src_size
<< 1)
405 /* Select the operand to do the encoding/decoding of the 'size:Q' fields in
406 the AdvSIMD instructions. */
408 int aarch64_select_operand_for_sizeq_field_coding (const aarch64_opcode
*);
412 aarch64_insn
aarch64_get_operand_modifier_value (enum aarch64_modifier_kind
);
413 enum aarch64_modifier_kind
414 aarch64_get_operand_modifier_from_value (aarch64_insn
, bfd_boolean
);
417 bfd_boolean
aarch64_wide_constant_p (int64_t, int, unsigned int *);
418 bfd_boolean
aarch64_logical_immediate_p (uint64_t, int, aarch64_insn
*);
419 int aarch64_shrink_expanded_imm8 (uint64_t);
421 /* Copy the content of INST->OPERANDS[SRC] to INST->OPERANDS[DST]. */
423 copy_operand_info (aarch64_inst
*inst
, int dst
, int src
)
425 assert (dst
>= 0 && src
>= 0 && dst
< AARCH64_MAX_OPND_NUM
426 && src
< AARCH64_MAX_OPND_NUM
);
427 memcpy (&inst
->operands
[dst
], &inst
->operands
[src
],
428 sizeof (aarch64_opnd_info
));
429 inst
->operands
[dst
].idx
= dst
;
432 /* A primitive log caculator. */
434 static inline unsigned int
435 get_logsz (unsigned int size
)
437 const unsigned char ls
[16] =
438 {0, 1, -1, 2, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, -1, 4};
444 assert (ls
[size
- 1] != (unsigned char)-1);
448 #endif /* OPCODES_AARCH64_OPC_H */