1 /* aarch64-opc.h -- Header file for aarch64-opc.c and aarch64-opc-2.c.
2 Copyright (C) 2012-2023 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
175 /* Field description. */
182 typedef struct aarch64_field aarch64_field
;
184 extern const aarch64_field fields
[];
186 /* Operand description. */
188 struct aarch64_operand
190 enum aarch64_operand_class op_class
;
192 /* Name of the operand code; used mainly for the purpose of internal
198 /* The associated instruction bit-fields; no operand has more than 4
200 enum aarch64_field_kind fields
[5];
202 /* Brief description */
206 typedef struct aarch64_operand aarch64_operand
;
208 extern const aarch64_operand aarch64_operands
[];
211 verify_constraints (const struct aarch64_inst
*, const aarch64_insn
, bfd_vma
,
212 bool, aarch64_operand_error
*, aarch64_instr_sequence
*);
216 #define OPD_F_HAS_INSERTER 0x00000001
217 #define OPD_F_HAS_EXTRACTOR 0x00000002
218 #define OPD_F_SEXT 0x00000004 /* Require sign-extension. */
219 #define OPD_F_SHIFT_BY_2 0x00000008 /* Need to left shift the field
220 value by 2 to get the value
221 of an immediate operand. */
222 #define OPD_F_MAYBE_SP 0x00000010 /* May potentially be SP. */
223 #define OPD_F_OD_MASK 0x000000e0 /* Operand-dependent data. */
224 #define OPD_F_OD_LSB 5
225 #define OPD_F_NO_ZR 0x00000100 /* ZR index not allowed. */
226 #define OPD_F_SHIFT_BY_4 0x00000200 /* Need to left shift the field
227 value by 4 to get the value
228 of an immediate operand. */
231 /* Register flags. */
234 #define F_DEPRECATED (1 << 0) /* Deprecated system register. */
237 #define F_ARCHEXT (1 << 1) /* Architecture dependent system register. */
240 #define F_HASXT (1 << 2) /* System instruction register <Xt>
244 #define F_REG_READ (1 << 3) /* Register can only be used to read values
248 #define F_REG_WRITE (1 << 4) /* Register can only be written to but not
252 #define F_REG_IN_CRM (1 << 5) /* Register extra encoding in CRm. */
254 /* PSTATE field name for the MSR instruction this is encoded in "op1:op2:CRm".
255 Part of CRm can be used to encode <pstatefield>. E.g. CRm[3:1] for SME.
256 In order to set/get full PSTATE field name use flag F_REG_IN_CRM and below
257 macros to encode and decode CRm encoding.
259 #define PSTATE_ENCODE_CRM(val) (val << 6)
260 #define PSTATE_DECODE_CRM(flags) ((flags >> 6) & 0x0f)
263 #define F_IMM_IN_CRM (1 << 10) /* Immediate extra encoding in CRm. */
265 /* Also CRm may contain, in addition to <pstatefield> immediate.
266 E.g. CRm[0] <imm1> at bit 0 for SME. Use below macros to encode and decode
269 #define PSTATE_ENCODE_CRM_IMM(mask) (mask << 11)
270 #define PSTATE_DECODE_CRM_IMM(mask) ((mask >> 11) & 0x0f)
272 /* Helper macro to ENCODE CRm and its immediate. */
273 #define PSTATE_ENCODE_CRM_AND_IMM(CVAL,IMASK) \
274 (F_REG_IN_CRM | PSTATE_ENCODE_CRM(CVAL) \
275 | F_IMM_IN_CRM | PSTATE_ENCODE_CRM_IMM(IMASK))
277 /* Bits [15, 18] contain the maximum value for an immediate MSR. */
278 #define F_REG_MAX_VALUE(X) ((X) << 15)
279 #define F_GET_REG_MAX_VALUE(X) (((X) >> 15) & 0x0f)
281 /* HINT operand flags. */
282 #define HINT_OPD_F_NOPRINT (1 << 0) /* Should not be printed. */
284 /* Encode 7-bit HINT #imm in the lower 8 bits. Use higher bits for flags. */
285 #define HINT_ENCODE(flag, val) ((flag << 8) | val)
286 #define HINT_FLAG(val) (val >> 8)
287 #define HINT_VAL(val) (val & 0xff)
290 operand_has_inserter (const aarch64_operand
*operand
)
292 return (operand
->flags
& OPD_F_HAS_INSERTER
) != 0;
296 operand_has_extractor (const aarch64_operand
*operand
)
298 return (operand
->flags
& OPD_F_HAS_EXTRACTOR
) != 0;
302 operand_need_sign_extension (const aarch64_operand
*operand
)
304 return (operand
->flags
& OPD_F_SEXT
) != 0;
308 operand_need_shift_by_two (const aarch64_operand
*operand
)
310 return (operand
->flags
& OPD_F_SHIFT_BY_2
) != 0;
314 operand_need_shift_by_four (const aarch64_operand
*operand
)
316 return (operand
->flags
& OPD_F_SHIFT_BY_4
) != 0;
320 operand_maybe_stack_pointer (const aarch64_operand
*operand
)
322 return (operand
->flags
& OPD_F_MAYBE_SP
) != 0;
325 /* Return the value of the operand-specific data field (OPD_F_OD_MASK). */
326 static inline unsigned int
327 get_operand_specific_data (const aarch64_operand
*operand
)
329 return (operand
->flags
& OPD_F_OD_MASK
) >> OPD_F_OD_LSB
;
332 /* Return the width of field number N of operand *OPERAND. */
333 static inline unsigned
334 get_operand_field_width (const aarch64_operand
*operand
, unsigned n
)
336 assert (operand
->fields
[n
] != FLD_NIL
);
337 return fields
[operand
->fields
[n
]].width
;
340 /* Return the total width of the operand *OPERAND. */
341 static inline unsigned
342 get_operand_fields_width (const aarch64_operand
*operand
)
346 while (operand
->fields
[i
] != FLD_NIL
)
347 width
+= fields
[operand
->fields
[i
++]].width
;
348 assert (width
> 0 && width
< 32);
352 static inline const aarch64_operand
*
353 get_operand_from_code (enum aarch64_opnd code
)
355 return aarch64_operands
+ code
;
358 /* Operand qualifier and operand constraint checking. */
360 int aarch64_match_operands_constraint (aarch64_inst
*,
361 aarch64_operand_error
*);
363 /* Operand qualifier related functions. */
364 const char* aarch64_get_qualifier_name (aarch64_opnd_qualifier_t
);
365 unsigned char aarch64_get_qualifier_nelem (aarch64_opnd_qualifier_t
);
366 aarch64_insn
aarch64_get_qualifier_standard_value (aarch64_opnd_qualifier_t
);
367 int aarch64_find_best_match (const aarch64_inst
*,
368 const aarch64_opnd_qualifier_seq_t
*,
369 int, aarch64_opnd_qualifier_t
*);
372 reset_operand_qualifier (aarch64_inst
*inst
, int idx
)
374 assert (idx
>=0 && idx
< aarch64_num_of_operands (inst
->opcode
));
375 inst
->operands
[idx
].qualifier
= AARCH64_OPND_QLF_NIL
;
378 /* Inline functions operating on instruction bit-field(s). */
380 /* Generate a mask that has WIDTH number of consecutive 1s. */
382 static inline aarch64_insn
385 return ((aarch64_insn
) 1 << width
) - 1;
388 /* LSB_REL is the relative location of the lsb in the sub field, starting from 0. */
390 gen_sub_field (enum aarch64_field_kind kind
, int lsb_rel
, int width
, aarch64_field
*ret
)
392 const aarch64_field
*field
= &fields
[kind
];
393 if (lsb_rel
< 0 || width
<= 0 || lsb_rel
+ width
> field
->width
)
395 ret
->lsb
= field
->lsb
+ lsb_rel
;
400 /* Insert VALUE into FIELD of CODE. MASK can be zero or the base mask
404 insert_field_2 (const aarch64_field
*field
, aarch64_insn
*code
,
405 aarch64_insn value
, aarch64_insn mask
)
407 assert (field
->width
< 32 && field
->width
>= 1 && field
->lsb
>= 0
408 && field
->lsb
+ field
->width
<= 32);
409 value
&= gen_mask (field
->width
);
410 value
<<= field
->lsb
;
411 /* In some opcodes, field can be part of the base opcode, e.g. the size
412 field in FADD. The following helps avoid corrupt the base opcode. */
417 /* Extract FIELD of CODE and return the value. MASK can be zero or the base
418 mask of the opcode. */
420 static inline aarch64_insn
421 extract_field_2 (const aarch64_field
*field
, aarch64_insn code
,
425 /* Clear any bit that is a part of the base opcode. */
427 value
= (code
>> field
->lsb
) & gen_mask (field
->width
);
431 /* Insert VALUE into field KIND of CODE. MASK can be zero or the base mask
435 insert_field (enum aarch64_field_kind kind
, aarch64_insn
*code
,
436 aarch64_insn value
, aarch64_insn mask
)
438 insert_field_2 (&fields
[kind
], code
, value
, mask
);
441 /* Extract field KIND of CODE and return the value. MASK can be zero or the
442 base mask of the opcode. */
444 static inline aarch64_insn
445 extract_field (enum aarch64_field_kind kind
, aarch64_insn code
,
448 return extract_field_2 (&fields
[kind
], code
, mask
);
452 extract_fields (aarch64_insn code
, aarch64_insn mask
, ...);
454 /* Inline functions selecting operand to do the encoding/decoding for a
455 certain instruction bit-field. */
457 /* Select the operand to do the encoding/decoding of the 'sf' field.
458 The heuristic-based rule is that the result operand is respected more. */
461 select_operand_for_sf_field_coding (const aarch64_opcode
*opcode
)
464 if (aarch64_get_operand_class (opcode
->operands
[0])
465 == AARCH64_OPND_CLASS_INT_REG
)
468 else if (aarch64_get_operand_class (opcode
->operands
[1])
469 == AARCH64_OPND_CLASS_INT_REG
)
470 /* e.g. float2fix. */
473 { assert (0); abort (); }
477 /* Select the operand to do the encoding/decoding of the 'type' field in
478 the floating-point instructions.
479 The heuristic-based rule is that the source operand is respected more. */
482 select_operand_for_fptype_field_coding (const aarch64_opcode
*opcode
)
485 if (aarch64_get_operand_class (opcode
->operands
[1])
486 == AARCH64_OPND_CLASS_FP_REG
)
489 else if (aarch64_get_operand_class (opcode
->operands
[0])
490 == AARCH64_OPND_CLASS_FP_REG
)
491 /* e.g. float2fix. */
494 { assert (0); abort (); }
498 /* Select the operand to do the encoding/decoding of the 'size' field in
499 the AdvSIMD scalar instructions.
500 The heuristic-based rule is that the destination operand is respected
504 select_operand_for_scalar_size_field_coding (const aarch64_opcode
*opcode
)
506 int src_size
= 0, dst_size
= 0;
507 if (aarch64_get_operand_class (opcode
->operands
[0])
508 == AARCH64_OPND_CLASS_SISD_REG
)
509 dst_size
= aarch64_get_qualifier_esize (opcode
->qualifiers_list
[0][0]);
510 if (aarch64_get_operand_class (opcode
->operands
[1])
511 == AARCH64_OPND_CLASS_SISD_REG
)
512 src_size
= aarch64_get_qualifier_esize (opcode
->qualifiers_list
[0][1]);
513 if (src_size
== dst_size
&& src_size
== 0)
514 { assert (0); abort (); }
515 /* When the result is not a sisd register or it is a long operantion. */
516 if (dst_size
== 0 || dst_size
== src_size
<< 1)
522 /* Select the operand to do the encoding/decoding of the 'size:Q' fields in
523 the AdvSIMD instructions. */
525 int aarch64_select_operand_for_sizeq_field_coding (const aarch64_opcode
*);
529 aarch64_insn
aarch64_get_operand_modifier_value (enum aarch64_modifier_kind
);
530 enum aarch64_modifier_kind
531 aarch64_get_operand_modifier_from_value (aarch64_insn
, bool);
534 bool aarch64_wide_constant_p (uint64_t, int, unsigned int *);
535 bool aarch64_logical_immediate_p (uint64_t, int, aarch64_insn
*);
536 int aarch64_shrink_expanded_imm8 (uint64_t);
538 /* Copy the content of INST->OPERANDS[SRC] to INST->OPERANDS[DST]. */
540 copy_operand_info (aarch64_inst
*inst
, int dst
, int src
)
542 assert (dst
>= 0 && src
>= 0 && dst
< AARCH64_MAX_OPND_NUM
543 && src
< AARCH64_MAX_OPND_NUM
);
544 memcpy (&inst
->operands
[dst
], &inst
->operands
[src
],
545 sizeof (aarch64_opnd_info
));
546 inst
->operands
[dst
].idx
= dst
;
549 /* A primitive log caculator. */
551 static inline unsigned int
552 get_logsz (unsigned int size
)
554 const unsigned char ls
[16] =
555 {0, 1, -1, 2, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, -1, 4};
561 assert (ls
[size
- 1] != (unsigned char)-1);
565 #endif /* OPCODES_AARCH64_OPC_H */