diff options
author | Victor Do Nascimento <victor.donascimento@arm.com> | 2024-01-04 14:04:40 +0000 |
---|---|---|
committer | Victor Do Nascimento <victor.donascimento@arm.com> | 2024-01-15 13:11:48 +0000 |
commit | b88fbd5213b2c38141c066365d7ea092ab7cfea8 (patch) | |
tree | ab43981492ef200126ab33c3b938c0774aa11ec0 | |
parent | 5c77e72e015ec1fcdcbf78b4f2a4f245922e666f (diff) | |
download | gdb-b88fbd5213b2c38141c066365d7ea092ab7cfea8.zip gdb-b88fbd5213b2c38141c066365d7ea092ab7cfea8.tar.gz gdb-b88fbd5213b2c38141c066365d7ea092ab7cfea8.tar.bz2 |
aarch64: rcpc3: Define RCPC3_INSN macro
This patch adds the necessary macro for encoding FEAT_RCPC3-dependent
instructions in Binutils.
-rw-r--r-- | opcodes/aarch64-tbl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/opcodes/aarch64-tbl.h b/opcodes/aarch64-tbl.h index 1092d63..1b3895b 100644 --- a/opcodes/aarch64-tbl.h +++ b/opcodes/aarch64-tbl.h @@ -2886,6 +2886,8 @@ static const aarch64_feature_set aarch64_feature_rcpc3 = { NAME, OPCODE, MASK, the, 0, THE, OPS, QUALS, FLAGS, 0, 0, NULL } #define D128_THE_INSN(NAME,OPCODE,MASK,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, the, 0, D128_THE, OPS, QUALS, FLAGS, 0, 0, NULL } +#define RCPC3_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ + { NAME, OPCODE, MASK, CLASS, 0, RCPC3, OPS, QUALS, FLAGS, 0, 0, NULL } #define MOPS_CPY_OP1_OP2_PME_INSN(NAME, OPCODE, MASK, FLAGS, CONSTRAINTS) \ MOPS_INSN (NAME, OPCODE, MASK, 0, \ |