1 /* aarch64-opc.h -- Header file for aarch64-opc.c and aarch64-opc-2.c.
2 Copyright (C) 2012-2020 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
160 /* Field description. */
167 typedef struct aarch64_field aarch64_field
;
169 extern const aarch64_field fields
[];
171 /* Operand description. */
173 struct aarch64_operand
175 enum aarch64_operand_class op_class
;
177 /* Name of the operand code; used mainly for the purpose of internal
183 /* The associated instruction bit-fields; no operand has more than 4
185 enum aarch64_field_kind fields
[4];
187 /* Brief description */
191 typedef struct aarch64_operand aarch64_operand
;
193 extern const aarch64_operand aarch64_operands
[];
196 verify_constraints (const struct aarch64_inst
*, const aarch64_insn
, bfd_vma
,
197 bfd_boolean
, aarch64_operand_error
*, aarch64_instr_sequence
*);
201 #define OPD_F_HAS_INSERTER 0x00000001
202 #define OPD_F_HAS_EXTRACTOR 0x00000002
203 #define OPD_F_SEXT 0x00000004 /* Require sign-extension. */
204 #define OPD_F_SHIFT_BY_2 0x00000008 /* Need to left shift the field
205 value by 2 to get the value
206 of an immediate operand. */
207 #define OPD_F_MAYBE_SP 0x00000010 /* May potentially be SP. */
208 #define OPD_F_OD_MASK 0x000000e0 /* Operand-dependent data. */
209 #define OPD_F_OD_LSB 5
210 #define OPD_F_NO_ZR 0x00000100 /* ZR index not allowed. */
211 #define OPD_F_SHIFT_BY_4 0x00000200 /* Need to left shift the field
212 value by 4 to get the value
213 of an immediate operand. */
216 /* Register flags. */
219 #define F_DEPRECATED (1 << 0) /* Deprecated system register. */
222 #define F_ARCHEXT (1 << 1) /* Architecture dependent system register. */
225 #define F_HASXT (1 << 2) /* System instruction register <Xt>
229 #define F_REG_READ (1 << 3) /* Register can only be used to read values
233 #define F_REG_WRITE (1 << 4) /* Register can only be written to but not
236 /* HINT operand flags. */
237 #define HINT_OPD_F_NOPRINT (1 << 0) /* Should not be printed. */
239 /* Encode 7-bit HINT #imm in the lower 8 bits. Use higher bits for flags. */
240 #define HINT_ENCODE(flag, val) ((flag << 8) | val)
241 #define HINT_FLAG(val) (val >> 8)
242 #define HINT_VAL(val) (val & 0xff)
244 static inline bfd_boolean
245 operand_has_inserter (const aarch64_operand
*operand
)
247 return (operand
->flags
& OPD_F_HAS_INSERTER
) ? TRUE
: FALSE
;
250 static inline bfd_boolean
251 operand_has_extractor (const aarch64_operand
*operand
)
253 return (operand
->flags
& OPD_F_HAS_EXTRACTOR
) ? TRUE
: FALSE
;
256 static inline bfd_boolean
257 operand_need_sign_extension (const aarch64_operand
*operand
)
259 return (operand
->flags
& OPD_F_SEXT
) ? TRUE
: FALSE
;
262 static inline bfd_boolean
263 operand_need_shift_by_two (const aarch64_operand
*operand
)
265 return (operand
->flags
& OPD_F_SHIFT_BY_2
) ? TRUE
: FALSE
;
268 static inline bfd_boolean
269 operand_need_shift_by_four (const aarch64_operand
*operand
)
271 return (operand
->flags
& OPD_F_SHIFT_BY_4
) ? TRUE
: FALSE
;
274 static inline bfd_boolean
275 operand_maybe_stack_pointer (const aarch64_operand
*operand
)
277 return (operand
->flags
& OPD_F_MAYBE_SP
) ? TRUE
: FALSE
;
280 /* Return the value of the operand-specific data field (OPD_F_OD_MASK). */
281 static inline unsigned int
282 get_operand_specific_data (const aarch64_operand
*operand
)
284 return (operand
->flags
& OPD_F_OD_MASK
) >> OPD_F_OD_LSB
;
287 /* Return the width of field number N of operand *OPERAND. */
288 static inline unsigned
289 get_operand_field_width (const aarch64_operand
*operand
, unsigned n
)
291 assert (operand
->fields
[n
] != FLD_NIL
);
292 return fields
[operand
->fields
[n
]].width
;
295 /* Return the total width of the operand *OPERAND. */
296 static inline unsigned
297 get_operand_fields_width (const aarch64_operand
*operand
)
301 while (operand
->fields
[i
] != FLD_NIL
)
302 width
+= fields
[operand
->fields
[i
++]].width
;
303 assert (width
> 0 && width
< 32);
307 static inline const aarch64_operand
*
308 get_operand_from_code (enum aarch64_opnd code
)
310 return aarch64_operands
+ code
;
313 /* Operand qualifier and operand constraint checking. */
315 int aarch64_match_operands_constraint (aarch64_inst
*,
316 aarch64_operand_error
*);
318 /* Operand qualifier related functions. */
319 const char* aarch64_get_qualifier_name (aarch64_opnd_qualifier_t
);
320 unsigned char aarch64_get_qualifier_nelem (aarch64_opnd_qualifier_t
);
321 aarch64_insn
aarch64_get_qualifier_standard_value (aarch64_opnd_qualifier_t
);
322 int aarch64_find_best_match (const aarch64_inst
*,
323 const aarch64_opnd_qualifier_seq_t
*,
324 int, aarch64_opnd_qualifier_t
*);
327 reset_operand_qualifier (aarch64_inst
*inst
, int idx
)
329 assert (idx
>=0 && idx
< aarch64_num_of_operands (inst
->opcode
));
330 inst
->operands
[idx
].qualifier
= AARCH64_OPND_QLF_NIL
;
333 /* Inline functions operating on instruction bit-field(s). */
335 /* Generate a mask that has WIDTH number of consecutive 1s. */
337 static inline aarch64_insn
340 return ((aarch64_insn
) 1 << width
) - 1;
343 /* LSB_REL is the relative location of the lsb in the sub field, starting from 0. */
345 gen_sub_field (enum aarch64_field_kind kind
, int lsb_rel
, int width
, aarch64_field
*ret
)
347 const aarch64_field
*field
= &fields
[kind
];
348 if (lsb_rel
< 0 || width
<= 0 || lsb_rel
+ width
> field
->width
)
350 ret
->lsb
= field
->lsb
+ lsb_rel
;
355 /* Insert VALUE into FIELD of CODE. MASK can be zero or the base mask
359 insert_field_2 (const aarch64_field
*field
, aarch64_insn
*code
,
360 aarch64_insn value
, aarch64_insn mask
)
362 assert (field
->width
< 32 && field
->width
>= 1 && field
->lsb
>= 0
363 && field
->lsb
+ field
->width
<= 32);
364 value
&= gen_mask (field
->width
);
365 value
<<= field
->lsb
;
366 /* In some opcodes, field can be part of the base opcode, e.g. the size
367 field in FADD. The following helps avoid corrupt the base opcode. */
372 /* Extract FIELD of CODE and return the value. MASK can be zero or the base
373 mask of the opcode. */
375 static inline aarch64_insn
376 extract_field_2 (const aarch64_field
*field
, aarch64_insn code
,
380 /* Clear any bit that is a part of the base opcode. */
382 value
= (code
>> field
->lsb
) & gen_mask (field
->width
);
386 /* Insert VALUE into field KIND of CODE. MASK can be zero or the base mask
390 insert_field (enum aarch64_field_kind kind
, aarch64_insn
*code
,
391 aarch64_insn value
, aarch64_insn mask
)
393 insert_field_2 (&fields
[kind
], code
, value
, mask
);
396 /* Extract field KIND of CODE and return the value. MASK can be zero or the
397 base mask of the opcode. */
399 static inline aarch64_insn
400 extract_field (enum aarch64_field_kind kind
, aarch64_insn code
,
403 return extract_field_2 (&fields
[kind
], code
, mask
);
407 extract_fields (aarch64_insn code
, aarch64_insn mask
, ...);
409 /* Inline functions selecting operand to do the encoding/decoding for a
410 certain instruction bit-field. */
412 /* Select the operand to do the encoding/decoding of the 'sf' field.
413 The heuristic-based rule is that the result operand is respected more. */
416 select_operand_for_sf_field_coding (const aarch64_opcode
*opcode
)
419 if (aarch64_get_operand_class (opcode
->operands
[0])
420 == AARCH64_OPND_CLASS_INT_REG
)
423 else if (aarch64_get_operand_class (opcode
->operands
[1])
424 == AARCH64_OPND_CLASS_INT_REG
)
425 /* e.g. float2fix. */
428 { assert (0); abort (); }
432 /* Select the operand to do the encoding/decoding of the 'type' field in
433 the floating-point instructions.
434 The heuristic-based rule is that the source operand is respected more. */
437 select_operand_for_fptype_field_coding (const aarch64_opcode
*opcode
)
440 if (aarch64_get_operand_class (opcode
->operands
[1])
441 == AARCH64_OPND_CLASS_FP_REG
)
444 else if (aarch64_get_operand_class (opcode
->operands
[0])
445 == AARCH64_OPND_CLASS_FP_REG
)
446 /* e.g. float2fix. */
449 { assert (0); abort (); }
453 /* Select the operand to do the encoding/decoding of the 'size' field in
454 the AdvSIMD scalar instructions.
455 The heuristic-based rule is that the destination operand is respected
459 select_operand_for_scalar_size_field_coding (const aarch64_opcode
*opcode
)
461 int src_size
= 0, dst_size
= 0;
462 if (aarch64_get_operand_class (opcode
->operands
[0])
463 == AARCH64_OPND_CLASS_SISD_REG
)
464 dst_size
= aarch64_get_qualifier_esize (opcode
->qualifiers_list
[0][0]);
465 if (aarch64_get_operand_class (opcode
->operands
[1])
466 == AARCH64_OPND_CLASS_SISD_REG
)
467 src_size
= aarch64_get_qualifier_esize (opcode
->qualifiers_list
[0][1]);
468 if (src_size
== dst_size
&& src_size
== 0)
469 { assert (0); abort (); }
470 /* When the result is not a sisd register or it is a long operantion. */
471 if (dst_size
== 0 || dst_size
== src_size
<< 1)
477 /* Select the operand to do the encoding/decoding of the 'size:Q' fields in
478 the AdvSIMD instructions. */
480 int aarch64_select_operand_for_sizeq_field_coding (const aarch64_opcode
*);
484 aarch64_insn
aarch64_get_operand_modifier_value (enum aarch64_modifier_kind
);
485 enum aarch64_modifier_kind
486 aarch64_get_operand_modifier_from_value (aarch64_insn
, bfd_boolean
);
489 bfd_boolean
aarch64_wide_constant_p (uint64_t, int, unsigned int *);
490 bfd_boolean
aarch64_logical_immediate_p (uint64_t, int, aarch64_insn
*);
491 int aarch64_shrink_expanded_imm8 (uint64_t);
493 /* Copy the content of INST->OPERANDS[SRC] to INST->OPERANDS[DST]. */
495 copy_operand_info (aarch64_inst
*inst
, int dst
, int src
)
497 assert (dst
>= 0 && src
>= 0 && dst
< AARCH64_MAX_OPND_NUM
498 && src
< AARCH64_MAX_OPND_NUM
);
499 memcpy (&inst
->operands
[dst
], &inst
->operands
[src
],
500 sizeof (aarch64_opnd_info
));
501 inst
->operands
[dst
].idx
= dst
;
504 /* A primitive log caculator. */
506 static inline unsigned int
507 get_logsz (unsigned int size
)
509 const unsigned char ls
[16] =
510 {0, 1, -1, 2, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, -1, 4};
516 assert (ls
[size
- 1] != (unsigned char)-1);
520 #endif /* OPCODES_AARCH64_OPC_H */