2012-08-13 22:52:54 +08:00
|
|
|
|
/* aarch64-opc.c -- AArch64 opcode support.
|
2019-01-01 18:31:27 +08:00
|
|
|
|
Copyright (C) 2009-2019 Free Software Foundation, Inc.
|
2012-08-13 22:52:54 +08:00
|
|
|
|
Contributed by ARM Ltd.
|
|
|
|
|
|
|
|
|
|
This file is part of the GNU opcodes library.
|
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; see the file COPYING3. If not,
|
|
|
|
|
see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
2018-12-18 16:33:51 +08:00
|
|
|
|
#include "bfd_stdint.h"
|
2012-08-13 22:52:54 +08:00
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
|
|
#include "opintl.h"
|
2016-09-21 23:54:53 +08:00
|
|
|
|
#include "libiberty.h"
|
2012-08-13 22:52:54 +08:00
|
|
|
|
|
|
|
|
|
#include "aarch64-opc.h"
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG_AARCH64
|
|
|
|
|
int debug_dump = FALSE;
|
|
|
|
|
#endif /* DEBUG_AARCH64 */
|
|
|
|
|
|
2016-09-21 23:54:53 +08:00
|
|
|
|
/* The enumeration strings associated with each value of a 5-bit SVE
|
|
|
|
|
pattern operand. A null entry indicates a reserved meaning. */
|
|
|
|
|
const char *const aarch64_sve_pattern_array[32] = {
|
|
|
|
|
/* 0-7. */
|
|
|
|
|
"pow2",
|
|
|
|
|
"vl1",
|
|
|
|
|
"vl2",
|
|
|
|
|
"vl3",
|
|
|
|
|
"vl4",
|
|
|
|
|
"vl5",
|
|
|
|
|
"vl6",
|
|
|
|
|
"vl7",
|
|
|
|
|
/* 8-15. */
|
|
|
|
|
"vl8",
|
|
|
|
|
"vl16",
|
|
|
|
|
"vl32",
|
|
|
|
|
"vl64",
|
|
|
|
|
"vl128",
|
|
|
|
|
"vl256",
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
/* 16-23. */
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
/* 24-31. */
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
"mul4",
|
|
|
|
|
"mul3",
|
|
|
|
|
"all"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* The enumeration strings associated with each value of a 4-bit SVE
|
|
|
|
|
prefetch operand. A null entry indicates a reserved meaning. */
|
|
|
|
|
const char *const aarch64_sve_prfop_array[16] = {
|
|
|
|
|
/* 0-7. */
|
|
|
|
|
"pldl1keep",
|
|
|
|
|
"pldl1strm",
|
|
|
|
|
"pldl2keep",
|
|
|
|
|
"pldl2strm",
|
|
|
|
|
"pldl3keep",
|
|
|
|
|
"pldl3strm",
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
/* 8-15. */
|
|
|
|
|
"pstl1keep",
|
|
|
|
|
"pstl1strm",
|
|
|
|
|
"pstl2keep",
|
|
|
|
|
"pstl2strm",
|
|
|
|
|
"pstl3keep",
|
|
|
|
|
"pstl3strm",
|
|
|
|
|
0,
|
|
|
|
|
0
|
|
|
|
|
};
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* Helper functions to determine which operand to be used to encode/decode
|
|
|
|
|
the size:Q fields for AdvSIMD instructions. */
|
|
|
|
|
|
|
|
|
|
static inline bfd_boolean
|
|
|
|
|
vector_qualifier_p (enum aarch64_opnd_qualifier qualifier)
|
|
|
|
|
{
|
|
|
|
|
return ((qualifier >= AARCH64_OPND_QLF_V_8B
|
|
|
|
|
&& qualifier <= AARCH64_OPND_QLF_V_1Q) ? TRUE
|
|
|
|
|
: FALSE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bfd_boolean
|
|
|
|
|
fp_qualifier_p (enum aarch64_opnd_qualifier qualifier)
|
|
|
|
|
{
|
|
|
|
|
return ((qualifier >= AARCH64_OPND_QLF_S_B
|
|
|
|
|
&& qualifier <= AARCH64_OPND_QLF_S_Q) ? TRUE
|
|
|
|
|
: FALSE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum data_pattern
|
|
|
|
|
{
|
|
|
|
|
DP_UNKNOWN,
|
|
|
|
|
DP_VECTOR_3SAME,
|
|
|
|
|
DP_VECTOR_LONG,
|
|
|
|
|
DP_VECTOR_WIDE,
|
|
|
|
|
DP_VECTOR_ACROSS_LANES,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const char significant_operand_index [] =
|
|
|
|
|
{
|
|
|
|
|
0, /* DP_UNKNOWN, by default using operand 0. */
|
|
|
|
|
0, /* DP_VECTOR_3SAME */
|
|
|
|
|
1, /* DP_VECTOR_LONG */
|
|
|
|
|
2, /* DP_VECTOR_WIDE */
|
|
|
|
|
1, /* DP_VECTOR_ACROSS_LANES */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Given a sequence of qualifiers in QUALIFIERS, determine and return
|
|
|
|
|
the data pattern.
|
|
|
|
|
N.B. QUALIFIERS is a possible sequence of qualifiers each of which
|
|
|
|
|
corresponds to one of a sequence of operands. */
|
|
|
|
|
|
|
|
|
|
static enum data_pattern
|
|
|
|
|
get_data_pattern (const aarch64_opnd_qualifier_seq_t qualifiers)
|
|
|
|
|
{
|
|
|
|
|
if (vector_qualifier_p (qualifiers[0]) == TRUE)
|
|
|
|
|
{
|
|
|
|
|
/* e.g. v.4s, v.4s, v.4s
|
|
|
|
|
or v.4h, v.4h, v.h[3]. */
|
|
|
|
|
if (qualifiers[0] == qualifiers[1]
|
|
|
|
|
&& vector_qualifier_p (qualifiers[2]) == TRUE
|
|
|
|
|
&& (aarch64_get_qualifier_esize (qualifiers[0])
|
|
|
|
|
== aarch64_get_qualifier_esize (qualifiers[1]))
|
|
|
|
|
&& (aarch64_get_qualifier_esize (qualifiers[0])
|
|
|
|
|
== aarch64_get_qualifier_esize (qualifiers[2])))
|
|
|
|
|
return DP_VECTOR_3SAME;
|
|
|
|
|
/* e.g. v.8h, v.8b, v.8b.
|
|
|
|
|
or v.4s, v.4h, v.h[2].
|
|
|
|
|
or v.8h, v.16b. */
|
|
|
|
|
if (vector_qualifier_p (qualifiers[1]) == TRUE
|
|
|
|
|
&& aarch64_get_qualifier_esize (qualifiers[0]) != 0
|
|
|
|
|
&& (aarch64_get_qualifier_esize (qualifiers[0])
|
|
|
|
|
== aarch64_get_qualifier_esize (qualifiers[1]) << 1))
|
|
|
|
|
return DP_VECTOR_LONG;
|
|
|
|
|
/* e.g. v.8h, v.8h, v.8b. */
|
|
|
|
|
if (qualifiers[0] == qualifiers[1]
|
|
|
|
|
&& vector_qualifier_p (qualifiers[2]) == TRUE
|
|
|
|
|
&& aarch64_get_qualifier_esize (qualifiers[0]) != 0
|
|
|
|
|
&& (aarch64_get_qualifier_esize (qualifiers[0])
|
|
|
|
|
== aarch64_get_qualifier_esize (qualifiers[2]) << 1)
|
|
|
|
|
&& (aarch64_get_qualifier_esize (qualifiers[0])
|
|
|
|
|
== aarch64_get_qualifier_esize (qualifiers[1])))
|
|
|
|
|
return DP_VECTOR_WIDE;
|
|
|
|
|
}
|
|
|
|
|
else if (fp_qualifier_p (qualifiers[0]) == TRUE)
|
|
|
|
|
{
|
|
|
|
|
/* e.g. SADDLV <V><d>, <Vn>.<T>. */
|
|
|
|
|
if (vector_qualifier_p (qualifiers[1]) == TRUE
|
|
|
|
|
&& qualifiers[2] == AARCH64_OPND_QLF_NIL)
|
|
|
|
|
return DP_VECTOR_ACROSS_LANES;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return DP_UNKNOWN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Select the operand to do the encoding/decoding of the 'size:Q' fields in
|
|
|
|
|
the AdvSIMD instructions. */
|
|
|
|
|
/* N.B. it is possible to do some optimization that doesn't call
|
|
|
|
|
get_data_pattern each time when we need to select an operand. We can
|
|
|
|
|
either buffer the caculated the result or statically generate the data,
|
|
|
|
|
however, it is not obvious that the optimization will bring significant
|
|
|
|
|
benefit. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
aarch64_select_operand_for_sizeq_field_coding (const aarch64_opcode *opcode)
|
|
|
|
|
{
|
|
|
|
|
return
|
|
|
|
|
significant_operand_index [get_data_pattern (opcode->qualifiers_list[0])];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const aarch64_field fields[] =
|
|
|
|
|
{
|
|
|
|
|
{ 0, 0 }, /* NIL. */
|
|
|
|
|
{ 0, 4 }, /* cond2: condition in truly conditional-executed inst. */
|
|
|
|
|
{ 0, 4 }, /* nzcv: flag bit specifier, encoded in the "nzcv" field. */
|
|
|
|
|
{ 5, 5 }, /* defgh: d:e:f:g:h bits in AdvSIMD modified immediate. */
|
|
|
|
|
{ 16, 3 }, /* abc: a:b:c bits in AdvSIMD modified immediate. */
|
|
|
|
|
{ 5, 19 }, /* imm19: e.g. in CBZ. */
|
|
|
|
|
{ 5, 19 }, /* immhi: e.g. in ADRP. */
|
|
|
|
|
{ 29, 2 }, /* immlo: e.g. in ADRP. */
|
|
|
|
|
{ 22, 2 }, /* size: in most AdvSIMD and floating-point instructions. */
|
|
|
|
|
{ 10, 2 }, /* vldst_size: size field in the AdvSIMD load/store inst. */
|
|
|
|
|
{ 29, 1 }, /* op: in AdvSIMD modified immediate instructions. */
|
|
|
|
|
{ 30, 1 }, /* Q: in most AdvSIMD instructions. */
|
|
|
|
|
{ 0, 5 }, /* Rt: in load/store instructions. */
|
|
|
|
|
{ 0, 5 }, /* Rd: in many integer instructions. */
|
|
|
|
|
{ 5, 5 }, /* Rn: in many integer instructions. */
|
|
|
|
|
{ 10, 5 }, /* Rt2: in load/store pair instructions. */
|
|
|
|
|
{ 10, 5 }, /* Ra: in fp instructions. */
|
|
|
|
|
{ 5, 3 }, /* op2: in the system instructions. */
|
|
|
|
|
{ 8, 4 }, /* CRm: in the system instructions. */
|
|
|
|
|
{ 12, 4 }, /* CRn: in the system instructions. */
|
|
|
|
|
{ 16, 3 }, /* op1: in the system instructions. */
|
|
|
|
|
{ 19, 2 }, /* op0: in the system instructions. */
|
|
|
|
|
{ 10, 3 }, /* imm3: in add/sub extended reg instructions. */
|
|
|
|
|
{ 12, 4 }, /* cond: condition flags as a source operand. */
|
|
|
|
|
{ 12, 4 }, /* opcode: in advsimd load/store instructions. */
|
|
|
|
|
{ 12, 4 }, /* cmode: in advsimd modified immediate instructions. */
|
|
|
|
|
{ 13, 3 }, /* asisdlso_opcode: opcode in advsimd ld/st single element. */
|
|
|
|
|
{ 13, 2 }, /* len: in advsimd tbl/tbx instructions. */
|
|
|
|
|
{ 16, 5 }, /* Rm: in ld/st reg offset and some integer inst. */
|
|
|
|
|
{ 16, 5 }, /* Rs: in load/store exclusive instructions. */
|
|
|
|
|
{ 13, 3 }, /* option: in ld/st reg offset + add/sub extended reg inst. */
|
|
|
|
|
{ 12, 1 }, /* S: in load/store reg offset instructions. */
|
|
|
|
|
{ 21, 2 }, /* hw: in move wide constant instructions. */
|
|
|
|
|
{ 22, 2 }, /* opc: in load/store reg offset instructions. */
|
|
|
|
|
{ 23, 1 }, /* opc1: in load/store reg offset instructions. */
|
|
|
|
|
{ 22, 2 }, /* shift: in add/sub reg/imm shifted instructions. */
|
|
|
|
|
{ 22, 2 }, /* type: floating point type field in fp data inst. */
|
|
|
|
|
{ 30, 2 }, /* ldst_size: size field in ld/st reg offset inst. */
|
|
|
|
|
{ 10, 6 }, /* imm6: in add/sub reg shifted instructions. */
|
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
gas/
* config/tc-aarch64.c (process_omitted_operand):
Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
and AARCH64_OPND_IMM_2.
(parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
and AARCH64_OPND_ADDR_OFFSET.
include/
* opcode/aarch64.h:
(aarch64_opnd): Add AARCH64_OPND_Va, AARCH64_OPND_MASK,
AARCH64_OPND_IMM_2, AARCH64_OPND_ADDR_OFFSET
and AARCH64_OPND_SM3_IMM2.
(aarch64_insn_class): Add cryptosm3 and cryptosm4.
(arch64_feature_set): Make uint64_t.
opcodes/
* aarch64-asm.h (ins_addr_offset): New.
* aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
(aarch64_ins_addr_offset): New.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_addr_offset): New.
* aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
(aarch64_ext_addr_offset): New.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
* aarch64-opc.c (fields): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
(operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
(aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
* aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
* aarch64-tbl.h
(aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
2017-11-09 23:22:30 +08:00
|
|
|
|
{ 15, 6 }, /* imm6_2: in rmif instructions. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ 11, 4 }, /* imm4: in advsimd ext and advsimd ins instructions. */
|
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
gas/
* config/tc-aarch64.c (process_omitted_operand):
Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
and AARCH64_OPND_IMM_2.
(parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
and AARCH64_OPND_ADDR_OFFSET.
include/
* opcode/aarch64.h:
(aarch64_opnd): Add AARCH64_OPND_Va, AARCH64_OPND_MASK,
AARCH64_OPND_IMM_2, AARCH64_OPND_ADDR_OFFSET
and AARCH64_OPND_SM3_IMM2.
(aarch64_insn_class): Add cryptosm3 and cryptosm4.
(arch64_feature_set): Make uint64_t.
opcodes/
* aarch64-asm.h (ins_addr_offset): New.
* aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
(aarch64_ins_addr_offset): New.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_addr_offset): New.
* aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
(aarch64_ext_addr_offset): New.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
* aarch64-opc.c (fields): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
(operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
(aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
* aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
* aarch64-tbl.h
(aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
2017-11-09 23:22:30 +08:00
|
|
|
|
{ 0, 4 }, /* imm4_2: in rmif instructions. */
|
[BINUTILS, AARCH64, 2/8] Add Tag generation instructions in Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch add support to the Tag generation instructions from
MTE. These are the following instructions added in this patch:
- IRG <Xd|SP>, <Xn|SP>{, Xm}
- ADDG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- SUBG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- GMI <Xd>, <Xn|SP>, <Xm>
where
<Xd|SP> : Is the 64-bit destination GPR or Stack pointer.
<Xn|SP> : Is the 64-bit source GPR or Stack pointer.
<uimm6> : Is the unsigned immediate, a multiple of 16
in the range 0 to 1008.
<uimm4> : Is the unsigned immediate, in the range 0 to 15.
*** include/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (aarch64_opnd): Add
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10 as new enums.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.h (aarch64_field_kind): New FLD_imm4_3.
(OPD_F_SHIFT_BY_4, operand_need_shift_by_four): New.
* aarch64-opc.c (fields): Add entry for imm4_3.
(operand_general_constraint_met_p): Add cases for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
(aarch64_print_operand): Likewise.
* aarch64-tbl.h (QL_ADDG): New.
(aarch64_opcode_table): Add addg, subg, irg and gmi.
(AARCH64_OPERANDS): Define UIMM4_ADDG and UIMM10.
* aarch64-asm.c (aarch64_ins_imm): Add case for
operand_need_shift_by_four.
* aarch64-asm-2.c: Regenerated.
* aarch64-dis-2.c: Regenerated.
* aarch64-opc-2.c: Regenerated.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_operands): Add switch case for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
* testsuite/gas/aarch64/armv8_5-a-memtag.s: New.
* testsuite/gas/aarch64/armv8_5-a-memtag.d: Likewise.
* testsuite/gas/aarch64/illegal-memtag.s: Likewise.
* testsuite/gas/aarch64/illegal-memtag.l: Likewise.
* testsuite/gas/aarch64/illegal-memtag.d: Likewise.
2018-11-12 20:52:55 +08:00
|
|
|
|
{ 10, 4 }, /* imm4_3: in adddg/subg instructions. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ 16, 5 }, /* imm5: in conditional compare (immediate) instructions. */
|
|
|
|
|
{ 15, 7 }, /* imm7: in load/store pair pre/post index instructions. */
|
|
|
|
|
{ 13, 8 }, /* imm8: in floating-point scalar move immediate inst. */
|
|
|
|
|
{ 12, 9 }, /* imm9: in load/store pre/post index instructions. */
|
|
|
|
|
{ 10, 12 }, /* imm12: in ld/st unsigned imm or add/sub shifted inst. */
|
|
|
|
|
{ 5, 14 }, /* imm14: in test bit and branch instructions. */
|
|
|
|
|
{ 5, 16 }, /* imm16: in exception instructions. */
|
|
|
|
|
{ 0, 26 }, /* imm26: in unconditional branch instructions. */
|
|
|
|
|
{ 10, 6 }, /* imms: in bitfield and logical immediate instructions. */
|
|
|
|
|
{ 16, 6 }, /* immr: in bitfield and logical immediate instructions. */
|
|
|
|
|
{ 16, 3 }, /* immb: in advsimd shift by immediate instructions. */
|
|
|
|
|
{ 19, 4 }, /* immh: in advsimd shift by immediate instructions. */
|
2016-11-18 17:49:06 +08:00
|
|
|
|
{ 22, 1 }, /* S: in LDRAA and LDRAB instructions. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ 22, 1 }, /* N: in logical (immediate) instructions. */
|
|
|
|
|
{ 11, 1 }, /* index: in ld/st inst deciding the pre/post-index. */
|
|
|
|
|
{ 24, 1 }, /* index2: in ld/st pair inst deciding the pre/post-index. */
|
|
|
|
|
{ 31, 1 }, /* sf: in integer data processing instructions. */
|
2014-09-03 21:40:41 +08:00
|
|
|
|
{ 30, 1 }, /* lse_size: in LSE extension atomic instructions. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ 11, 1 }, /* H: in advsimd scalar x indexed element instructions. */
|
|
|
|
|
{ 21, 1 }, /* L: in advsimd scalar x indexed element instructions. */
|
|
|
|
|
{ 20, 1 }, /* M: in advsimd scalar x indexed element instructions. */
|
|
|
|
|
{ 31, 1 }, /* b5: in the test bit and branch instructions. */
|
|
|
|
|
{ 19, 5 }, /* b40: in the test bit and branch instructions. */
|
|
|
|
|
{ 10, 6 }, /* scale: in the fixed-point scalar to fp converting inst. */
|
[AArch64][SVE 30/32] Add SVE instruction classes
The main purpose of the SVE aarch64_insn_classes is to describe how
an index into an aarch64_opnd_qualifier_seq_t is represented in the
instruction encoding. Other instructions usually use flags for this
information, but (a) we're running out of those and (b) the iclass
would otherwise be unused for SVE.
include/
* opcode/aarch64.h (sve_cpy, sve_index, sve_limm, sve_misc)
(sve_movprfx, sve_pred_zm, sve_shift_pred, sve_shift_unpred)
(sve_size_bhs, sve_size_bhsd, sve_size_hsd, sve_size_sd): New
aarch64_insn_classes.
opcodes/
* aarch64-opc.h (FLD_SVE_M_4, FLD_SVE_M_14, FLD_SVE_M_16)
(FLD_SVE_sz, FLD_SVE_tsz, FLD_SVE_tszl_8, FLD_SVE_tszl_19): New
aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
* aarch64-asm.c (aarch64_get_variant): New function.
(aarch64_encode_variant_using_iclass): Likewise.
(aarch64_opcode_encode): Call it.
* aarch64-dis.c (aarch64_decode_variant_using_iclass): New function.
(aarch64_opcode_decode): Call it.
2016-09-21 23:58:22 +08:00
|
|
|
|
{ 4, 1 }, /* SVE_M_4: Merge/zero select, bit 4. */
|
|
|
|
|
{ 14, 1 }, /* SVE_M_14: Merge/zero select, bit 14. */
|
|
|
|
|
{ 16, 1 }, /* SVE_M_16: Merge/zero select, bit 16. */
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
{ 17, 1 }, /* SVE_N: SVE equivalent of N. */
|
[AArch64][SVE 21/32] Add Zn and Pn registers
This patch adds the Zn and Pn registers, and associated fields and
operands.
include/
* opcode/aarch64.h (AARCH64_OPND_CLASS_SVE_REG): New
aarch64_operand_class.
(AARCH64_OPND_CLASS_PRED_REG): Likewise.
(AARCH64_OPND_SVE_Pd, AARCH64_OPND_SVE_Pg3, AARCH64_OPND_SVE_Pg4_5)
(AARCH64_OPND_SVE_Pg4_10, AARCH64_OPND_SVE_Pg4_16)
(AARCH64_OPND_SVE_Pm, AARCH64_OPND_SVE_Pn, AARCH64_OPND_SVE_Pt)
(AARCH64_OPND_SVE_Za_5, AARCH64_OPND_SVE_Za_16, AARCH64_OPND_SVE_Zd)
(AARCH64_OPND_SVE_Zm_5, AARCH64_OPND_SVE_Zm_16, AARCH64_OPND_SVE_Zn)
(AARCH64_OPND_SVE_Zn_INDEX, AARCH64_OPND_SVE_ZnxN)
(AARCH64_OPND_SVE_Zt, AARCH64_OPND_SVE_ZtxN): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new SVE operands.
* aarch64-opc.h (FLD_SVE_Pd, FLD_SVE_Pg3, FLD_SVE_Pg4_5)
(FLD_SVE_Pg4_10, FLD_SVE_Pg4_16, FLD_SVE_Pm, FLD_SVE_Pn, FLD_SVE_Pt)
(FLD_SVE_Za_5, FLD_SVE_Za_16, FLD_SVE_Zd, FLD_SVE_Zm_5, FLD_SVE_Zm_16)
(FLD_SVE_Zn, FLD_SVE_Zt, FLD_SVE_tzsh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries here.
(operand_general_constraint_met_p): Check that SVE register lists
have the correct length. Check the ranges of SVE index registers.
Check for cases where p8-p15 are used in 3-bit predicate fields.
(aarch64_print_operand): Handle the new SVE operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_index, ins_sve_reglist): New inserters.
* aarch64-asm.c (aarch64_ins_sve_index): New function.
(aarch64_ins_sve_reglist): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_index, ext_sve_reglist): New extractors.
* aarch64-dis.c (aarch64_ext_sve_index): New function.
(aarch64_ext_sve_reglist): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (NTA_HASVARWIDTH): New macro.
(AARCH64_REG_TYPES): Add ZN and PN.
(get_reg_expected_msg): Handle them.
(parse_vector_type_for_operand): Add a reg_type parameter.
Skip the width for Zn and Pn registers.
(parse_typed_reg): Extend vector handling to Zn and Pn. Update the
call to parse_vector_type_for_operand. Set HASVARTYPE for Zn and Pn,
expecting the width to be 0.
(parse_vector_reg_list): Restrict error about [BHSD]nn operands to
REG_TYPE_VN.
(vectype_to_qualifier): Use S_[BHSD] qualifiers for NTA_HASVARWIDTH.
(parse_operands): Handle the new Zn and Pn operands.
(REGSET16): New macro, split out from...
(REGSET31): ...here.
(reg_names): Add Zn and Pn entries.
2016-09-21 23:53:54 +08:00
|
|
|
|
{ 0, 4 }, /* SVE_Pd: p0-p15, bits [3,0]. */
|
|
|
|
|
{ 10, 3 }, /* SVE_Pg3: p0-p7, bits [12,10]. */
|
|
|
|
|
{ 5, 4 }, /* SVE_Pg4_5: p0-p15, bits [8,5]. */
|
|
|
|
|
{ 10, 4 }, /* SVE_Pg4_10: p0-p15, bits [13,10]. */
|
|
|
|
|
{ 16, 4 }, /* SVE_Pg4_16: p0-p15, bits [19,16]. */
|
|
|
|
|
{ 16, 4 }, /* SVE_Pm: p0-p15, bits [19,16]. */
|
|
|
|
|
{ 5, 4 }, /* SVE_Pn: p0-p15, bits [8,5]. */
|
|
|
|
|
{ 0, 4 }, /* SVE_Pt: p0-p15, bits [3,0]. */
|
2016-09-21 23:57:43 +08:00
|
|
|
|
{ 5, 5 }, /* SVE_Rm: SVE alternative position for Rm. */
|
|
|
|
|
{ 16, 5 }, /* SVE_Rn: SVE alternative position for Rn. */
|
|
|
|
|
{ 0, 5 }, /* SVE_Vd: Scalar SIMD&FP register, bits [4,0]. */
|
|
|
|
|
{ 5, 5 }, /* SVE_Vm: Scalar SIMD&FP register, bits [9,5]. */
|
|
|
|
|
{ 5, 5 }, /* SVE_Vn: Scalar SIMD&FP register, bits [9,5]. */
|
[AArch64][SVE 21/32] Add Zn and Pn registers
This patch adds the Zn and Pn registers, and associated fields and
operands.
include/
* opcode/aarch64.h (AARCH64_OPND_CLASS_SVE_REG): New
aarch64_operand_class.
(AARCH64_OPND_CLASS_PRED_REG): Likewise.
(AARCH64_OPND_SVE_Pd, AARCH64_OPND_SVE_Pg3, AARCH64_OPND_SVE_Pg4_5)
(AARCH64_OPND_SVE_Pg4_10, AARCH64_OPND_SVE_Pg4_16)
(AARCH64_OPND_SVE_Pm, AARCH64_OPND_SVE_Pn, AARCH64_OPND_SVE_Pt)
(AARCH64_OPND_SVE_Za_5, AARCH64_OPND_SVE_Za_16, AARCH64_OPND_SVE_Zd)
(AARCH64_OPND_SVE_Zm_5, AARCH64_OPND_SVE_Zm_16, AARCH64_OPND_SVE_Zn)
(AARCH64_OPND_SVE_Zn_INDEX, AARCH64_OPND_SVE_ZnxN)
(AARCH64_OPND_SVE_Zt, AARCH64_OPND_SVE_ZtxN): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new SVE operands.
* aarch64-opc.h (FLD_SVE_Pd, FLD_SVE_Pg3, FLD_SVE_Pg4_5)
(FLD_SVE_Pg4_10, FLD_SVE_Pg4_16, FLD_SVE_Pm, FLD_SVE_Pn, FLD_SVE_Pt)
(FLD_SVE_Za_5, FLD_SVE_Za_16, FLD_SVE_Zd, FLD_SVE_Zm_5, FLD_SVE_Zm_16)
(FLD_SVE_Zn, FLD_SVE_Zt, FLD_SVE_tzsh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries here.
(operand_general_constraint_met_p): Check that SVE register lists
have the correct length. Check the ranges of SVE index registers.
Check for cases where p8-p15 are used in 3-bit predicate fields.
(aarch64_print_operand): Handle the new SVE operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_index, ins_sve_reglist): New inserters.
* aarch64-asm.c (aarch64_ins_sve_index): New function.
(aarch64_ins_sve_reglist): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_index, ext_sve_reglist): New extractors.
* aarch64-dis.c (aarch64_ext_sve_index): New function.
(aarch64_ext_sve_reglist): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (NTA_HASVARWIDTH): New macro.
(AARCH64_REG_TYPES): Add ZN and PN.
(get_reg_expected_msg): Handle them.
(parse_vector_type_for_operand): Add a reg_type parameter.
Skip the width for Zn and Pn registers.
(parse_typed_reg): Extend vector handling to Zn and Pn. Update the
call to parse_vector_type_for_operand. Set HASVARTYPE for Zn and Pn,
expecting the width to be 0.
(parse_vector_reg_list): Restrict error about [BHSD]nn operands to
REG_TYPE_VN.
(vectype_to_qualifier): Use S_[BHSD] qualifiers for NTA_HASVARWIDTH.
(parse_operands): Handle the new Zn and Pn operands.
(REGSET16): New macro, split out from...
(REGSET31): ...here.
(reg_names): Add Zn and Pn entries.
2016-09-21 23:53:54 +08:00
|
|
|
|
{ 5, 5 }, /* SVE_Za_5: SVE vector register, bits [9,5]. */
|
|
|
|
|
{ 16, 5 }, /* SVE_Za_16: SVE vector register, bits [20,16]. */
|
|
|
|
|
{ 0, 5 }, /* SVE_Zd: SVE vector register. bits [4,0]. */
|
|
|
|
|
{ 5, 5 }, /* SVE_Zm_5: SVE vector register, bits [9,5]. */
|
|
|
|
|
{ 16, 5 }, /* SVE_Zm_16: SVE vector register, bits [20,16]. */
|
|
|
|
|
{ 5, 5 }, /* SVE_Zn: SVE vector register, bits [9,5]. */
|
|
|
|
|
{ 0, 5 }, /* SVE_Zt: SVE vector register, bits [4,0]. */
|
2016-09-21 23:57:22 +08:00
|
|
|
|
{ 5, 1 }, /* SVE_i1: single-bit immediate. */
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
{ 22, 1 }, /* SVE_i3h: high bit of 3-bit immediate. */
|
2019-05-09 17:29:17 +08:00
|
|
|
|
{ 11, 1 }, /* SVE_i3l: low bit of 3-bit immediate. */
|
|
|
|
|
{ 19, 2 }, /* SVE_i3h2: two high bits of 3bit immediate, bits [20,19]. */
|
2019-05-09 17:29:24 +08:00
|
|
|
|
{ 20, 1 }, /* SVE_i2h: high bit of 2bit immediate, bits. */
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
{ 16, 3 }, /* SVE_imm3: 3-bit immediate field. */
|
[AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED
Some SVE instructions count the number of elements in a given vector
pattern and allow a scale factor of [1, 16] to be applied to the result.
This scale factor is written ", MUL #n", where "MUL" is a new operator.
E.g.:
UQINCD X0, POW2, MUL #2
This patch adds support for this kind of operand.
All existing operators were shifts of some kind, so there was a natural
range of [0, 63] regardless of context. This was then narrowered further
by later checks (e.g. to [0, 31] when used for 32-bit values).
In contrast, MUL doesn't really have a natural context-independent range.
Rather than pick one arbitrarily, it seemed better to make the "shift"
amount a full 64-bit value and leave the range test to the usual
operand-checking code. I've rearranged the fields of aarch64_opnd_info
so that this doesn't increase the size of the structure (although I don't
think its size is critical anyway).
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_PATTERN_SCALED): New
aarch64_opnd.
(AARCH64_MOD_MUL): New aarch64_modifier_kind.
(aarch64_opnd_info): Make shifter.amount an int64_t and
rearrange the fields.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add an entry for
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc.h (FLD_SVE_imm4): New aarch64_field_kind.
* aarch64-opc.c (fields): Add a corresponding entry.
(set_multiplier_out_of_range_error): New function.
(aarch64_operand_modifiers): Add entry for AARCH64_MOD_MUL.
(operand_general_constraint_met_p): Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
(print_register_offset_address): Use PRIi64 to print the
shift amount.
(aarch64_print_operand): Likewise. Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_scale): New inserter.
* aarch64-asm.c (aarch64_ins_sve_scale): New function.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_scale): New inserter.
* aarch64-dis.c (aarch64_ext_sve_scale): New function.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_MUL): New parse_shift_mode.
(parse_shift): Handle it. Reject AARCH64_MOD_MUL for all other
shift modes. Skip range tests for AARCH64_MOD_MUL.
(process_omitted_operand): Handle AARCH64_OPND_SVE_PATTERN_SCALED.
(parse_operands): Likewise.
2016-09-21 23:55:22 +08:00
|
|
|
|
{ 16, 4 }, /* SVE_imm4: 4-bit immediate field. */
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
{ 5, 5 }, /* SVE_imm5: 5-bit immediate field. */
|
|
|
|
|
{ 16, 5 }, /* SVE_imm5b: secondary 5-bit immediate field. */
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
{ 16, 6 }, /* SVE_imm6: 6-bit immediate field. */
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
{ 14, 7 }, /* SVE_imm7: 7-bit immediate field. */
|
|
|
|
|
{ 5, 8 }, /* SVE_imm8: 8-bit immediate field. */
|
|
|
|
|
{ 5, 9 }, /* SVE_imm9: 9-bit immediate field. */
|
|
|
|
|
{ 11, 6 }, /* SVE_immr: SVE equivalent of immr. */
|
|
|
|
|
{ 5, 6 }, /* SVE_imms: SVE equivalent of imms. */
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
{ 10, 2 }, /* SVE_msz: 2-bit shift amount for ADR. */
|
2016-09-21 23:54:53 +08:00
|
|
|
|
{ 5, 5 }, /* SVE_pattern: vector pattern enumeration. */
|
|
|
|
|
{ 0, 4 }, /* SVE_prfop: prefetch operation for SVE PRF[BHWD]. */
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
{ 16, 1 }, /* SVE_rot1: 1-bit rotation amount. */
|
|
|
|
|
{ 10, 2 }, /* SVE_rot2: 2-bit rotation amount. */
|
2019-05-09 17:29:15 +08:00
|
|
|
|
{ 10, 1 }, /* SVE_rot3: 1-bit rotation amount at bit 10. */
|
[AArch64][SVE 30/32] Add SVE instruction classes
The main purpose of the SVE aarch64_insn_classes is to describe how
an index into an aarch64_opnd_qualifier_seq_t is represented in the
instruction encoding. Other instructions usually use flags for this
information, but (a) we're running out of those and (b) the iclass
would otherwise be unused for SVE.
include/
* opcode/aarch64.h (sve_cpy, sve_index, sve_limm, sve_misc)
(sve_movprfx, sve_pred_zm, sve_shift_pred, sve_shift_unpred)
(sve_size_bhs, sve_size_bhsd, sve_size_hsd, sve_size_sd): New
aarch64_insn_classes.
opcodes/
* aarch64-opc.h (FLD_SVE_M_4, FLD_SVE_M_14, FLD_SVE_M_16)
(FLD_SVE_sz, FLD_SVE_tsz, FLD_SVE_tszl_8, FLD_SVE_tszl_19): New
aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
* aarch64-asm.c (aarch64_get_variant): New function.
(aarch64_encode_variant_using_iclass): Likewise.
(aarch64_opcode_encode): Call it.
* aarch64-dis.c (aarch64_decode_variant_using_iclass): New function.
(aarch64_opcode_decode): Call it.
2016-09-21 23:58:22 +08:00
|
|
|
|
{ 22, 1 }, /* SVE_sz: 1-bit element size select. */
|
2019-05-09 17:29:16 +08:00
|
|
|
|
{ 17, 2 }, /* SVE_size: 2-bit element size, bits [18,17]. */
|
2019-05-09 17:29:19 +08:00
|
|
|
|
{ 30, 1 }, /* SVE_sz2: 1-bit element size select. */
|
[AArch64][SVE 30/32] Add SVE instruction classes
The main purpose of the SVE aarch64_insn_classes is to describe how
an index into an aarch64_opnd_qualifier_seq_t is represented in the
instruction encoding. Other instructions usually use flags for this
information, but (a) we're running out of those and (b) the iclass
would otherwise be unused for SVE.
include/
* opcode/aarch64.h (sve_cpy, sve_index, sve_limm, sve_misc)
(sve_movprfx, sve_pred_zm, sve_shift_pred, sve_shift_unpred)
(sve_size_bhs, sve_size_bhsd, sve_size_hsd, sve_size_sd): New
aarch64_insn_classes.
opcodes/
* aarch64-opc.h (FLD_SVE_M_4, FLD_SVE_M_14, FLD_SVE_M_16)
(FLD_SVE_sz, FLD_SVE_tsz, FLD_SVE_tszl_8, FLD_SVE_tszl_19): New
aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
* aarch64-asm.c (aarch64_get_variant): New function.
(aarch64_encode_variant_using_iclass): Likewise.
(aarch64_opcode_encode): Call it.
* aarch64-dis.c (aarch64_decode_variant_using_iclass): New function.
(aarch64_opcode_decode): Call it.
2016-09-21 23:58:22 +08:00
|
|
|
|
{ 16, 4 }, /* SVE_tsz: triangular size select. */
|
[AArch64][SVE 21/32] Add Zn and Pn registers
This patch adds the Zn and Pn registers, and associated fields and
operands.
include/
* opcode/aarch64.h (AARCH64_OPND_CLASS_SVE_REG): New
aarch64_operand_class.
(AARCH64_OPND_CLASS_PRED_REG): Likewise.
(AARCH64_OPND_SVE_Pd, AARCH64_OPND_SVE_Pg3, AARCH64_OPND_SVE_Pg4_5)
(AARCH64_OPND_SVE_Pg4_10, AARCH64_OPND_SVE_Pg4_16)
(AARCH64_OPND_SVE_Pm, AARCH64_OPND_SVE_Pn, AARCH64_OPND_SVE_Pt)
(AARCH64_OPND_SVE_Za_5, AARCH64_OPND_SVE_Za_16, AARCH64_OPND_SVE_Zd)
(AARCH64_OPND_SVE_Zm_5, AARCH64_OPND_SVE_Zm_16, AARCH64_OPND_SVE_Zn)
(AARCH64_OPND_SVE_Zn_INDEX, AARCH64_OPND_SVE_ZnxN)
(AARCH64_OPND_SVE_Zt, AARCH64_OPND_SVE_ZtxN): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new SVE operands.
* aarch64-opc.h (FLD_SVE_Pd, FLD_SVE_Pg3, FLD_SVE_Pg4_5)
(FLD_SVE_Pg4_10, FLD_SVE_Pg4_16, FLD_SVE_Pm, FLD_SVE_Pn, FLD_SVE_Pt)
(FLD_SVE_Za_5, FLD_SVE_Za_16, FLD_SVE_Zd, FLD_SVE_Zm_5, FLD_SVE_Zm_16)
(FLD_SVE_Zn, FLD_SVE_Zt, FLD_SVE_tzsh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries here.
(operand_general_constraint_met_p): Check that SVE register lists
have the correct length. Check the ranges of SVE index registers.
Check for cases where p8-p15 are used in 3-bit predicate fields.
(aarch64_print_operand): Handle the new SVE operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_index, ins_sve_reglist): New inserters.
* aarch64-asm.c (aarch64_ins_sve_index): New function.
(aarch64_ins_sve_reglist): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_index, ext_sve_reglist): New extractors.
* aarch64-dis.c (aarch64_ext_sve_index): New function.
(aarch64_ext_sve_reglist): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (NTA_HASVARWIDTH): New macro.
(AARCH64_REG_TYPES): Add ZN and PN.
(get_reg_expected_msg): Handle them.
(parse_vector_type_for_operand): Add a reg_type parameter.
Skip the width for Zn and Pn registers.
(parse_typed_reg): Extend vector handling to Zn and Pn. Update the
call to parse_vector_type_for_operand. Set HASVARTYPE for Zn and Pn,
expecting the width to be 0.
(parse_vector_reg_list): Restrict error about [BHSD]nn operands to
REG_TYPE_VN.
(vectype_to_qualifier): Use S_[BHSD] qualifiers for NTA_HASVARWIDTH.
(parse_operands): Handle the new Zn and Pn operands.
(REGSET16): New macro, split out from...
(REGSET31): ...here.
(reg_names): Add Zn and Pn entries.
2016-09-21 23:53:54 +08:00
|
|
|
|
{ 22, 2 }, /* SVE_tszh: triangular size select high, bits [23,22]. */
|
[AArch64][SVE 30/32] Add SVE instruction classes
The main purpose of the SVE aarch64_insn_classes is to describe how
an index into an aarch64_opnd_qualifier_seq_t is represented in the
instruction encoding. Other instructions usually use flags for this
information, but (a) we're running out of those and (b) the iclass
would otherwise be unused for SVE.
include/
* opcode/aarch64.h (sve_cpy, sve_index, sve_limm, sve_misc)
(sve_movprfx, sve_pred_zm, sve_shift_pred, sve_shift_unpred)
(sve_size_bhs, sve_size_bhsd, sve_size_hsd, sve_size_sd): New
aarch64_insn_classes.
opcodes/
* aarch64-opc.h (FLD_SVE_M_4, FLD_SVE_M_14, FLD_SVE_M_16)
(FLD_SVE_sz, FLD_SVE_tsz, FLD_SVE_tszl_8, FLD_SVE_tszl_19): New
aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
* aarch64-asm.c (aarch64_get_variant): New function.
(aarch64_encode_variant_using_iclass): Likewise.
(aarch64_opcode_encode): Call it.
* aarch64-dis.c (aarch64_decode_variant_using_iclass): New function.
(aarch64_opcode_decode): Call it.
2016-09-21 23:58:22 +08:00
|
|
|
|
{ 8, 2 }, /* SVE_tszl_8: triangular size select low, bits [9,8]. */
|
|
|
|
|
{ 19, 2 }, /* SVE_tszl_19: triangular size select low, bits [20,19]. */
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
{ 14, 1 }, /* SVE_xs_14: UXTW/SXTW select (bit 14). */
|
[AArch64] Add ARMv8.3 FCMLA and FCADD instructions
Add support for FCMLA and FCADD complex arithmetic SIMD instructions.
FCMLA has an indexed element variant where the index range has to be
treated specially because a complex number takes two elements and the
indexed vector size depends on the other operands.
These complex number SIMD instructions are part of ARMv8.3
https://community.arm.com/groups/processors/blog/2016/10/27/armv8-a-architecture-2016-additions
include/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* opcode/aarch64.h (enum aarch64_opnd): Add AARCH64_OPND_IMM_ROT1,
AARCH64_OPND_IMM_ROT2, AARCH64_OPND_IMM_ROT3.
(enum aarch64_op): Add OP_FCMLA_ELEM.
opcodes/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* aarch64-tbl.h (QL_V3SAMEHSD_ROT, QL_ELEMENT_ROT): Define.
(aarch64_feature_simd_v8_3, SIMD_V8_3): Define.
(aarch64_opcode_table): Add fcmla and fcadd.
(AARCH64_OPERANDS): Add IMM_ROT{1,2,3}.
* aarch64-asm.h (aarch64_ins_imm_rotate): Declare.
* aarch64-asm.c (aarch64_ins_imm_rotate): Define.
* aarch64-dis.h (aarch64_ext_imm_rotate): Declare.
* aarch64-dis.c (aarch64_ext_imm_rotate): Define.
* aarch64-opc.h (enum aarch64_field_kind): Add FLD_rotate{1,2,3}.
* aarch64-opc.c (fields): Add FLD_rotate{1,2,3}.
(operand_general_constraint_met_p): Rotate and index range check.
(aarch64_print_operand): Handle rotate operand.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Likewise.
* aarch64-opc-2.c: Likewise.
gas/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* config/tc-aarch64.c (parse_operands): Handle AARCH64_OPND_IMM_ROT*.
* testsuite/gas/aarch64/advsimd-armv8_3.d: New.
* testsuite/gas/aarch64/advsimd-armv8_3.s: New.
* testsuite/gas/aarch64/illegal-fcmla.s: New.
* testsuite/gas/aarch64/illegal-fcmla.l: New.
* testsuite/gas/aarch64/illegal-fcmla.d: New.
2016-11-18 18:02:16 +08:00
|
|
|
|
{ 22, 1 }, /* SVE_xs_22: UXTW/SXTW select (bit 22). */
|
|
|
|
|
{ 11, 2 }, /* rotate1: FCMLA immediate rotate. */
|
|
|
|
|
{ 13, 2 }, /* rotate2: Indexed element FCMLA immediate rotate. */
|
|
|
|
|
{ 12, 1 }, /* rotate3: FCADD immediate rotate. */
|
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
gas/
* config/tc-aarch64.c (process_omitted_operand):
Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
and AARCH64_OPND_IMM_2.
(parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
and AARCH64_OPND_ADDR_OFFSET.
include/
* opcode/aarch64.h:
(aarch64_opnd): Add AARCH64_OPND_Va, AARCH64_OPND_MASK,
AARCH64_OPND_IMM_2, AARCH64_OPND_ADDR_OFFSET
and AARCH64_OPND_SM3_IMM2.
(aarch64_insn_class): Add cryptosm3 and cryptosm4.
(arch64_feature_set): Make uint64_t.
opcodes/
* aarch64-asm.h (ins_addr_offset): New.
* aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
(aarch64_ins_addr_offset): New.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_addr_offset): New.
* aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
(aarch64_ext_addr_offset): New.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
* aarch64-opc.c (fields): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
(operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
(aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
* aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
* aarch64-tbl.h
(aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
2017-11-09 23:22:30 +08:00
|
|
|
|
{ 12, 2 }, /* SM3: Indexed element SM3 2 bits index immediate. */
|
2019-02-08 00:55:23 +08:00
|
|
|
|
{ 22, 1 }, /* sz: 1-bit element size select. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum aarch64_operand_class
|
|
|
|
|
aarch64_get_operand_class (enum aarch64_opnd type)
|
|
|
|
|
{
|
|
|
|
|
return aarch64_operands[type].op_class;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
|
aarch64_get_operand_name (enum aarch64_opnd type)
|
|
|
|
|
{
|
|
|
|
|
return aarch64_operands[type].name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get operand description string.
|
|
|
|
|
This is usually for the diagnosis purpose. */
|
|
|
|
|
const char *
|
|
|
|
|
aarch64_get_operand_desc (enum aarch64_opnd type)
|
|
|
|
|
{
|
|
|
|
|
return aarch64_operands[type].desc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Table of all conditional affixes. */
|
|
|
|
|
const aarch64_cond aarch64_conds[16] =
|
|
|
|
|
{
|
[AArch64] Add SVE condition codes
SVE defines new names for existing NZCV conditions, to reflect the
result of instructions like PTEST. This patch adds support for these
names.
The patch also adds comments to the disassembly output to show the
alternative names of a condition code. For example:
cinv x0, x1, cc
becomes:
cinv x0, x1, cc // cc = lo, ul, last
and:
b.cc f0 <...>
becomes:
b.cc f0 <...> // b.lo, b.ul, b.last
Doing this for the SVE names follows the practice recommended by the
SVE specification and is definitely useful when reading SVE code.
If the feeling is that it's too distracting elsewhere, we could add
an option to turn it off.
include/
* opcode/aarch64.h (aarch64_cond): Bump array size to 4.
opcodes/
* aarch64-dis.c (remove_dot_suffix): New function, split out from...
(print_mnemonic_name): ...here.
(print_comment): New function.
(print_aarch64_insn): Call it.
* aarch64-opc.c (aarch64_conds): Add SVE names.
(aarch64_print_operand): Print alternative condition names in
a comment.
gas/
* config/tc-aarch64.c (opcode_lookup): Search for the end of
a condition name, rather than assuming that it will have exactly
2 characters.
(parse_operands): Likewise.
* testsuite/gas/aarch64/alias.d: Add new condition-code comments
to the expected output.
* testsuite/gas/aarch64/beq_1.d: Likewise.
* testsuite/gas/aarch64/float-fp16.d: Likewise.
* testsuite/gas/aarch64/int-insns.d: Likewise.
* testsuite/gas/aarch64/no-aliases.d: Likewise.
* testsuite/gas/aarch64/programmer-friendly.d: Likewise.
* testsuite/gas/aarch64/reloc-insn.d: Likewise.
* testsuite/gas/aarch64/b_c_1.d, testsuite/gas/aarch64/b_c_1.s:
New test.
ld/
* testsuite/ld-aarch64/emit-relocs-280.d: Match branch comments.
* testsuite/ld-aarch64/weak-undefined.d: Likewise.
2016-09-22 00:09:59 +08:00
|
|
|
|
{{"eq", "none"}, 0x0},
|
|
|
|
|
{{"ne", "any"}, 0x1},
|
|
|
|
|
{{"cs", "hs", "nlast"}, 0x2},
|
|
|
|
|
{{"cc", "lo", "ul", "last"}, 0x3},
|
|
|
|
|
{{"mi", "first"}, 0x4},
|
|
|
|
|
{{"pl", "nfrst"}, 0x5},
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{{"vs"}, 0x6},
|
|
|
|
|
{{"vc"}, 0x7},
|
[AArch64] Add SVE condition codes
SVE defines new names for existing NZCV conditions, to reflect the
result of instructions like PTEST. This patch adds support for these
names.
The patch also adds comments to the disassembly output to show the
alternative names of a condition code. For example:
cinv x0, x1, cc
becomes:
cinv x0, x1, cc // cc = lo, ul, last
and:
b.cc f0 <...>
becomes:
b.cc f0 <...> // b.lo, b.ul, b.last
Doing this for the SVE names follows the practice recommended by the
SVE specification and is definitely useful when reading SVE code.
If the feeling is that it's too distracting elsewhere, we could add
an option to turn it off.
include/
* opcode/aarch64.h (aarch64_cond): Bump array size to 4.
opcodes/
* aarch64-dis.c (remove_dot_suffix): New function, split out from...
(print_mnemonic_name): ...here.
(print_comment): New function.
(print_aarch64_insn): Call it.
* aarch64-opc.c (aarch64_conds): Add SVE names.
(aarch64_print_operand): Print alternative condition names in
a comment.
gas/
* config/tc-aarch64.c (opcode_lookup): Search for the end of
a condition name, rather than assuming that it will have exactly
2 characters.
(parse_operands): Likewise.
* testsuite/gas/aarch64/alias.d: Add new condition-code comments
to the expected output.
* testsuite/gas/aarch64/beq_1.d: Likewise.
* testsuite/gas/aarch64/float-fp16.d: Likewise.
* testsuite/gas/aarch64/int-insns.d: Likewise.
* testsuite/gas/aarch64/no-aliases.d: Likewise.
* testsuite/gas/aarch64/programmer-friendly.d: Likewise.
* testsuite/gas/aarch64/reloc-insn.d: Likewise.
* testsuite/gas/aarch64/b_c_1.d, testsuite/gas/aarch64/b_c_1.s:
New test.
ld/
* testsuite/ld-aarch64/emit-relocs-280.d: Match branch comments.
* testsuite/ld-aarch64/weak-undefined.d: Likewise.
2016-09-22 00:09:59 +08:00
|
|
|
|
{{"hi", "pmore"}, 0x8},
|
|
|
|
|
{{"ls", "plast"}, 0x9},
|
|
|
|
|
{{"ge", "tcont"}, 0xa},
|
|
|
|
|
{{"lt", "tstop"}, 0xb},
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{{"gt"}, 0xc},
|
|
|
|
|
{{"le"}, 0xd},
|
|
|
|
|
{{"al"}, 0xe},
|
|
|
|
|
{{"nv"}, 0xf},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const aarch64_cond *
|
|
|
|
|
get_cond_from_value (aarch64_insn value)
|
|
|
|
|
{
|
|
|
|
|
assert (value < 16);
|
|
|
|
|
return &aarch64_conds[(unsigned int) value];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const aarch64_cond *
|
|
|
|
|
get_inverted_cond (const aarch64_cond *cond)
|
|
|
|
|
{
|
|
|
|
|
return &aarch64_conds[cond->value ^ 0x1];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Table describing the operand extension/shifting operators; indexed by
|
|
|
|
|
enum aarch64_modifier_kind.
|
|
|
|
|
|
|
|
|
|
The value column provides the most common values for encoding modifiers,
|
|
|
|
|
which enables table-driven encoding/decoding for the modifiers. */
|
|
|
|
|
const struct aarch64_name_value_pair aarch64_operand_modifiers [] =
|
|
|
|
|
{
|
|
|
|
|
{"none", 0x0},
|
|
|
|
|
{"msl", 0x0},
|
|
|
|
|
{"ror", 0x3},
|
|
|
|
|
{"asr", 0x2},
|
|
|
|
|
{"lsr", 0x1},
|
|
|
|
|
{"lsl", 0x0},
|
|
|
|
|
{"uxtb", 0x0},
|
|
|
|
|
{"uxth", 0x1},
|
|
|
|
|
{"uxtw", 0x2},
|
|
|
|
|
{"uxtx", 0x3},
|
|
|
|
|
{"sxtb", 0x4},
|
|
|
|
|
{"sxth", 0x5},
|
|
|
|
|
{"sxtw", 0x6},
|
|
|
|
|
{"sxtx", 0x7},
|
[AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED
Some SVE instructions count the number of elements in a given vector
pattern and allow a scale factor of [1, 16] to be applied to the result.
This scale factor is written ", MUL #n", where "MUL" is a new operator.
E.g.:
UQINCD X0, POW2, MUL #2
This patch adds support for this kind of operand.
All existing operators were shifts of some kind, so there was a natural
range of [0, 63] regardless of context. This was then narrowered further
by later checks (e.g. to [0, 31] when used for 32-bit values).
In contrast, MUL doesn't really have a natural context-independent range.
Rather than pick one arbitrarily, it seemed better to make the "shift"
amount a full 64-bit value and leave the range test to the usual
operand-checking code. I've rearranged the fields of aarch64_opnd_info
so that this doesn't increase the size of the structure (although I don't
think its size is critical anyway).
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_PATTERN_SCALED): New
aarch64_opnd.
(AARCH64_MOD_MUL): New aarch64_modifier_kind.
(aarch64_opnd_info): Make shifter.amount an int64_t and
rearrange the fields.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add an entry for
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc.h (FLD_SVE_imm4): New aarch64_field_kind.
* aarch64-opc.c (fields): Add a corresponding entry.
(set_multiplier_out_of_range_error): New function.
(aarch64_operand_modifiers): Add entry for AARCH64_MOD_MUL.
(operand_general_constraint_met_p): Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
(print_register_offset_address): Use PRIi64 to print the
shift amount.
(aarch64_print_operand): Likewise. Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_scale): New inserter.
* aarch64-asm.c (aarch64_ins_sve_scale): New function.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_scale): New inserter.
* aarch64-dis.c (aarch64_ext_sve_scale): New function.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_MUL): New parse_shift_mode.
(parse_shift): Handle it. Reject AARCH64_MOD_MUL for all other
shift modes. Skip range tests for AARCH64_MOD_MUL.
(process_omitted_operand): Handle AARCH64_OPND_SVE_PATTERN_SCALED.
(parse_operands): Likewise.
2016-09-21 23:55:22 +08:00
|
|
|
|
{"mul", 0x0},
|
[AArch64][SVE 26/32] Add SVE MUL VL addressing modes
This patch adds support for addresses of the form:
[<base>, #<offset>, MUL VL]
This involves adding a new AARCH64_MOD_MUL_VL modifier, which is
why I split it out from the other addressing modes.
For LD2, LD3 and LD4, the offset must be a multiple of the structure
size, so for LD3 the possible values are 0, 3, 6, .... The patch
therefore extends value_aligned_p to handle non-power-of-2 alignments.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4xVL): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_S4x2xVL, AARCH64_OPND_SVE_ADDR_RI_S4x3xVL)
(AARCH64_OPND_SVE_ADDR_RI_S4x4xVL, AARCH64_OPND_SVE_ADDR_RI_S6xVL)
(AARCH64_OPND_SVE_ADDR_RI_S9xVL): Likewise.
(AARCH64_MOD_MUL_VL): New aarch64_modifier_kind.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new MUL VL
operands.
* aarch64-opc.c (aarch64_operand_modifiers): Initialize
the AARCH64_MOD_MUL_VL entry.
(value_aligned_p): Cope with non-power-of-two alignments.
(operand_general_constraint_met_p): Handle the new MUL VL addresses.
(print_immediate_offset_address): Likewise.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_s4xvl, ins_sve_addr_ri_s6xvl)
(ins_sve_addr_ri_s9xvl): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_s4xvl): New function.
(aarch64_ins_sve_addr_ri_s6xvl): Likewise.
(aarch64_ins_sve_addr_ri_s9xvl): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4xvl, ext_sve_addr_ri_s6xvl)
(ext_sve_addr_ri_s9xvl): New extractors.
* aarch64-dis.c (aarch64_ext_sve_addr_reg_mul_vl): New function.
(aarch64_ext_sve_addr_ri_s4xvl): Likewise.
(aarch64_ext_sve_addr_ri_s6xvl): Likewise.
(aarch64_ext_sve_addr_ri_s9xvl): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_NONE, SHIFTED_MUL_VL): New
parse_shift_modes.
(parse_shift): Handle SHIFTED_MUL_VL.
(parse_address_main): Add an imm_shift_mode parameter.
(parse_address, parse_sve_address): Update accordingly.
(parse_operands): Handle MUL VL addressing modes.
2016-09-21 23:56:15 +08:00
|
|
|
|
{"mul vl", 0x0},
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{NULL, 0},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum aarch64_modifier_kind
|
|
|
|
|
aarch64_get_operand_modifier (const struct aarch64_name_value_pair *desc)
|
|
|
|
|
{
|
|
|
|
|
return desc - aarch64_operand_modifiers;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
aarch64_insn
|
|
|
|
|
aarch64_get_operand_modifier_value (enum aarch64_modifier_kind kind)
|
|
|
|
|
{
|
|
|
|
|
return aarch64_operand_modifiers[kind].value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum aarch64_modifier_kind
|
|
|
|
|
aarch64_get_operand_modifier_from_value (aarch64_insn value,
|
|
|
|
|
bfd_boolean extend_p)
|
|
|
|
|
{
|
|
|
|
|
if (extend_p == TRUE)
|
|
|
|
|
return AARCH64_MOD_UXTB + value;
|
|
|
|
|
else
|
|
|
|
|
return AARCH64_MOD_LSL - value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
|
aarch64_extend_operator_p (enum aarch64_modifier_kind kind)
|
|
|
|
|
{
|
|
|
|
|
return (kind > AARCH64_MOD_LSL && kind <= AARCH64_MOD_SXTX)
|
|
|
|
|
? TRUE : FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bfd_boolean
|
|
|
|
|
aarch64_shift_operator_p (enum aarch64_modifier_kind kind)
|
|
|
|
|
{
|
|
|
|
|
return (kind >= AARCH64_MOD_ROR && kind <= AARCH64_MOD_LSL)
|
|
|
|
|
? TRUE : FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const struct aarch64_name_value_pair aarch64_barrier_options[16] =
|
|
|
|
|
{
|
|
|
|
|
{ "#0x00", 0x0 },
|
|
|
|
|
{ "oshld", 0x1 },
|
|
|
|
|
{ "oshst", 0x2 },
|
|
|
|
|
{ "osh", 0x3 },
|
|
|
|
|
{ "#0x04", 0x4 },
|
|
|
|
|
{ "nshld", 0x5 },
|
|
|
|
|
{ "nshst", 0x6 },
|
|
|
|
|
{ "nsh", 0x7 },
|
|
|
|
|
{ "#0x08", 0x8 },
|
|
|
|
|
{ "ishld", 0x9 },
|
|
|
|
|
{ "ishst", 0xa },
|
|
|
|
|
{ "ish", 0xb },
|
|
|
|
|
{ "#0x0c", 0xc },
|
|
|
|
|
{ "ld", 0xd },
|
|
|
|
|
{ "st", 0xe },
|
|
|
|
|
{ "sy", 0xf },
|
|
|
|
|
};
|
|
|
|
|
|
2015-12-11 18:11:27 +08:00
|
|
|
|
/* Table describing the operands supported by the aliases of the HINT
|
|
|
|
|
instruction.
|
|
|
|
|
|
|
|
|
|
The name column is the operand that is accepted for the alias. The value
|
|
|
|
|
column is the hint number of the alias. The list of operands is terminated
|
|
|
|
|
by NULL in the name column. */
|
|
|
|
|
|
|
|
|
|
const struct aarch64_name_value_pair aarch64_hint_options[] =
|
|
|
|
|
{
|
[PATCH, BINUTILS, AARCH64, 7/9] Add BTI instruction
This patch is part of the patch series to add support for ARMv8.5-A
extensions.
(https://developer.arm.com/products/architecture/cpu-architecture/a-profile/docs/ddi0596/a/a64-base-instructions-alphabetic-order/bti-branch-target-identification)
The Branch Target Identification instructions (BTI) are allocated to
existing HINT space, using HINT numbers 32, 34, 36, 38, such that
bits[7:6] of the instruction identify the compatibility of the BTI
instruction to different branches.
BTI {<targets>}
where <targets> one of the following, specifying which type of
indirection is allowed:
j : Can be a target of any BR Xn isntruction.
c : Can be a target of any BLR Xn and BR {X16|X17}.
jc: Can be a target of any free branch.
A BTI instruction without any <targets> is the strictest of all and
can not be a target of nay free branch.
*** include/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (AARCH64_FEATURE_BTI): New.
(AARCH64_ARCH_V8_5): Add AARCH64_FEATURE_BTI by default.
(aarch64_opnd): Add AARCH64_OPND_BTI_TARGET.
(HINT_OPD_CSYNC, HINT_OPD_C, HINT_OPD_J): New macros to
define HINT #imm values.
(HINT_OPD_JC, HINT_OPD_NULL): Likewise.
*** opcodes/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.h (HINT_OPD_NOPRINT, HINT_ENCODE): New.
(HINT_FLAG, HINT_VALUE): New macros to encode NO_PRINT flag
with the hint immediate.
* aarch64-opc.c (aarch64_hint_options): New entries for
c, j, jc and default (with HINT_OPD_F_NOPRINT flag) for BTI.
(aarch64_print_operand): Add case for AARCH64_OPND_BTI_TARGET
while checking for HINT_OPD_F_NOPRINT flag.
* aarch64-dis.c (aarch64_ext_hint): Use new HINT_VALUE to
extract value.
* aarch64-tbl.h (aarch64_feature_bti, BTI, BTI_INSN): New.
(aarch64_opcode_table): Add entry for BTI.
(AARCH64_OPERANDS): Add new description for BTI targets.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc-2.c: Regenerate.
*** gas/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_bti_operand): New.
(process_omitted_operand): Add case for AARCH64_OPND_BTI_TARGET.
(parse_operands): Likewise.
* testsuite/gas/aarch64/system.d: Update for BTI.
* testsuite/gas/aarch64/bti.s: New.
* testsuite/gas/aarch64/bti.d: New.
* testsuite/gas/aarch64/illegal-bti.d: New.
* testsuite/gas/aarch64/illegal-bti.l: New.
2018-09-26 18:00:49 +08:00
|
|
|
|
/* BTI. This is also the F_DEFAULT entry for AARCH64_OPND_BTI_TARGET. */
|
|
|
|
|
{ " ", HINT_ENCODE (HINT_OPD_F_NOPRINT, 0x20) },
|
|
|
|
|
{ "csync", HINT_OPD_CSYNC }, /* PSB CSYNC. */
|
|
|
|
|
{ "c", HINT_OPD_C }, /* BTI C. */
|
|
|
|
|
{ "j", HINT_OPD_J }, /* BTI J. */
|
|
|
|
|
{ "jc", HINT_OPD_JC }, /* BTI JC. */
|
|
|
|
|
{ NULL, HINT_OPD_NULL },
|
2015-12-11 18:11:27 +08:00
|
|
|
|
};
|
|
|
|
|
|
2013-01-04 21:32:06 +08:00
|
|
|
|
/* op -> op: load = 0 instruction = 1 store = 2
|
2012-08-13 22:52:54 +08:00
|
|
|
|
l -> level: 1-3
|
|
|
|
|
t -> temporal: temporal (retained) = 0 non-temporal (streaming) = 1 */
|
2013-01-04 21:32:06 +08:00
|
|
|
|
#define B(op,l,t) (((op) << 3) | (((l) - 1) << 1) | (t))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
const struct aarch64_name_value_pair aarch64_prfops[32] =
|
|
|
|
|
{
|
|
|
|
|
{ "pldl1keep", B(0, 1, 0) },
|
|
|
|
|
{ "pldl1strm", B(0, 1, 1) },
|
|
|
|
|
{ "pldl2keep", B(0, 2, 0) },
|
|
|
|
|
{ "pldl2strm", B(0, 2, 1) },
|
|
|
|
|
{ "pldl3keep", B(0, 3, 0) },
|
|
|
|
|
{ "pldl3strm", B(0, 3, 1) },
|
2013-02-15 02:12:51 +08:00
|
|
|
|
{ NULL, 0x06 },
|
|
|
|
|
{ NULL, 0x07 },
|
2013-01-04 21:32:06 +08:00
|
|
|
|
{ "plil1keep", B(1, 1, 0) },
|
|
|
|
|
{ "plil1strm", B(1, 1, 1) },
|
|
|
|
|
{ "plil2keep", B(1, 2, 0) },
|
|
|
|
|
{ "plil2strm", B(1, 2, 1) },
|
|
|
|
|
{ "plil3keep", B(1, 3, 0) },
|
|
|
|
|
{ "plil3strm", B(1, 3, 1) },
|
2013-02-15 02:12:51 +08:00
|
|
|
|
{ NULL, 0x0e },
|
|
|
|
|
{ NULL, 0x0f },
|
2013-01-04 21:32:06 +08:00
|
|
|
|
{ "pstl1keep", B(2, 1, 0) },
|
|
|
|
|
{ "pstl1strm", B(2, 1, 1) },
|
|
|
|
|
{ "pstl2keep", B(2, 2, 0) },
|
|
|
|
|
{ "pstl2strm", B(2, 2, 1) },
|
|
|
|
|
{ "pstl3keep", B(2, 3, 0) },
|
|
|
|
|
{ "pstl3strm", B(2, 3, 1) },
|
2013-02-15 02:12:51 +08:00
|
|
|
|
{ NULL, 0x16 },
|
|
|
|
|
{ NULL, 0x17 },
|
|
|
|
|
{ NULL, 0x18 },
|
|
|
|
|
{ NULL, 0x19 },
|
|
|
|
|
{ NULL, 0x1a },
|
|
|
|
|
{ NULL, 0x1b },
|
|
|
|
|
{ NULL, 0x1c },
|
|
|
|
|
{ NULL, 0x1d },
|
|
|
|
|
{ NULL, 0x1e },
|
|
|
|
|
{ NULL, 0x1f },
|
2012-08-13 22:52:54 +08:00
|
|
|
|
};
|
|
|
|
|
#undef B
|
|
|
|
|
|
|
|
|
|
/* Utilities on value constraint. */
|
|
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
|
value_in_range_p (int64_t value, int low, int high)
|
|
|
|
|
{
|
|
|
|
|
return (value >= low && value <= high) ? 1 : 0;
|
|
|
|
|
}
|
|
|
|
|
|
[AArch64][SVE 26/32] Add SVE MUL VL addressing modes
This patch adds support for addresses of the form:
[<base>, #<offset>, MUL VL]
This involves adding a new AARCH64_MOD_MUL_VL modifier, which is
why I split it out from the other addressing modes.
For LD2, LD3 and LD4, the offset must be a multiple of the structure
size, so for LD3 the possible values are 0, 3, 6, .... The patch
therefore extends value_aligned_p to handle non-power-of-2 alignments.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4xVL): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_S4x2xVL, AARCH64_OPND_SVE_ADDR_RI_S4x3xVL)
(AARCH64_OPND_SVE_ADDR_RI_S4x4xVL, AARCH64_OPND_SVE_ADDR_RI_S6xVL)
(AARCH64_OPND_SVE_ADDR_RI_S9xVL): Likewise.
(AARCH64_MOD_MUL_VL): New aarch64_modifier_kind.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new MUL VL
operands.
* aarch64-opc.c (aarch64_operand_modifiers): Initialize
the AARCH64_MOD_MUL_VL entry.
(value_aligned_p): Cope with non-power-of-two alignments.
(operand_general_constraint_met_p): Handle the new MUL VL addresses.
(print_immediate_offset_address): Likewise.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_s4xvl, ins_sve_addr_ri_s6xvl)
(ins_sve_addr_ri_s9xvl): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_s4xvl): New function.
(aarch64_ins_sve_addr_ri_s6xvl): Likewise.
(aarch64_ins_sve_addr_ri_s9xvl): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4xvl, ext_sve_addr_ri_s6xvl)
(ext_sve_addr_ri_s9xvl): New extractors.
* aarch64-dis.c (aarch64_ext_sve_addr_reg_mul_vl): New function.
(aarch64_ext_sve_addr_ri_s4xvl): Likewise.
(aarch64_ext_sve_addr_ri_s6xvl): Likewise.
(aarch64_ext_sve_addr_ri_s9xvl): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_NONE, SHIFTED_MUL_VL): New
parse_shift_modes.
(parse_shift): Handle SHIFTED_MUL_VL.
(parse_address_main): Add an imm_shift_mode parameter.
(parse_address, parse_sve_address): Update accordingly.
(parse_operands): Handle MUL VL addressing modes.
2016-09-21 23:56:15 +08:00
|
|
|
|
/* Return true if VALUE is a multiple of ALIGN. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
static inline int
|
|
|
|
|
value_aligned_p (int64_t value, int align)
|
|
|
|
|
{
|
[AArch64][SVE 26/32] Add SVE MUL VL addressing modes
This patch adds support for addresses of the form:
[<base>, #<offset>, MUL VL]
This involves adding a new AARCH64_MOD_MUL_VL modifier, which is
why I split it out from the other addressing modes.
For LD2, LD3 and LD4, the offset must be a multiple of the structure
size, so for LD3 the possible values are 0, 3, 6, .... The patch
therefore extends value_aligned_p to handle non-power-of-2 alignments.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4xVL): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_S4x2xVL, AARCH64_OPND_SVE_ADDR_RI_S4x3xVL)
(AARCH64_OPND_SVE_ADDR_RI_S4x4xVL, AARCH64_OPND_SVE_ADDR_RI_S6xVL)
(AARCH64_OPND_SVE_ADDR_RI_S9xVL): Likewise.
(AARCH64_MOD_MUL_VL): New aarch64_modifier_kind.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new MUL VL
operands.
* aarch64-opc.c (aarch64_operand_modifiers): Initialize
the AARCH64_MOD_MUL_VL entry.
(value_aligned_p): Cope with non-power-of-two alignments.
(operand_general_constraint_met_p): Handle the new MUL VL addresses.
(print_immediate_offset_address): Likewise.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_s4xvl, ins_sve_addr_ri_s6xvl)
(ins_sve_addr_ri_s9xvl): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_s4xvl): New function.
(aarch64_ins_sve_addr_ri_s6xvl): Likewise.
(aarch64_ins_sve_addr_ri_s9xvl): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4xvl, ext_sve_addr_ri_s6xvl)
(ext_sve_addr_ri_s9xvl): New extractors.
* aarch64-dis.c (aarch64_ext_sve_addr_reg_mul_vl): New function.
(aarch64_ext_sve_addr_ri_s4xvl): Likewise.
(aarch64_ext_sve_addr_ri_s6xvl): Likewise.
(aarch64_ext_sve_addr_ri_s9xvl): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_NONE, SHIFTED_MUL_VL): New
parse_shift_modes.
(parse_shift): Handle SHIFTED_MUL_VL.
(parse_address_main): Add an imm_shift_mode parameter.
(parse_address, parse_sve_address): Update accordingly.
(parse_operands): Handle MUL VL addressing modes.
2016-09-21 23:56:15 +08:00
|
|
|
|
return (value % align) == 0;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* A signed value fits in a field. */
|
|
|
|
|
static inline int
|
|
|
|
|
value_fit_signed_field_p (int64_t value, unsigned width)
|
|
|
|
|
{
|
|
|
|
|
assert (width < 32);
|
|
|
|
|
if (width < sizeof (value) * 8)
|
|
|
|
|
{
|
|
|
|
|
int64_t lim = (int64_t)1 << (width - 1);
|
|
|
|
|
if (value >= -lim && value < lim)
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* An unsigned value fits in a field. */
|
|
|
|
|
static inline int
|
|
|
|
|
value_fit_unsigned_field_p (int64_t value, unsigned width)
|
|
|
|
|
{
|
|
|
|
|
assert (width < 32);
|
|
|
|
|
if (width < sizeof (value) * 8)
|
|
|
|
|
{
|
|
|
|
|
int64_t lim = (int64_t)1 << width;
|
|
|
|
|
if (value >= 0 && value < lim)
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return 1 if OPERAND is SP or WSP. */
|
|
|
|
|
int
|
|
|
|
|
aarch64_stack_pointer_p (const aarch64_opnd_info *operand)
|
|
|
|
|
{
|
|
|
|
|
return ((aarch64_get_operand_class (operand->type)
|
|
|
|
|
== AARCH64_OPND_CLASS_INT_REG)
|
|
|
|
|
&& operand_maybe_stack_pointer (aarch64_operands + operand->type)
|
|
|
|
|
&& operand->reg.regno == 31);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return 1 if OPERAND is XZR or WZP. */
|
|
|
|
|
int
|
|
|
|
|
aarch64_zero_register_p (const aarch64_opnd_info *operand)
|
|
|
|
|
{
|
|
|
|
|
return ((aarch64_get_operand_class (operand->type)
|
|
|
|
|
== AARCH64_OPND_CLASS_INT_REG)
|
|
|
|
|
&& !operand_maybe_stack_pointer (aarch64_operands + operand->type)
|
|
|
|
|
&& operand->reg.regno == 31);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return true if the operand *OPERAND that has the operand code
|
|
|
|
|
OPERAND->TYPE and been qualified by OPERAND->QUALIFIER can be also
|
|
|
|
|
qualified by the qualifier TARGET. */
|
|
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
|
operand_also_qualified_p (const struct aarch64_opnd_info *operand,
|
|
|
|
|
aarch64_opnd_qualifier_t target)
|
|
|
|
|
{
|
|
|
|
|
switch (operand->qualifier)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_QLF_W:
|
|
|
|
|
if (target == AARCH64_OPND_QLF_WSP && aarch64_stack_pointer_p (operand))
|
|
|
|
|
return 1;
|
|
|
|
|
break;
|
|
|
|
|
case AARCH64_OPND_QLF_X:
|
|
|
|
|
if (target == AARCH64_OPND_QLF_SP && aarch64_stack_pointer_p (operand))
|
|
|
|
|
return 1;
|
|
|
|
|
break;
|
|
|
|
|
case AARCH64_OPND_QLF_WSP:
|
|
|
|
|
if (target == AARCH64_OPND_QLF_W
|
|
|
|
|
&& operand_maybe_stack_pointer (aarch64_operands + operand->type))
|
|
|
|
|
return 1;
|
|
|
|
|
break;
|
|
|
|
|
case AARCH64_OPND_QLF_SP:
|
|
|
|
|
if (target == AARCH64_OPND_QLF_X
|
|
|
|
|
&& operand_maybe_stack_pointer (aarch64_operands + operand->type))
|
|
|
|
|
return 1;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given qualifier sequence list QSEQ_LIST and the known qualifier KNOWN_QLF
|
|
|
|
|
for operand KNOWN_IDX, return the expected qualifier for operand IDX.
|
|
|
|
|
|
|
|
|
|
Return NIL if more than one expected qualifiers are found. */
|
|
|
|
|
|
|
|
|
|
aarch64_opnd_qualifier_t
|
|
|
|
|
aarch64_get_expected_qualifier (const aarch64_opnd_qualifier_seq_t *qseq_list,
|
|
|
|
|
int idx,
|
|
|
|
|
const aarch64_opnd_qualifier_t known_qlf,
|
|
|
|
|
int known_idx)
|
|
|
|
|
{
|
|
|
|
|
int i, saved_i;
|
|
|
|
|
|
|
|
|
|
/* Special case.
|
|
|
|
|
|
|
|
|
|
When the known qualifier is NIL, we have to assume that there is only
|
|
|
|
|
one qualifier sequence in the *QSEQ_LIST and return the corresponding
|
|
|
|
|
qualifier directly. One scenario is that for instruction
|
|
|
|
|
PRFM <prfop>, [<Xn|SP>, #:lo12:<symbol>]
|
|
|
|
|
which has only one possible valid qualifier sequence
|
|
|
|
|
NIL, S_D
|
|
|
|
|
the caller may pass NIL in KNOWN_QLF to obtain S_D so that it can
|
|
|
|
|
determine the correct relocation type (i.e. LDST64_LO12) for PRFM.
|
|
|
|
|
|
|
|
|
|
Because the qualifier NIL has dual roles in the qualifier sequence:
|
|
|
|
|
it can mean no qualifier for the operand, or the qualifer sequence is
|
|
|
|
|
not in use (when all qualifiers in the sequence are NILs), we have to
|
|
|
|
|
handle this special case here. */
|
|
|
|
|
if (known_qlf == AARCH64_OPND_NIL)
|
|
|
|
|
{
|
|
|
|
|
assert (qseq_list[0][known_idx] == AARCH64_OPND_NIL);
|
|
|
|
|
return qseq_list[0][idx];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0, saved_i = -1; i < AARCH64_MAX_QLF_SEQ_NUM; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (qseq_list[i][known_idx] == known_qlf)
|
|
|
|
|
{
|
|
|
|
|
if (saved_i != -1)
|
|
|
|
|
/* More than one sequences are found to have KNOWN_QLF at
|
|
|
|
|
KNOWN_IDX. */
|
|
|
|
|
return AARCH64_OPND_NIL;
|
|
|
|
|
saved_i = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return qseq_list[saved_i][idx];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum operand_qualifier_kind
|
|
|
|
|
{
|
|
|
|
|
OQK_NIL,
|
|
|
|
|
OQK_OPD_VARIANT,
|
|
|
|
|
OQK_VALUE_IN_RANGE,
|
|
|
|
|
OQK_MISC,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Operand qualifier description. */
|
|
|
|
|
struct operand_qualifier_data
|
|
|
|
|
{
|
|
|
|
|
/* The usage of the three data fields depends on the qualifier kind. */
|
|
|
|
|
int data0;
|
|
|
|
|
int data1;
|
|
|
|
|
int data2;
|
|
|
|
|
/* Description. */
|
|
|
|
|
const char *desc;
|
|
|
|
|
/* Kind. */
|
|
|
|
|
enum operand_qualifier_kind kind;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Indexed by the operand qualifier enumerators. */
|
|
|
|
|
struct operand_qualifier_data aarch64_opnd_qualifiers[] =
|
|
|
|
|
{
|
|
|
|
|
{0, 0, 0, "NIL", OQK_NIL},
|
|
|
|
|
|
|
|
|
|
/* Operand variant qualifiers.
|
|
|
|
|
First 3 fields:
|
|
|
|
|
element size, number of elements and common value for encoding. */
|
|
|
|
|
|
|
|
|
|
{4, 1, 0x0, "w", OQK_OPD_VARIANT},
|
|
|
|
|
{8, 1, 0x1, "x", OQK_OPD_VARIANT},
|
|
|
|
|
{4, 1, 0x0, "wsp", OQK_OPD_VARIANT},
|
|
|
|
|
{8, 1, 0x1, "sp", OQK_OPD_VARIANT},
|
|
|
|
|
|
|
|
|
|
{1, 1, 0x0, "b", OQK_OPD_VARIANT},
|
|
|
|
|
{2, 1, 0x1, "h", OQK_OPD_VARIANT},
|
|
|
|
|
{4, 1, 0x2, "s", OQK_OPD_VARIANT},
|
|
|
|
|
{8, 1, 0x3, "d", OQK_OPD_VARIANT},
|
|
|
|
|
{16, 1, 0x4, "q", OQK_OPD_VARIANT},
|
AArch64: Fix error checking for SIMD udot (by element)
Committed on behalf of Matthew Malcomson:
The SIMD UDOT instruction assembly has an unusual operand that selects a single
32 bit element with the mnemonic 4B.
This unusual mnemonic is handled by a special operand qualifier and associated
qualifier data in `aarch64_opnd_qualifiers`.
The current qualifier data describes 4 1-byte elements with the structure
{1, 4, 0x0, "4b", OQK_OPD_VARIANT}
This makes sense, as the instruction does work on 4 1-byte elements, however
some logic in the `operand_general_constraint_met_p` makes assumptions about
the range of index allowed when selecting a SIMD_ELEMENT depending on element
size.
That function reasons that e.g. in order to select a byte-sized element in a 16
byte V register an index must allow selection of one of the 16 elements and
hence its range will be in [0,15].
This reasoning breaks with the above description of a 4 part selection of 1
byte elements and allows an index outside the valid [0,3] range, triggering an
assert later on in the program in `aarch64_ins_reglane`.
vshcmd: > echo 'udot v0.2s, v1.8b, v2.4b[4]' | ../src/binutils-build/gas/as-new -march=armv8.4-a
as-new: ../../binutils-gdb/opcodes/aarch64-asm.c:134: aarch64_ins_reglane: Assertion `reglane_index < 4' failed.
{standard input}: Assembler messages:
{standard input}:1: Internal error (Aborted).
Please report this bug.
This patch changes the operand qualifier data so that it describes a single
32 bit element.
{4, 1, 0x0, "4b", OQK_OPD_VARIANT}
Hence the calculation in `operand_general_constraint_met_p` provides the
correct answer and the usual error checking machinery is used.
vshcmd: > echo 'udot v0.2s, v1.8b, v2.4b[4]' | ../src/binutils-build/gas/as-new -march=armv8.4-a
{standard input}: Assembler messages:
{standard input}:1: Error: register element index out of range 0 to 3 at operand 3 -- `udot v0.2s,v1.8b,v2.4b[4]'
2018-10-17 01:49:36 +08:00
|
|
|
|
{4, 1, 0x0, "4b", OQK_OPD_VARIANT},
|
[binutils][aarch64] Bfloat16 enablement [2/X]
Hi,
This patch is part of a series that adds support for Armv8.6-A
(Matrix Multiply and BFloat16 extensions) to binutils.
This patch introduces the following BFloat16 instructions to the
aarch64 backend: bfdot, bfmmla, bfcvt, bfcvtnt, bfmlal[t/b],
bfcvtn2.
Committed on behalf of Mihail Ionescu.
gas/ChangeLog:
2019-11-07 Mihail Ionescu <mihail.ionescu@arm.com>
2019-11-07 Matthew Malcomson <matthew.malcomson@arm.com>
* config/tc-aarch64.c (vectype_to_qualifier): Special case the
S_2H operand qualifier.
* doc/c-aarch64.texi: Document bf16 and bf16mmla4 extensions.
* testsuite/gas/aarch64/bfloat16.d: New test.
* testsuite/gas/aarch64/bfloat16.s: New test.
* testsuite/gas/aarch64/illegal-bfloat16.d: New test.
* testsuite/gas/aarch64/illegal-bfloat16.l: New test.
* testsuite/gas/aarch64/illegal-bfloat16.s: New test.
* testsuite/gas/aarch64/sve-bfloat-movprfx.s: New test.
* testsuite/gas/aarch64/sve-bfloat-movprfx.d: New test.
include/ChangeLog:
2019-11-07 Mihail Ionescu <mihail.ionescu@arm.com>
2019-11-07 Matthew Malcomson <matthew.malcomson@arm.com>
* opcode/aarch64.h (AARCH64_FEATURE_BFLOAT16): New feature macros.
(AARCH64_ARCH_V8_6): Include BFloat16 feature macros.
(enum aarch64_opnd_qualifier): Introduce new operand qualifier
AARCH64_OPND_QLF_S_2H.
(enum aarch64_insn_class): Introduce new class "bfloat16".
(BFLOAT16_SVE_INSNC): New feature set for bfloat16
instructions to support the movprfx constraint.
opcodes/ChangeLog:
2019-11-07 Mihail Ionescu <mihail.ionescu@arm.com>
2019-11-07 Matthew Malcomson <matthew.malcomson@arm.com>
* aarch64-asm.c (aarch64_ins_reglane): Use AARCH64_OPND_QLF_S_2H
in reglane special case.
* aarch64-dis-2.c (aarch64_opcode_lookup_1,
aarch64_find_next_opcode): Account for new instructions.
* aarch64-dis.c (aarch64_ext_reglane): Use AARCH64_OPND_QLF_S_2H
in reglane special case.
* aarch64-opc.c (struct operand_qualifier_data): Add data for
new AARCH64_OPND_QLF_S_2H qualifier.
* aarch64-tbl.h (QL_BFDOT QL_BFDOT64, QL_BFDOT64I, QL_BFMMLA2,
QL_BFCVT64, QL_BFCVTN64, QL_BFCVTN2_64): New qualifiers.
(aarch64_feature_bfloat16, aarch64_feature_bfloat16_sve,
aarch64_feature_bfloat16_bfmmla4): New feature sets.
(BFLOAT_SVE, BFLOAT): New feature set macros.
(BFLOAT_SVE_INSN, BFLOAT_BFMMLA4_INSN, BFLOAT_INSN): New macros
to define BFloat16 instructions.
(aarch64_opcode_table): Define new instructions bfdot,
bfmmla, bfcvt, bfcvtnt, bfdot, bfdot, bfcvtn, bfmlal[b/t]
bfcvtn2, bfcvt.
Regression tested on aarch64-elf.
Is it ok for trunk?
Regards,
Mihail
2019-11-08 00:38:59 +08:00
|
|
|
|
{4, 1, 0x0, "2h", OQK_OPD_VARIANT},
|
2012-08-13 22:52:54 +08:00
|
|
|
|
|
2017-12-19 20:04:13 +08:00
|
|
|
|
{1, 4, 0x0, "4b", OQK_OPD_VARIANT},
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{1, 8, 0x0, "8b", OQK_OPD_VARIANT},
|
|
|
|
|
{1, 16, 0x1, "16b", OQK_OPD_VARIANT},
|
2015-12-15 01:27:52 +08:00
|
|
|
|
{2, 2, 0x0, "2h", OQK_OPD_VARIANT},
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{2, 4, 0x2, "4h", OQK_OPD_VARIANT},
|
|
|
|
|
{2, 8, 0x3, "8h", OQK_OPD_VARIANT},
|
|
|
|
|
{4, 2, 0x4, "2s", OQK_OPD_VARIANT},
|
|
|
|
|
{4, 4, 0x5, "4s", OQK_OPD_VARIANT},
|
|
|
|
|
{8, 1, 0x6, "1d", OQK_OPD_VARIANT},
|
|
|
|
|
{8, 2, 0x7, "2d", OQK_OPD_VARIANT},
|
|
|
|
|
{16, 1, 0x8, "1q", OQK_OPD_VARIANT},
|
|
|
|
|
|
2016-09-21 23:54:30 +08:00
|
|
|
|
{0, 0, 0, "z", OQK_OPD_VARIANT},
|
|
|
|
|
{0, 0, 0, "m", OQK_OPD_VARIANT},
|
|
|
|
|
|
[BINUTILS, AARCH64, 4/8] Add Tag setting instructions in Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch add support to the Tag setting instructions from
MTE which consists of the following instructions:
- STG [<Xn|SP>, #<simm>]
- STG [<Xn|SP>, #<simm>]!
- STG [<Xn|SP>], #<simm>
- STZG [<Xn|SP>, #<simm>]
- STZG [<Xn|SP>, #<simm>]!
- STZG [<Xn|SP>], #<simm>
- ST2G [<Xn|SP>, #<simm>]
- ST2G [<Xn|SP>, #<simm>]!
- ST2G [<Xn|SP>], #<simm>
- STZ2G [<Xn|SP>, #<simm>]
- STZ2G [<Xn|SP>, #<simm>]!
- STZ2G [<Xn|SP>], #<simm>
- STGP <Xt>, <Xt2>, [<Xn|SP>, #<imm>]
- STGP <Xt>, <Xt2>, [<Xn|SP>, #<imm>]!
- STGP <Xt>, <Xt2>, [<Xn|SP>], #<imm>
where
<Xn|SP> : Is the 64-bit GPR or Stack pointer.
<simm> : Is the optional signed immediate offset, a multiple of 16
in the range -4096 to 4080, defaulting to 0.
*** include/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (aarch64_opnd): Add AARCH64_OPND_ADDR_SIMM11
and AARCH64_OPND_ADDR_SIMM13.
(aarch64_opnd_qualifier): Add new AARCH64_OPND_QLF_imm_tag.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_opnd_qualifiers): Add new data
for AARCH64_OPND_QLF_imm_tag.
(operand_general_constraint_met_p): Add case for
AARCH64_OPND_ADDR_SIMM11 and AARCH64_OPND_ADDR_SIMM13.
(aarch64_print_operand): Likewise.
* aarch64-tbl.h (QL_LDST_AT, QL_STGP): New.
(aarch64_opcode_table): Add stg, stzg, st2g, stz2g and stgp
for both offset and pre/post indexed versions.
(AARCH64_OPERANDS): Define ADDR_SIMM11 and ADDR_SIMM13.
* aarch64-asm-2.c: Regenerated.
* aarch64-dis-2.c: Regenerated.
* aarch64-opc-2.c: Regenerated.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_operands): Add switch case for
AARCH64_OPND_ADDR_SIMM11 and AARCH64_OPND_ADDR_SIMM13.
(fix_insn): Likewise.
(warn_unpredictable_ldst): Exempt STGP.
* testsuite/gas/aarch64/armv8_5-a-memtag.s: Add tests for stg, st2g,
stzg, stz2g and stgp.
* testsuite/gas/aarch64/armv8_5-a-memtag.d: Likewise.
* testsuite/gas/aarch64/illegal-memtag.s: Likewise.
* testsuite/gas/aarch64/illegal-memtag.l: Likewise.
2018-11-12 21:09:55 +08:00
|
|
|
|
/* Qualifier for scaled immediate for Tag granule (stg,st2g,etc). */
|
|
|
|
|
{16, 0, 0, "tag", OQK_OPD_VARIANT},
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* Qualifiers constraining the value range.
|
|
|
|
|
First 3 fields:
|
|
|
|
|
Lower bound, higher bound, unused. */
|
|
|
|
|
|
2016-12-13 20:37:18 +08:00
|
|
|
|
{0, 15, 0, "CR", OQK_VALUE_IN_RANGE},
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{0, 7, 0, "imm_0_7" , OQK_VALUE_IN_RANGE},
|
|
|
|
|
{0, 15, 0, "imm_0_15", OQK_VALUE_IN_RANGE},
|
|
|
|
|
{0, 31, 0, "imm_0_31", OQK_VALUE_IN_RANGE},
|
|
|
|
|
{0, 63, 0, "imm_0_63", OQK_VALUE_IN_RANGE},
|
|
|
|
|
{1, 32, 0, "imm_1_32", OQK_VALUE_IN_RANGE},
|
|
|
|
|
{1, 64, 0, "imm_1_64", OQK_VALUE_IN_RANGE},
|
|
|
|
|
|
|
|
|
|
/* Qualifiers for miscellaneous purpose.
|
|
|
|
|
First 3 fields:
|
|
|
|
|
unused, unused and unused. */
|
|
|
|
|
|
|
|
|
|
{0, 0, 0, "lsl", 0},
|
|
|
|
|
{0, 0, 0, "msl", 0},
|
|
|
|
|
|
|
|
|
|
{0, 0, 0, "retrieving", 0},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static inline bfd_boolean
|
|
|
|
|
operand_variant_qualifier_p (aarch64_opnd_qualifier_t qualifier)
|
|
|
|
|
{
|
|
|
|
|
return (aarch64_opnd_qualifiers[qualifier].kind == OQK_OPD_VARIANT)
|
|
|
|
|
? TRUE : FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bfd_boolean
|
|
|
|
|
qualifier_value_in_range_constraint_p (aarch64_opnd_qualifier_t qualifier)
|
|
|
|
|
{
|
|
|
|
|
return (aarch64_opnd_qualifiers[qualifier].kind == OQK_VALUE_IN_RANGE)
|
|
|
|
|
? TRUE : FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char*
|
|
|
|
|
aarch64_get_qualifier_name (aarch64_opnd_qualifier_t qualifier)
|
|
|
|
|
{
|
|
|
|
|
return aarch64_opnd_qualifiers[qualifier].desc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given an operand qualifier, return the expected data element size
|
|
|
|
|
of a qualified operand. */
|
|
|
|
|
unsigned char
|
|
|
|
|
aarch64_get_qualifier_esize (aarch64_opnd_qualifier_t qualifier)
|
|
|
|
|
{
|
|
|
|
|
assert (operand_variant_qualifier_p (qualifier) == TRUE);
|
|
|
|
|
return aarch64_opnd_qualifiers[qualifier].data0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned char
|
|
|
|
|
aarch64_get_qualifier_nelem (aarch64_opnd_qualifier_t qualifier)
|
|
|
|
|
{
|
|
|
|
|
assert (operand_variant_qualifier_p (qualifier) == TRUE);
|
|
|
|
|
return aarch64_opnd_qualifiers[qualifier].data1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
aarch64_insn
|
|
|
|
|
aarch64_get_qualifier_standard_value (aarch64_opnd_qualifier_t qualifier)
|
|
|
|
|
{
|
|
|
|
|
assert (operand_variant_qualifier_p (qualifier) == TRUE);
|
|
|
|
|
return aarch64_opnd_qualifiers[qualifier].data2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
get_lower_bound (aarch64_opnd_qualifier_t qualifier)
|
|
|
|
|
{
|
|
|
|
|
assert (qualifier_value_in_range_constraint_p (qualifier) == TRUE);
|
|
|
|
|
return aarch64_opnd_qualifiers[qualifier].data0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
get_upper_bound (aarch64_opnd_qualifier_t qualifier)
|
|
|
|
|
{
|
|
|
|
|
assert (qualifier_value_in_range_constraint_p (qualifier) == TRUE);
|
|
|
|
|
return aarch64_opnd_qualifiers[qualifier].data1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG_AARCH64
|
|
|
|
|
void
|
|
|
|
|
aarch64_verbose (const char *str, ...)
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
|
|
|
|
va_start (ap, str);
|
|
|
|
|
printf ("#### ");
|
|
|
|
|
vprintf (str, ap);
|
|
|
|
|
printf ("\n");
|
|
|
|
|
va_end (ap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
dump_qualifier_sequence (const aarch64_opnd_qualifier_t *qualifier)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
printf ("#### \t");
|
|
|
|
|
for (i = 0; i < AARCH64_MAX_OPND_NUM; ++i, ++qualifier)
|
|
|
|
|
printf ("%s,", aarch64_get_qualifier_name (*qualifier));
|
|
|
|
|
printf ("\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
dump_match_qualifiers (const struct aarch64_opnd_info *opnd,
|
|
|
|
|
const aarch64_opnd_qualifier_t *qualifier)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
aarch64_opnd_qualifier_t curr[AARCH64_MAX_OPND_NUM];
|
|
|
|
|
|
|
|
|
|
aarch64_verbose ("dump_match_qualifiers:");
|
|
|
|
|
for (i = 0; i < AARCH64_MAX_OPND_NUM; ++i)
|
|
|
|
|
curr[i] = opnd[i].qualifier;
|
|
|
|
|
dump_qualifier_sequence (curr);
|
|
|
|
|
aarch64_verbose ("against");
|
|
|
|
|
dump_qualifier_sequence (qualifier);
|
|
|
|
|
}
|
|
|
|
|
#endif /* DEBUG_AARCH64 */
|
|
|
|
|
|
2018-10-04 01:38:42 +08:00
|
|
|
|
/* This function checks if the given instruction INSN is a destructive
|
|
|
|
|
instruction based on the usage of the registers. It does not recognize
|
|
|
|
|
unary destructive instructions. */
|
|
|
|
|
bfd_boolean
|
|
|
|
|
aarch64_is_destructive_by_operands (const aarch64_opcode *opcode)
|
|
|
|
|
{
|
|
|
|
|
int i = 0;
|
|
|
|
|
const enum aarch64_opnd *opnds = opcode->operands;
|
|
|
|
|
|
|
|
|
|
if (opnds[0] == AARCH64_OPND_NIL)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
while (opnds[++i] != AARCH64_OPND_NIL)
|
|
|
|
|
if (opnds[i] == opnds[0])
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* TODO improve this, we can have an extra field at the runtime to
|
|
|
|
|
store the number of operands rather than calculating it every time. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
aarch64_num_of_operands (const aarch64_opcode *opcode)
|
|
|
|
|
{
|
|
|
|
|
int i = 0;
|
|
|
|
|
const enum aarch64_opnd *opnds = opcode->operands;
|
|
|
|
|
while (opnds[i++] != AARCH64_OPND_NIL)
|
|
|
|
|
;
|
|
|
|
|
--i;
|
|
|
|
|
assert (i >= 0 && i <= AARCH64_MAX_OPND_NUM);
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Find the best matched qualifier sequence in *QUALIFIERS_LIST for INST.
|
|
|
|
|
If succeeds, fill the found sequence in *RET, return 1; otherwise return 0.
|
|
|
|
|
|
|
|
|
|
N.B. on the entry, it is very likely that only some operands in *INST
|
|
|
|
|
have had their qualifiers been established.
|
|
|
|
|
|
|
|
|
|
If STOP_AT is not -1, the function will only try to match
|
|
|
|
|
the qualifier sequence for operands before and including the operand
|
|
|
|
|
of index STOP_AT; and on success *RET will only be filled with the first
|
|
|
|
|
(STOP_AT+1) qualifiers.
|
|
|
|
|
|
|
|
|
|
A couple examples of the matching algorithm:
|
|
|
|
|
|
|
|
|
|
X,W,NIL should match
|
|
|
|
|
X,W,NIL
|
|
|
|
|
|
|
|
|
|
NIL,NIL should match
|
|
|
|
|
X ,NIL
|
|
|
|
|
|
|
|
|
|
Apart from serving the main encoding routine, this can also be called
|
|
|
|
|
during or after the operand decoding. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
aarch64_find_best_match (const aarch64_inst *inst,
|
|
|
|
|
const aarch64_opnd_qualifier_seq_t *qualifiers_list,
|
|
|
|
|
int stop_at, aarch64_opnd_qualifier_t *ret)
|
|
|
|
|
{
|
|
|
|
|
int found = 0;
|
|
|
|
|
int i, num_opnds;
|
|
|
|
|
const aarch64_opnd_qualifier_t *qualifiers;
|
|
|
|
|
|
|
|
|
|
num_opnds = aarch64_num_of_operands (inst->opcode);
|
|
|
|
|
if (num_opnds == 0)
|
|
|
|
|
{
|
|
|
|
|
DEBUG_TRACE ("SUCCEED: no operand");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (stop_at < 0 || stop_at >= num_opnds)
|
|
|
|
|
stop_at = num_opnds - 1;
|
|
|
|
|
|
|
|
|
|
/* For each pattern. */
|
|
|
|
|
for (i = 0; i < AARCH64_MAX_QLF_SEQ_NUM; ++i, ++qualifiers_list)
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
qualifiers = *qualifiers_list;
|
|
|
|
|
|
|
|
|
|
/* Start as positive. */
|
|
|
|
|
found = 1;
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("%d", i);
|
|
|
|
|
#ifdef DEBUG_AARCH64
|
|
|
|
|
if (debug_dump)
|
|
|
|
|
dump_match_qualifiers (inst->operands, qualifiers);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Most opcodes has much fewer patterns in the list.
|
|
|
|
|
First NIL qualifier indicates the end in the list. */
|
|
|
|
|
if (empty_qualifier_sequence_p (qualifiers) == TRUE)
|
|
|
|
|
{
|
|
|
|
|
DEBUG_TRACE_IF (i == 0, "SUCCEED: empty qualifier list");
|
|
|
|
|
if (i)
|
|
|
|
|
found = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (j = 0; j < num_opnds && j <= stop_at; ++j, ++qualifiers)
|
|
|
|
|
{
|
|
|
|
|
if (inst->operands[j].qualifier == AARCH64_OPND_QLF_NIL)
|
|
|
|
|
{
|
|
|
|
|
/* Either the operand does not have qualifier, or the qualifier
|
|
|
|
|
for the operand needs to be deduced from the qualifier
|
|
|
|
|
sequence.
|
|
|
|
|
In the latter case, any constraint checking related with
|
|
|
|
|
the obtained qualifier should be done later in
|
|
|
|
|
operand_general_constraint_met_p. */
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (*qualifiers != inst->operands[j].qualifier)
|
|
|
|
|
{
|
|
|
|
|
/* Unless the target qualifier can also qualify the operand
|
|
|
|
|
(which has already had a non-nil qualifier), non-equal
|
|
|
|
|
qualifiers are generally un-matched. */
|
|
|
|
|
if (operand_also_qualified_p (inst->operands + j, *qualifiers))
|
|
|
|
|
continue;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
found = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
continue; /* Equal qualifiers are certainly matched. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Qualifiers established. */
|
|
|
|
|
if (found == 1)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (found == 1)
|
|
|
|
|
{
|
|
|
|
|
/* Fill the result in *RET. */
|
|
|
|
|
int j;
|
|
|
|
|
qualifiers = *qualifiers_list;
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("complete qualifiers using list %d", i);
|
|
|
|
|
#ifdef DEBUG_AARCH64
|
|
|
|
|
if (debug_dump)
|
|
|
|
|
dump_qualifier_sequence (qualifiers);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
for (j = 0; j <= stop_at; ++j, ++qualifiers)
|
|
|
|
|
ret[j] = *qualifiers;
|
|
|
|
|
for (; j < AARCH64_MAX_OPND_NUM; ++j)
|
|
|
|
|
ret[j] = AARCH64_OPND_QLF_NIL;
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("SUCCESS");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("FAIL");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Operand qualifier matching and resolving.
|
|
|
|
|
|
|
|
|
|
Return 1 if the operand qualifier(s) in *INST match one of the qualifier
|
|
|
|
|
sequences in INST->OPCODE->qualifiers_list; otherwise return 0.
|
|
|
|
|
|
|
|
|
|
if UPDATE_P == TRUE, update the qualifier(s) in *INST after the matching
|
|
|
|
|
succeeds. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
match_operands_qualifier (aarch64_inst *inst, bfd_boolean update_p)
|
|
|
|
|
{
|
2016-09-21 23:51:00 +08:00
|
|
|
|
int i, nops;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
aarch64_opnd_qualifier_seq_t qualifiers;
|
|
|
|
|
|
|
|
|
|
if (!aarch64_find_best_match (inst, inst->opcode->qualifiers_list, -1,
|
|
|
|
|
qualifiers))
|
|
|
|
|
{
|
|
|
|
|
DEBUG_TRACE ("matching FAIL");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-21 23:51:00 +08:00
|
|
|
|
if (inst->opcode->flags & F_STRICT)
|
|
|
|
|
{
|
|
|
|
|
/* Require an exact qualifier match, even for NIL qualifiers. */
|
|
|
|
|
nops = aarch64_num_of_operands (inst->opcode);
|
|
|
|
|
for (i = 0; i < nops; ++i)
|
|
|
|
|
if (inst->operands[i].qualifier != qualifiers[i])
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* Update the qualifiers. */
|
|
|
|
|
if (update_p == TRUE)
|
|
|
|
|
for (i = 0; i < AARCH64_MAX_OPND_NUM; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (inst->opcode->operands[i] == AARCH64_OPND_NIL)
|
|
|
|
|
break;
|
|
|
|
|
DEBUG_TRACE_IF (inst->operands[i].qualifier != qualifiers[i],
|
|
|
|
|
"update %s with %s for operand %d",
|
|
|
|
|
aarch64_get_qualifier_name (inst->operands[i].qualifier),
|
|
|
|
|
aarch64_get_qualifier_name (qualifiers[i]), i);
|
|
|
|
|
inst->operands[i].qualifier = qualifiers[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("matching SUCCESS");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return TRUE if VALUE is a wide constant that can be moved into a general
|
|
|
|
|
register by MOVZ.
|
|
|
|
|
|
|
|
|
|
IS32 indicates whether value is a 32-bit immediate or not.
|
|
|
|
|
If SHIFT_AMOUNT is not NULL, on the return of TRUE, the logical left shift
|
|
|
|
|
amount will be returned in *SHIFT_AMOUNT. */
|
|
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
|
aarch64_wide_constant_p (int64_t value, int is32, unsigned int *shift_amount)
|
|
|
|
|
{
|
|
|
|
|
int amount;
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("enter with 0x%" PRIx64 "(%" PRIi64 ")", value, value);
|
|
|
|
|
|
|
|
|
|
if (is32)
|
|
|
|
|
{
|
|
|
|
|
/* Allow all zeros or all ones in top 32-bits, so that
|
|
|
|
|
32-bit constant expressions like ~0x80000000 are
|
|
|
|
|
permitted. */
|
|
|
|
|
uint64_t ext = value;
|
|
|
|
|
if (ext >> 32 != 0 && ext >> 32 != (uint64_t) 0xffffffff)
|
|
|
|
|
/* Immediate out of range. */
|
|
|
|
|
return FALSE;
|
|
|
|
|
value &= (int64_t) 0xffffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* first, try movz then movn */
|
|
|
|
|
amount = -1;
|
|
|
|
|
if ((value & ((int64_t) 0xffff << 0)) == value)
|
|
|
|
|
amount = 0;
|
|
|
|
|
else if ((value & ((int64_t) 0xffff << 16)) == value)
|
|
|
|
|
amount = 16;
|
|
|
|
|
else if (!is32 && (value & ((int64_t) 0xffff << 32)) == value)
|
|
|
|
|
amount = 32;
|
|
|
|
|
else if (!is32 && (value & ((int64_t) 0xffff << 48)) == value)
|
|
|
|
|
amount = 48;
|
|
|
|
|
|
|
|
|
|
if (amount == -1)
|
|
|
|
|
{
|
|
|
|
|
DEBUG_TRACE ("exit FALSE with 0x%" PRIx64 "(%" PRIi64 ")", value, value);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (shift_amount != NULL)
|
|
|
|
|
*shift_amount = amount;
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("exit TRUE with amount %d", amount);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Build the accepted values for immediate logical SIMD instructions.
|
|
|
|
|
|
|
|
|
|
The standard encodings of the immediate value are:
|
|
|
|
|
N imms immr SIMD size R S
|
|
|
|
|
1 ssssss rrrrrr 64 UInt(rrrrrr) UInt(ssssss)
|
|
|
|
|
0 0sssss 0rrrrr 32 UInt(rrrrr) UInt(sssss)
|
|
|
|
|
0 10ssss 00rrrr 16 UInt(rrrr) UInt(ssss)
|
|
|
|
|
0 110sss 000rrr 8 UInt(rrr) UInt(sss)
|
|
|
|
|
0 1110ss 0000rr 4 UInt(rr) UInt(ss)
|
|
|
|
|
0 11110s 00000r 2 UInt(r) UInt(s)
|
|
|
|
|
where all-ones value of S is reserved.
|
|
|
|
|
|
|
|
|
|
Let's call E the SIMD size.
|
|
|
|
|
|
|
|
|
|
The immediate value is: S+1 bits '1' rotated to the right by R.
|
|
|
|
|
|
|
|
|
|
The total of valid encodings is 64*63 + 32*31 + ... + 2*1 = 5334
|
|
|
|
|
(remember S != E - 1). */
|
|
|
|
|
|
|
|
|
|
#define TOTAL_IMM_NB 5334
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
uint64_t imm;
|
|
|
|
|
aarch64_insn encoding;
|
|
|
|
|
} simd_imm_encoding;
|
|
|
|
|
|
|
|
|
|
static simd_imm_encoding simd_immediates[TOTAL_IMM_NB];
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
simd_imm_encoding_cmp(const void *i1, const void *i2)
|
|
|
|
|
{
|
|
|
|
|
const simd_imm_encoding *imm1 = (const simd_imm_encoding *)i1;
|
|
|
|
|
const simd_imm_encoding *imm2 = (const simd_imm_encoding *)i2;
|
|
|
|
|
|
|
|
|
|
if (imm1->imm < imm2->imm)
|
|
|
|
|
return -1;
|
|
|
|
|
if (imm1->imm > imm2->imm)
|
|
|
|
|
return +1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* immediate bitfield standard encoding
|
|
|
|
|
imm13<12> imm13<5:0> imm13<11:6> SIMD size R S
|
|
|
|
|
1 ssssss rrrrrr 64 rrrrrr ssssss
|
|
|
|
|
0 0sssss 0rrrrr 32 rrrrr sssss
|
|
|
|
|
0 10ssss 00rrrr 16 rrrr ssss
|
|
|
|
|
0 110sss 000rrr 8 rrr sss
|
|
|
|
|
0 1110ss 0000rr 4 rr ss
|
|
|
|
|
0 11110s 00000r 2 r s */
|
|
|
|
|
static inline int
|
|
|
|
|
encode_immediate_bitfield (int is64, uint32_t s, uint32_t r)
|
|
|
|
|
{
|
|
|
|
|
return (is64 << 12) | (r << 6) | s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
build_immediate_table (void)
|
|
|
|
|
{
|
|
|
|
|
uint32_t log_e, e, s, r, s_mask;
|
|
|
|
|
uint64_t mask, imm;
|
|
|
|
|
int nb_imms;
|
|
|
|
|
int is64;
|
|
|
|
|
|
|
|
|
|
nb_imms = 0;
|
|
|
|
|
for (log_e = 1; log_e <= 6; log_e++)
|
|
|
|
|
{
|
|
|
|
|
/* Get element size. */
|
|
|
|
|
e = 1u << log_e;
|
|
|
|
|
if (log_e == 6)
|
|
|
|
|
{
|
|
|
|
|
is64 = 1;
|
|
|
|
|
mask = 0xffffffffffffffffull;
|
|
|
|
|
s_mask = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
is64 = 0;
|
|
|
|
|
mask = (1ull << e) - 1;
|
|
|
|
|
/* log_e s_mask
|
|
|
|
|
1 ((1 << 4) - 1) << 2 = 111100
|
|
|
|
|
2 ((1 << 3) - 1) << 3 = 111000
|
|
|
|
|
3 ((1 << 2) - 1) << 4 = 110000
|
|
|
|
|
4 ((1 << 1) - 1) << 5 = 100000
|
|
|
|
|
5 ((1 << 0) - 1) << 6 = 000000 */
|
|
|
|
|
s_mask = ((1u << (5 - log_e)) - 1) << (log_e + 1);
|
|
|
|
|
}
|
|
|
|
|
for (s = 0; s < e - 1; s++)
|
|
|
|
|
for (r = 0; r < e; r++)
|
|
|
|
|
{
|
|
|
|
|
/* s+1 consecutive bits to 1 (s < 63) */
|
|
|
|
|
imm = (1ull << (s + 1)) - 1;
|
|
|
|
|
/* rotate right by r */
|
|
|
|
|
if (r != 0)
|
|
|
|
|
imm = (imm >> r) | ((imm << (e - r)) & mask);
|
|
|
|
|
/* replicate the constant depending on SIMD size */
|
|
|
|
|
switch (log_e)
|
|
|
|
|
{
|
|
|
|
|
case 1: imm = (imm << 2) | imm;
|
2016-10-05 15:47:02 +08:00
|
|
|
|
/* Fall through. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case 2: imm = (imm << 4) | imm;
|
2016-10-05 15:47:02 +08:00
|
|
|
|
/* Fall through. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case 3: imm = (imm << 8) | imm;
|
2016-10-05 15:47:02 +08:00
|
|
|
|
/* Fall through. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case 4: imm = (imm << 16) | imm;
|
2016-10-05 15:47:02 +08:00
|
|
|
|
/* Fall through. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case 5: imm = (imm << 32) | imm;
|
2016-10-05 15:47:02 +08:00
|
|
|
|
/* Fall through. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case 6: break;
|
|
|
|
|
default: abort ();
|
|
|
|
|
}
|
|
|
|
|
simd_immediates[nb_imms].imm = imm;
|
|
|
|
|
simd_immediates[nb_imms].encoding =
|
|
|
|
|
encode_immediate_bitfield(is64, s | s_mask, r);
|
|
|
|
|
nb_imms++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
assert (nb_imms == TOTAL_IMM_NB);
|
|
|
|
|
qsort(simd_immediates, nb_imms,
|
|
|
|
|
sizeof(simd_immediates[0]), simd_imm_encoding_cmp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return TRUE if VALUE is a valid logical immediate, i.e. bitmask, that can
|
|
|
|
|
be accepted by logical (immediate) instructions
|
|
|
|
|
e.g. ORR <Xd|SP>, <Xn>, #<imm>.
|
|
|
|
|
|
2016-09-21 23:51:09 +08:00
|
|
|
|
ESIZE is the number of bytes in the decoded immediate value.
|
2012-08-13 22:52:54 +08:00
|
|
|
|
If ENCODING is not NULL, on the return of TRUE, the standard encoding for
|
|
|
|
|
VALUE will be returned in *ENCODING. */
|
|
|
|
|
|
|
|
|
|
bfd_boolean
|
2016-09-21 23:51:09 +08:00
|
|
|
|
aarch64_logical_immediate_p (uint64_t value, int esize, aarch64_insn *encoding)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
simd_imm_encoding imm_enc;
|
|
|
|
|
const simd_imm_encoding *imm_encoding;
|
|
|
|
|
static bfd_boolean initialized = FALSE;
|
2016-09-21 23:51:09 +08:00
|
|
|
|
uint64_t upper;
|
|
|
|
|
int i;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
|
2017-04-24 18:55:44 +08:00
|
|
|
|
DEBUG_TRACE ("enter with 0x%" PRIx64 "(%" PRIi64 "), esize: %d", value,
|
|
|
|
|
value, esize);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
|
2017-05-18 13:17:40 +08:00
|
|
|
|
if (!initialized)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
build_immediate_table ();
|
|
|
|
|
initialized = TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-21 23:51:09 +08:00
|
|
|
|
/* Allow all zeros or all ones in top bits, so that
|
|
|
|
|
constant expressions like ~1 are permitted. */
|
|
|
|
|
upper = (uint64_t) -1 << (esize * 4) << (esize * 4);
|
|
|
|
|
if ((value & ~upper) != value && (value | upper) != value)
|
|
|
|
|
return FALSE;
|
2013-08-28 18:25:36 +08:00
|
|
|
|
|
2016-09-21 23:51:09 +08:00
|
|
|
|
/* Replicate to a full 64-bit value. */
|
|
|
|
|
value &= ~upper;
|
|
|
|
|
for (i = esize * 8; i < 64; i *= 2)
|
|
|
|
|
value |= (value << i);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
|
|
|
|
|
imm_enc.imm = value;
|
|
|
|
|
imm_encoding = (const simd_imm_encoding *)
|
|
|
|
|
bsearch(&imm_enc, simd_immediates, TOTAL_IMM_NB,
|
|
|
|
|
sizeof(simd_immediates[0]), simd_imm_encoding_cmp);
|
|
|
|
|
if (imm_encoding == NULL)
|
|
|
|
|
{
|
|
|
|
|
DEBUG_TRACE ("exit with FALSE");
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
if (encoding != NULL)
|
|
|
|
|
*encoding = imm_encoding->encoding;
|
|
|
|
|
DEBUG_TRACE ("exit with TRUE");
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If 64-bit immediate IMM is in the format of
|
|
|
|
|
"aaaaaaaabbbbbbbbccccccccddddddddeeeeeeeeffffffffgggggggghhhhhhhh",
|
|
|
|
|
where a, b, c, d, e, f, g and h are independently 0 or 1, return an integer
|
|
|
|
|
of value "abcdefgh". Otherwise return -1. */
|
|
|
|
|
int
|
|
|
|
|
aarch64_shrink_expanded_imm8 (uint64_t imm)
|
|
|
|
|
{
|
|
|
|
|
int i, ret;
|
|
|
|
|
uint32_t byte;
|
|
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
for (i = 0; i < 8; i++)
|
|
|
|
|
{
|
|
|
|
|
byte = (imm >> (8 * i)) & 0xff;
|
|
|
|
|
if (byte == 0xff)
|
|
|
|
|
ret |= 1 << i;
|
|
|
|
|
else if (byte != 0x00)
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Utility inline functions for operand_general_constraint_met_p. */
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
set_error (aarch64_operand_error *mismatch_detail,
|
|
|
|
|
enum aarch64_operand_error_kind kind, int idx,
|
|
|
|
|
const char* error)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
mismatch_detail->kind = kind;
|
|
|
|
|
mismatch_detail->index = idx;
|
|
|
|
|
mismatch_detail->error = error;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-06 04:46:24 +08:00
|
|
|
|
static inline void
|
|
|
|
|
set_syntax_error (aarch64_operand_error *mismatch_detail, int idx,
|
|
|
|
|
const char* error)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_error (mismatch_detail, AARCH64_OPDE_SYNTAX_ERROR, idx, error);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
static inline void
|
|
|
|
|
set_out_of_range_error (aarch64_operand_error *mismatch_detail,
|
|
|
|
|
int idx, int lower_bound, int upper_bound,
|
|
|
|
|
const char* error)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_error (mismatch_detail, AARCH64_OPDE_OUT_OF_RANGE, idx, error);
|
|
|
|
|
mismatch_detail->data[0] = lower_bound;
|
|
|
|
|
mismatch_detail->data[1] = upper_bound;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
set_imm_out_of_range_error (aarch64_operand_error *mismatch_detail,
|
|
|
|
|
int idx, int lower_bound, int upper_bound)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_out_of_range_error (mismatch_detail, idx, lower_bound, upper_bound,
|
|
|
|
|
_("immediate value"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
set_offset_out_of_range_error (aarch64_operand_error *mismatch_detail,
|
|
|
|
|
int idx, int lower_bound, int upper_bound)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_out_of_range_error (mismatch_detail, idx, lower_bound, upper_bound,
|
|
|
|
|
_("immediate offset"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
set_regno_out_of_range_error (aarch64_operand_error *mismatch_detail,
|
|
|
|
|
int idx, int lower_bound, int upper_bound)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_out_of_range_error (mismatch_detail, idx, lower_bound, upper_bound,
|
|
|
|
|
_("register number"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
set_elem_idx_out_of_range_error (aarch64_operand_error *mismatch_detail,
|
|
|
|
|
int idx, int lower_bound, int upper_bound)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_out_of_range_error (mismatch_detail, idx, lower_bound, upper_bound,
|
|
|
|
|
_("register element index"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
set_sft_amount_out_of_range_error (aarch64_operand_error *mismatch_detail,
|
|
|
|
|
int idx, int lower_bound, int upper_bound)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_out_of_range_error (mismatch_detail, idx, lower_bound, upper_bound,
|
|
|
|
|
_("shift amount"));
|
|
|
|
|
}
|
|
|
|
|
|
[AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED
Some SVE instructions count the number of elements in a given vector
pattern and allow a scale factor of [1, 16] to be applied to the result.
This scale factor is written ", MUL #n", where "MUL" is a new operator.
E.g.:
UQINCD X0, POW2, MUL #2
This patch adds support for this kind of operand.
All existing operators were shifts of some kind, so there was a natural
range of [0, 63] regardless of context. This was then narrowered further
by later checks (e.g. to [0, 31] when used for 32-bit values).
In contrast, MUL doesn't really have a natural context-independent range.
Rather than pick one arbitrarily, it seemed better to make the "shift"
amount a full 64-bit value and leave the range test to the usual
operand-checking code. I've rearranged the fields of aarch64_opnd_info
so that this doesn't increase the size of the structure (although I don't
think its size is critical anyway).
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_PATTERN_SCALED): New
aarch64_opnd.
(AARCH64_MOD_MUL): New aarch64_modifier_kind.
(aarch64_opnd_info): Make shifter.amount an int64_t and
rearrange the fields.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add an entry for
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc.h (FLD_SVE_imm4): New aarch64_field_kind.
* aarch64-opc.c (fields): Add a corresponding entry.
(set_multiplier_out_of_range_error): New function.
(aarch64_operand_modifiers): Add entry for AARCH64_MOD_MUL.
(operand_general_constraint_met_p): Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
(print_register_offset_address): Use PRIi64 to print the
shift amount.
(aarch64_print_operand): Likewise. Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_scale): New inserter.
* aarch64-asm.c (aarch64_ins_sve_scale): New function.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_scale): New inserter.
* aarch64-dis.c (aarch64_ext_sve_scale): New function.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_MUL): New parse_shift_mode.
(parse_shift): Handle it. Reject AARCH64_MOD_MUL for all other
shift modes. Skip range tests for AARCH64_MOD_MUL.
(process_omitted_operand): Handle AARCH64_OPND_SVE_PATTERN_SCALED.
(parse_operands): Likewise.
2016-09-21 23:55:22 +08:00
|
|
|
|
/* Report that the MUL modifier in operand IDX should be in the range
|
|
|
|
|
[LOWER_BOUND, UPPER_BOUND]. */
|
|
|
|
|
static inline void
|
|
|
|
|
set_multiplier_out_of_range_error (aarch64_operand_error *mismatch_detail,
|
|
|
|
|
int idx, int lower_bound, int upper_bound)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_out_of_range_error (mismatch_detail, idx, lower_bound, upper_bound,
|
|
|
|
|
_("multiplier"));
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
static inline void
|
|
|
|
|
set_unaligned_error (aarch64_operand_error *mismatch_detail, int idx,
|
|
|
|
|
int alignment)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_error (mismatch_detail, AARCH64_OPDE_UNALIGNED, idx, NULL);
|
|
|
|
|
mismatch_detail->data[0] = alignment;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
set_reg_list_error (aarch64_operand_error *mismatch_detail, int idx,
|
|
|
|
|
int expected_num)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_error (mismatch_detail, AARCH64_OPDE_REG_LIST, idx, NULL);
|
|
|
|
|
mismatch_detail->data[0] = expected_num;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
set_other_error (aarch64_operand_error *mismatch_detail, int idx,
|
|
|
|
|
const char* error)
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail == NULL)
|
|
|
|
|
return;
|
|
|
|
|
set_error (mismatch_detail, AARCH64_OPDE_OTHER_ERROR, idx, error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* General constraint checking based on operand code.
|
|
|
|
|
|
|
|
|
|
Return 1 if OPNDS[IDX] meets the general constraint of operand code TYPE
|
|
|
|
|
as the IDXth operand of opcode OPCODE. Otherwise return 0.
|
|
|
|
|
|
|
|
|
|
This function has to be called after the qualifiers for all operands
|
|
|
|
|
have been resolved.
|
|
|
|
|
|
|
|
|
|
Mismatching error message is returned in *MISMATCH_DETAIL upon request,
|
|
|
|
|
i.e. when MISMATCH_DETAIL is non-NULL. This avoids the generation
|
|
|
|
|
of error message during the disassembling where error message is not
|
|
|
|
|
wanted. We avoid the dynamic construction of strings of error messages
|
|
|
|
|
here (i.e. in libopcodes), as it is costly and complicated; instead, we
|
|
|
|
|
use a combination of error code, static string and some integer data to
|
|
|
|
|
represent an error. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
operand_general_constraint_met_p (const aarch64_opnd_info *opnds, int idx,
|
|
|
|
|
enum aarch64_opnd type,
|
|
|
|
|
const aarch64_opcode *opcode,
|
|
|
|
|
aarch64_operand_error *mismatch_detail)
|
|
|
|
|
{
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
unsigned num, modifiers, shift;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
unsigned char size;
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
int64_t imm, min_value, max_value;
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
uint64_t uvalue, mask;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
const aarch64_opnd_info *opnd = opnds + idx;
|
|
|
|
|
aarch64_opnd_qualifier_t qualifier = opnd->qualifier;
|
|
|
|
|
|
|
|
|
|
assert (opcode->operands[idx] == opnd->type && opnd->type == type);
|
|
|
|
|
|
|
|
|
|
switch (aarch64_operands[type].op_class)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_CLASS_INT_REG:
|
2014-09-03 21:40:41 +08:00
|
|
|
|
/* Check pair reg constraints for cas* instructions. */
|
|
|
|
|
if (type == AARCH64_OPND_PAIRREG)
|
|
|
|
|
{
|
|
|
|
|
assert (idx == 1 || idx == 3);
|
|
|
|
|
if (opnds[idx - 1].reg.regno % 2 != 0)
|
|
|
|
|
{
|
|
|
|
|
set_syntax_error (mismatch_detail, idx - 1,
|
|
|
|
|
_("reg pair must start from even reg"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (opnds[idx].reg.regno != opnds[idx - 1].reg.regno + 1)
|
|
|
|
|
{
|
|
|
|
|
set_syntax_error (mismatch_detail, idx,
|
|
|
|
|
_("reg pair must be contiguous"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* <Xt> may be optional in some IC and TLBI instructions. */
|
|
|
|
|
if (type == AARCH64_OPND_Rt_SYS)
|
|
|
|
|
{
|
|
|
|
|
assert (idx == 1 && (aarch64_get_operand_class (opnds[0].type)
|
|
|
|
|
== AARCH64_OPND_CLASS_SYSTEM));
|
2015-12-11 00:31:35 +08:00
|
|
|
|
if (opnds[1].present
|
|
|
|
|
&& !aarch64_sys_ins_reg_has_xt (opnds[0].sysins_op))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx, _("extraneous register"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2015-12-11 00:31:35 +08:00
|
|
|
|
if (!opnds[1].present
|
|
|
|
|
&& aarch64_sys_ins_reg_has_xt (opnds[0].sysins_op))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx, _("missing register"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
switch (qualifier)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_QLF_WSP:
|
|
|
|
|
case AARCH64_OPND_QLF_SP:
|
|
|
|
|
if (!aarch64_stack_pointer_p (opnd))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("stack pointer register expected"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 21/32] Add Zn and Pn registers
This patch adds the Zn and Pn registers, and associated fields and
operands.
include/
* opcode/aarch64.h (AARCH64_OPND_CLASS_SVE_REG): New
aarch64_operand_class.
(AARCH64_OPND_CLASS_PRED_REG): Likewise.
(AARCH64_OPND_SVE_Pd, AARCH64_OPND_SVE_Pg3, AARCH64_OPND_SVE_Pg4_5)
(AARCH64_OPND_SVE_Pg4_10, AARCH64_OPND_SVE_Pg4_16)
(AARCH64_OPND_SVE_Pm, AARCH64_OPND_SVE_Pn, AARCH64_OPND_SVE_Pt)
(AARCH64_OPND_SVE_Za_5, AARCH64_OPND_SVE_Za_16, AARCH64_OPND_SVE_Zd)
(AARCH64_OPND_SVE_Zm_5, AARCH64_OPND_SVE_Zm_16, AARCH64_OPND_SVE_Zn)
(AARCH64_OPND_SVE_Zn_INDEX, AARCH64_OPND_SVE_ZnxN)
(AARCH64_OPND_SVE_Zt, AARCH64_OPND_SVE_ZtxN): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new SVE operands.
* aarch64-opc.h (FLD_SVE_Pd, FLD_SVE_Pg3, FLD_SVE_Pg4_5)
(FLD_SVE_Pg4_10, FLD_SVE_Pg4_16, FLD_SVE_Pm, FLD_SVE_Pn, FLD_SVE_Pt)
(FLD_SVE_Za_5, FLD_SVE_Za_16, FLD_SVE_Zd, FLD_SVE_Zm_5, FLD_SVE_Zm_16)
(FLD_SVE_Zn, FLD_SVE_Zt, FLD_SVE_tzsh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries here.
(operand_general_constraint_met_p): Check that SVE register lists
have the correct length. Check the ranges of SVE index registers.
Check for cases where p8-p15 are used in 3-bit predicate fields.
(aarch64_print_operand): Handle the new SVE operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_index, ins_sve_reglist): New inserters.
* aarch64-asm.c (aarch64_ins_sve_index): New function.
(aarch64_ins_sve_reglist): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_index, ext_sve_reglist): New extractors.
* aarch64-dis.c (aarch64_ext_sve_index): New function.
(aarch64_ext_sve_reglist): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (NTA_HASVARWIDTH): New macro.
(AARCH64_REG_TYPES): Add ZN and PN.
(get_reg_expected_msg): Handle them.
(parse_vector_type_for_operand): Add a reg_type parameter.
Skip the width for Zn and Pn registers.
(parse_typed_reg): Extend vector handling to Zn and Pn. Update the
call to parse_vector_type_for_operand. Set HASVARTYPE for Zn and Pn,
expecting the width to be 0.
(parse_vector_reg_list): Restrict error about [BHSD]nn operands to
REG_TYPE_VN.
(vectype_to_qualifier): Use S_[BHSD] qualifiers for NTA_HASVARWIDTH.
(parse_operands): Handle the new Zn and Pn operands.
(REGSET16): New macro, split out from...
(REGSET31): ...here.
(reg_names): Add Zn and Pn entries.
2016-09-21 23:53:54 +08:00
|
|
|
|
case AARCH64_OPND_CLASS_SVE_REG:
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zm3_INDEX:
|
|
|
|
|
case AARCH64_OPND_SVE_Zm3_22_INDEX:
|
2019-05-09 17:29:17 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zm3_11_INDEX:
|
2019-05-09 17:29:24 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zm4_11_INDEX:
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zm4_INDEX:
|
|
|
|
|
size = get_operand_fields_width (get_operand_from_code (type));
|
|
|
|
|
shift = get_operand_specific_data (&aarch64_operands[type]);
|
|
|
|
|
mask = (1 << shift) - 1;
|
|
|
|
|
if (opnd->reg.regno > mask)
|
|
|
|
|
{
|
|
|
|
|
assert (mask == 7 || mask == 15);
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
mask == 15
|
|
|
|
|
? _("z0-z15 expected")
|
|
|
|
|
: _("z0-z7 expected"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
mask = (1 << (size - shift)) - 1;
|
|
|
|
|
if (!value_in_range_p (opnd->reglane.index, 0, mask))
|
|
|
|
|
{
|
|
|
|
|
set_elem_idx_out_of_range_error (mismatch_detail, idx, 0, mask);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 21/32] Add Zn and Pn registers
This patch adds the Zn and Pn registers, and associated fields and
operands.
include/
* opcode/aarch64.h (AARCH64_OPND_CLASS_SVE_REG): New
aarch64_operand_class.
(AARCH64_OPND_CLASS_PRED_REG): Likewise.
(AARCH64_OPND_SVE_Pd, AARCH64_OPND_SVE_Pg3, AARCH64_OPND_SVE_Pg4_5)
(AARCH64_OPND_SVE_Pg4_10, AARCH64_OPND_SVE_Pg4_16)
(AARCH64_OPND_SVE_Pm, AARCH64_OPND_SVE_Pn, AARCH64_OPND_SVE_Pt)
(AARCH64_OPND_SVE_Za_5, AARCH64_OPND_SVE_Za_16, AARCH64_OPND_SVE_Zd)
(AARCH64_OPND_SVE_Zm_5, AARCH64_OPND_SVE_Zm_16, AARCH64_OPND_SVE_Zn)
(AARCH64_OPND_SVE_Zn_INDEX, AARCH64_OPND_SVE_ZnxN)
(AARCH64_OPND_SVE_Zt, AARCH64_OPND_SVE_ZtxN): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new SVE operands.
* aarch64-opc.h (FLD_SVE_Pd, FLD_SVE_Pg3, FLD_SVE_Pg4_5)
(FLD_SVE_Pg4_10, FLD_SVE_Pg4_16, FLD_SVE_Pm, FLD_SVE_Pn, FLD_SVE_Pt)
(FLD_SVE_Za_5, FLD_SVE_Za_16, FLD_SVE_Zd, FLD_SVE_Zm_5, FLD_SVE_Zm_16)
(FLD_SVE_Zn, FLD_SVE_Zt, FLD_SVE_tzsh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries here.
(operand_general_constraint_met_p): Check that SVE register lists
have the correct length. Check the ranges of SVE index registers.
Check for cases where p8-p15 are used in 3-bit predicate fields.
(aarch64_print_operand): Handle the new SVE operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_index, ins_sve_reglist): New inserters.
* aarch64-asm.c (aarch64_ins_sve_index): New function.
(aarch64_ins_sve_reglist): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_index, ext_sve_reglist): New extractors.
* aarch64-dis.c (aarch64_ext_sve_index): New function.
(aarch64_ext_sve_reglist): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (NTA_HASVARWIDTH): New macro.
(AARCH64_REG_TYPES): Add ZN and PN.
(get_reg_expected_msg): Handle them.
(parse_vector_type_for_operand): Add a reg_type parameter.
Skip the width for Zn and Pn registers.
(parse_typed_reg): Extend vector handling to Zn and Pn. Update the
call to parse_vector_type_for_operand. Set HASVARTYPE for Zn and Pn,
expecting the width to be 0.
(parse_vector_reg_list): Restrict error about [BHSD]nn operands to
REG_TYPE_VN.
(vectype_to_qualifier): Use S_[BHSD] qualifiers for NTA_HASVARWIDTH.
(parse_operands): Handle the new Zn and Pn operands.
(REGSET16): New macro, split out from...
(REGSET31): ...here.
(reg_names): Add Zn and Pn entries.
2016-09-21 23:53:54 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zn_INDEX:
|
|
|
|
|
size = aarch64_get_qualifier_esize (opnd->qualifier);
|
|
|
|
|
if (!value_in_range_p (opnd->reglane.index, 0, 64 / size - 1))
|
|
|
|
|
{
|
|
|
|
|
set_elem_idx_out_of_range_error (mismatch_detail, idx,
|
|
|
|
|
0, 64 / size - 1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ZnxN:
|
|
|
|
|
case AARCH64_OPND_SVE_ZtxN:
|
|
|
|
|
if (opnd->reglist.num_regs != get_opcode_dependent_value (opcode))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid register list"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_CLASS_PRED_REG:
|
|
|
|
|
if (opnd->reg.regno >= 8
|
|
|
|
|
&& get_operand_fields_width (get_operand_from_code (type)) == 3)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx, _("p0-p7 expected"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2013-11-06 04:50:18 +08:00
|
|
|
|
case AARCH64_OPND_CLASS_COND:
|
|
|
|
|
if (type == AARCH64_OPND_COND1
|
|
|
|
|
&& (opnds[idx].cond->value & 0xe) == 0xe)
|
|
|
|
|
{
|
|
|
|
|
/* Not allow AL or NV. */
|
|
|
|
|
set_syntax_error (mismatch_detail, idx, NULL);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_CLASS_ADDRESS:
|
|
|
|
|
/* Check writeback. */
|
|
|
|
|
switch (opcode->iclass)
|
|
|
|
|
{
|
|
|
|
|
case ldst_pos:
|
|
|
|
|
case ldst_unscaled:
|
|
|
|
|
case ldstnapair_offs:
|
|
|
|
|
case ldstpair_off:
|
|
|
|
|
case ldst_unpriv:
|
|
|
|
|
if (opnd->addr.writeback == 1)
|
|
|
|
|
{
|
2013-11-06 04:46:24 +08:00
|
|
|
|
set_syntax_error (mismatch_detail, idx,
|
|
|
|
|
_("unexpected address writeback"));
|
2012-08-13 22:52:54 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2016-11-18 17:49:06 +08:00
|
|
|
|
case ldst_imm10:
|
|
|
|
|
if (opnd->addr.writeback == 1 && opnd->addr.preind != 1)
|
|
|
|
|
{
|
|
|
|
|
set_syntax_error (mismatch_detail, idx,
|
|
|
|
|
_("unexpected address writeback"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case ldst_imm9:
|
|
|
|
|
case ldstpair_indexed:
|
|
|
|
|
case asisdlsep:
|
|
|
|
|
case asisdlsop:
|
|
|
|
|
if (opnd->addr.writeback == 0)
|
|
|
|
|
{
|
2013-11-06 04:46:24 +08:00
|
|
|
|
set_syntax_error (mismatch_detail, idx,
|
|
|
|
|
_("address writeback expected"));
|
2012-08-13 22:52:54 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert (opnd->addr.writeback == 0);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_ADDR_SIMM7:
|
|
|
|
|
/* Scaled signed 7 bits immediate offset. */
|
|
|
|
|
/* Get the size of the data element that is accessed, which may be
|
|
|
|
|
different from that of the source register size,
|
|
|
|
|
e.g. in strb/ldrb. */
|
|
|
|
|
size = aarch64_get_qualifier_esize (opnd->qualifier);
|
|
|
|
|
if (!value_in_range_p (opnd->addr.offset.imm, -64 * size, 63 * size))
|
|
|
|
|
{
|
|
|
|
|
set_offset_out_of_range_error (mismatch_detail, idx,
|
|
|
|
|
-64 * size, 63 * size);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!value_aligned_p (opnd->addr.offset.imm, size))
|
|
|
|
|
{
|
|
|
|
|
set_unaligned_error (mismatch_detail, idx, size);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
gas/
* config/tc-aarch64.c (process_omitted_operand):
Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
and AARCH64_OPND_IMM_2.
(parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
and AARCH64_OPND_ADDR_OFFSET.
include/
* opcode/aarch64.h:
(aarch64_opnd): Add AARCH64_OPND_Va, AARCH64_OPND_MASK,
AARCH64_OPND_IMM_2, AARCH64_OPND_ADDR_OFFSET
and AARCH64_OPND_SM3_IMM2.
(aarch64_insn_class): Add cryptosm3 and cryptosm4.
(arch64_feature_set): Make uint64_t.
opcodes/
* aarch64-asm.h (ins_addr_offset): New.
* aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
(aarch64_ins_addr_offset): New.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_addr_offset): New.
* aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
(aarch64_ext_addr_offset): New.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
* aarch64-opc.c (fields): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
(operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
(aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
* aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
* aarch64-tbl.h
(aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
2017-11-09 23:22:30 +08:00
|
|
|
|
case AARCH64_OPND_ADDR_OFFSET:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_ADDR_SIMM9:
|
|
|
|
|
/* Unscaled signed 9 bits immediate offset. */
|
|
|
|
|
if (!value_in_range_p (opnd->addr.offset.imm, -256, 255))
|
|
|
|
|
{
|
|
|
|
|
set_offset_out_of_range_error (mismatch_detail, idx, -256, 255);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_ADDR_SIMM9_2:
|
|
|
|
|
/* Unscaled signed 9 bits immediate offset, which has to be negative
|
|
|
|
|
or unaligned. */
|
|
|
|
|
size = aarch64_get_qualifier_esize (qualifier);
|
|
|
|
|
if ((value_in_range_p (opnd->addr.offset.imm, 0, 255)
|
|
|
|
|
&& !value_aligned_p (opnd->addr.offset.imm, size))
|
|
|
|
|
|| value_in_range_p (opnd->addr.offset.imm, -256, -1))
|
|
|
|
|
return 1;
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("negative or unaligned offset expected"));
|
|
|
|
|
return 0;
|
|
|
|
|
|
2016-11-18 17:49:06 +08:00
|
|
|
|
case AARCH64_OPND_ADDR_SIMM10:
|
|
|
|
|
/* Scaled signed 10 bits immediate offset. */
|
|
|
|
|
if (!value_in_range_p (opnd->addr.offset.imm, -4096, 4088))
|
|
|
|
|
{
|
|
|
|
|
set_offset_out_of_range_error (mismatch_detail, idx, -4096, 4088);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!value_aligned_p (opnd->addr.offset.imm, 8))
|
|
|
|
|
{
|
|
|
|
|
set_unaligned_error (mismatch_detail, idx, 8);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[BINUTILS, AARCH64, 4/8] Add Tag setting instructions in Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch add support to the Tag setting instructions from
MTE which consists of the following instructions:
- STG [<Xn|SP>, #<simm>]
- STG [<Xn|SP>, #<simm>]!
- STG [<Xn|SP>], #<simm>
- STZG [<Xn|SP>, #<simm>]
- STZG [<Xn|SP>, #<simm>]!
- STZG [<Xn|SP>], #<simm>
- ST2G [<Xn|SP>, #<simm>]
- ST2G [<Xn|SP>, #<simm>]!
- ST2G [<Xn|SP>], #<simm>
- STZ2G [<Xn|SP>, #<simm>]
- STZ2G [<Xn|SP>, #<simm>]!
- STZ2G [<Xn|SP>], #<simm>
- STGP <Xt>, <Xt2>, [<Xn|SP>, #<imm>]
- STGP <Xt>, <Xt2>, [<Xn|SP>, #<imm>]!
- STGP <Xt>, <Xt2>, [<Xn|SP>], #<imm>
where
<Xn|SP> : Is the 64-bit GPR or Stack pointer.
<simm> : Is the optional signed immediate offset, a multiple of 16
in the range -4096 to 4080, defaulting to 0.
*** include/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (aarch64_opnd): Add AARCH64_OPND_ADDR_SIMM11
and AARCH64_OPND_ADDR_SIMM13.
(aarch64_opnd_qualifier): Add new AARCH64_OPND_QLF_imm_tag.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_opnd_qualifiers): Add new data
for AARCH64_OPND_QLF_imm_tag.
(operand_general_constraint_met_p): Add case for
AARCH64_OPND_ADDR_SIMM11 and AARCH64_OPND_ADDR_SIMM13.
(aarch64_print_operand): Likewise.
* aarch64-tbl.h (QL_LDST_AT, QL_STGP): New.
(aarch64_opcode_table): Add stg, stzg, st2g, stz2g and stgp
for both offset and pre/post indexed versions.
(AARCH64_OPERANDS): Define ADDR_SIMM11 and ADDR_SIMM13.
* aarch64-asm-2.c: Regenerated.
* aarch64-dis-2.c: Regenerated.
* aarch64-opc-2.c: Regenerated.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_operands): Add switch case for
AARCH64_OPND_ADDR_SIMM11 and AARCH64_OPND_ADDR_SIMM13.
(fix_insn): Likewise.
(warn_unpredictable_ldst): Exempt STGP.
* testsuite/gas/aarch64/armv8_5-a-memtag.s: Add tests for stg, st2g,
stzg, stz2g and stgp.
* testsuite/gas/aarch64/armv8_5-a-memtag.d: Likewise.
* testsuite/gas/aarch64/illegal-memtag.s: Likewise.
* testsuite/gas/aarch64/illegal-memtag.l: Likewise.
2018-11-12 21:09:55 +08:00
|
|
|
|
case AARCH64_OPND_ADDR_SIMM11:
|
|
|
|
|
/* Signed 11 bits immediate offset (multiple of 16). */
|
|
|
|
|
if (!value_in_range_p (opnd->addr.offset.imm, -1024, 1008))
|
|
|
|
|
{
|
|
|
|
|
set_offset_out_of_range_error (mismatch_detail, idx, -1024, 1008);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!value_aligned_p (opnd->addr.offset.imm, 16))
|
|
|
|
|
{
|
|
|
|
|
set_unaligned_error (mismatch_detail, idx, 16);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_ADDR_SIMM13:
|
|
|
|
|
/* Signed 13 bits immediate offset (multiple of 16). */
|
|
|
|
|
if (!value_in_range_p (opnd->addr.offset.imm, -4096, 4080))
|
|
|
|
|
{
|
|
|
|
|
set_offset_out_of_range_error (mismatch_detail, idx, -4096, 4080);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!value_aligned_p (opnd->addr.offset.imm, 16))
|
|
|
|
|
{
|
|
|
|
|
set_unaligned_error (mismatch_detail, idx, 16);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_SIMD_ADDR_POST:
|
|
|
|
|
/* AdvSIMD load/store multiple structures, post-index. */
|
|
|
|
|
assert (idx == 1);
|
|
|
|
|
if (opnd->addr.offset.is_reg)
|
|
|
|
|
{
|
|
|
|
|
if (value_in_range_p (opnd->addr.offset.regno, 0, 30))
|
|
|
|
|
return 1;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid register offset"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
const aarch64_opnd_info *prev = &opnds[idx-1];
|
|
|
|
|
unsigned num_bytes; /* total number of bytes transferred. */
|
|
|
|
|
/* The opcode dependent area stores the number of elements in
|
|
|
|
|
each structure to be loaded/stored. */
|
|
|
|
|
int is_ld1r = get_opcode_dependent_value (opcode) == 1;
|
|
|
|
|
if (opcode->operands[0] == AARCH64_OPND_LVt_AL)
|
|
|
|
|
/* Special handling of loading single structure to all lane. */
|
|
|
|
|
num_bytes = (is_ld1r ? 1 : prev->reglist.num_regs)
|
|
|
|
|
* aarch64_get_qualifier_esize (prev->qualifier);
|
|
|
|
|
else
|
|
|
|
|
num_bytes = prev->reglist.num_regs
|
|
|
|
|
* aarch64_get_qualifier_esize (prev->qualifier)
|
|
|
|
|
* aarch64_get_qualifier_nelem (prev->qualifier);
|
|
|
|
|
if ((int) num_bytes != opnd->addr.offset.imm)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid post-increment amount"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_ADDR_REGOFF:
|
|
|
|
|
/* Get the size of the data element that is accessed, which may be
|
|
|
|
|
different from that of the source register size,
|
|
|
|
|
e.g. in strb/ldrb. */
|
|
|
|
|
size = aarch64_get_qualifier_esize (opnd->qualifier);
|
|
|
|
|
/* It is either no shift or shift by the binary logarithm of SIZE. */
|
|
|
|
|
if (opnd->shifter.amount != 0
|
|
|
|
|
&& opnd->shifter.amount != (int)get_logsz (size))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid shift amount"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* Only UXTW, LSL, SXTW and SXTX are the accepted extending
|
|
|
|
|
operators. */
|
|
|
|
|
switch (opnd->shifter.kind)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_MOD_UXTW:
|
|
|
|
|
case AARCH64_MOD_LSL:
|
|
|
|
|
case AARCH64_MOD_SXTW:
|
|
|
|
|
case AARCH64_MOD_SXTX: break;
|
|
|
|
|
default:
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid extend/shift operator"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_ADDR_UIMM12:
|
|
|
|
|
imm = opnd->addr.offset.imm;
|
|
|
|
|
/* Get the size of the data element that is accessed, which may be
|
|
|
|
|
different from that of the source register size,
|
|
|
|
|
e.g. in strb/ldrb. */
|
|
|
|
|
size = aarch64_get_qualifier_esize (qualifier);
|
|
|
|
|
if (!value_in_range_p (opnd->addr.offset.imm, 0, 4095 * size))
|
|
|
|
|
{
|
|
|
|
|
set_offset_out_of_range_error (mismatch_detail, idx,
|
|
|
|
|
0, 4095 * size);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2012-10-15 22:52:06 +08:00
|
|
|
|
if (!value_aligned_p (opnd->addr.offset.imm, size))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
set_unaligned_error (mismatch_detail, idx, size);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_ADDR_PCREL14:
|
|
|
|
|
case AARCH64_OPND_ADDR_PCREL19:
|
|
|
|
|
case AARCH64_OPND_ADDR_PCREL21:
|
|
|
|
|
case AARCH64_OPND_ADDR_PCREL26:
|
|
|
|
|
imm = opnd->imm.value;
|
|
|
|
|
if (operand_need_shift_by_two (get_operand_from_code (type)))
|
|
|
|
|
{
|
|
|
|
|
/* The offset value in a PC-relative branch instruction is alway
|
|
|
|
|
4-byte aligned and is encoded without the lowest 2 bits. */
|
|
|
|
|
if (!value_aligned_p (imm, 4))
|
|
|
|
|
{
|
|
|
|
|
set_unaligned_error (mismatch_detail, idx, 4);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* Right shift by 2 so that we can carry out the following check
|
|
|
|
|
canonically. */
|
|
|
|
|
imm >>= 2;
|
|
|
|
|
}
|
|
|
|
|
size = get_operand_fields_width (get_operand_from_code (type));
|
|
|
|
|
if (!value_fit_signed_field_p (imm, size))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate out of range"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 26/32] Add SVE MUL VL addressing modes
This patch adds support for addresses of the form:
[<base>, #<offset>, MUL VL]
This involves adding a new AARCH64_MOD_MUL_VL modifier, which is
why I split it out from the other addressing modes.
For LD2, LD3 and LD4, the offset must be a multiple of the structure
size, so for LD3 the possible values are 0, 3, 6, .... The patch
therefore extends value_aligned_p to handle non-power-of-2 alignments.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4xVL): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_S4x2xVL, AARCH64_OPND_SVE_ADDR_RI_S4x3xVL)
(AARCH64_OPND_SVE_ADDR_RI_S4x4xVL, AARCH64_OPND_SVE_ADDR_RI_S6xVL)
(AARCH64_OPND_SVE_ADDR_RI_S9xVL): Likewise.
(AARCH64_MOD_MUL_VL): New aarch64_modifier_kind.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new MUL VL
operands.
* aarch64-opc.c (aarch64_operand_modifiers): Initialize
the AARCH64_MOD_MUL_VL entry.
(value_aligned_p): Cope with non-power-of-two alignments.
(operand_general_constraint_met_p): Handle the new MUL VL addresses.
(print_immediate_offset_address): Likewise.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_s4xvl, ins_sve_addr_ri_s6xvl)
(ins_sve_addr_ri_s9xvl): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_s4xvl): New function.
(aarch64_ins_sve_addr_ri_s6xvl): Likewise.
(aarch64_ins_sve_addr_ri_s9xvl): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4xvl, ext_sve_addr_ri_s6xvl)
(ext_sve_addr_ri_s9xvl): New extractors.
* aarch64-dis.c (aarch64_ext_sve_addr_reg_mul_vl): New function.
(aarch64_ext_sve_addr_ri_s4xvl): Likewise.
(aarch64_ext_sve_addr_ri_s6xvl): Likewise.
(aarch64_ext_sve_addr_ri_s9xvl): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_NONE, SHIFTED_MUL_VL): New
parse_shift_modes.
(parse_shift): Handle SHIFTED_MUL_VL.
(parse_address_main): Add an imm_shift_mode parameter.
(parse_address, parse_sve_address): Update accordingly.
(parse_operands): Handle MUL VL addressing modes.
2016-09-21 23:56:15 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4xVL:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4x2xVL:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4x3xVL:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4x4xVL:
|
|
|
|
|
min_value = -8;
|
|
|
|
|
max_value = 7;
|
|
|
|
|
sve_imm_offset_vl:
|
|
|
|
|
assert (!opnd->addr.offset.is_reg);
|
|
|
|
|
assert (opnd->addr.preind);
|
|
|
|
|
num = 1 + get_operand_specific_data (&aarch64_operands[type]);
|
|
|
|
|
min_value *= num;
|
|
|
|
|
max_value *= num;
|
|
|
|
|
if ((opnd->addr.offset.imm != 0 && !opnd->shifter.operator_present)
|
|
|
|
|
|| (opnd->shifter.operator_present
|
|
|
|
|
&& opnd->shifter.kind != AARCH64_MOD_MUL_VL))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid addressing mode"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!value_in_range_p (opnd->addr.offset.imm, min_value, max_value))
|
|
|
|
|
{
|
|
|
|
|
set_offset_out_of_range_error (mismatch_detail, idx,
|
|
|
|
|
min_value, max_value);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!value_aligned_p (opnd->addr.offset.imm, num))
|
|
|
|
|
{
|
|
|
|
|
set_unaligned_error (mismatch_detail, idx, num);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S6xVL:
|
|
|
|
|
min_value = -32;
|
|
|
|
|
max_value = 31;
|
|
|
|
|
goto sve_imm_offset_vl;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S9xVL:
|
|
|
|
|
min_value = -256;
|
|
|
|
|
max_value = 255;
|
|
|
|
|
goto sve_imm_offset_vl;
|
|
|
|
|
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_U6:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_U6x2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_U6x4:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_U6x8:
|
|
|
|
|
min_value = 0;
|
|
|
|
|
max_value = 63;
|
|
|
|
|
sve_imm_offset:
|
|
|
|
|
assert (!opnd->addr.offset.is_reg);
|
|
|
|
|
assert (opnd->addr.preind);
|
|
|
|
|
num = 1 << get_operand_specific_data (&aarch64_operands[type]);
|
|
|
|
|
min_value *= num;
|
|
|
|
|
max_value *= num;
|
|
|
|
|
if (opnd->shifter.operator_present
|
|
|
|
|
|| opnd->shifter.amount_present)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid addressing mode"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!value_in_range_p (opnd->addr.offset.imm, min_value, max_value))
|
|
|
|
|
{
|
|
|
|
|
set_offset_out_of_range_error (mismatch_detail, idx,
|
|
|
|
|
min_value, max_value);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!value_aligned_p (opnd->addr.offset.imm, num))
|
|
|
|
|
{
|
|
|
|
|
set_unaligned_error (mismatch_detail, idx, num);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4x16:
|
|
|
|
|
min_value = -8;
|
|
|
|
|
max_value = 7;
|
|
|
|
|
goto sve_imm_offset;
|
|
|
|
|
|
2019-05-09 17:29:18 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZX:
|
|
|
|
|
/* Everything is already ensured by parse_operands or
|
|
|
|
|
aarch64_ext_sve_addr_rr_lsl (because this is a very specific
|
|
|
|
|
argument type). */
|
|
|
|
|
assert (opnd->addr.offset.is_reg);
|
|
|
|
|
assert (opnd->addr.preind);
|
|
|
|
|
assert ((aarch64_operands[type].flags & OPD_F_NO_ZR) == 0);
|
|
|
|
|
assert (opnd->shifter.kind == AARCH64_MOD_LSL);
|
|
|
|
|
assert (opnd->shifter.operator_present == 0);
|
|
|
|
|
break;
|
|
|
|
|
|
2018-03-28 16:44:45 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_R:
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RR:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RR_LSL1:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RR_LSL2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RR_LSL3:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RX:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RX_LSL1:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RX_LSL2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RX_LSL3:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_LSL1:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_LSL2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_LSL3:
|
|
|
|
|
modifiers = 1 << AARCH64_MOD_LSL;
|
|
|
|
|
sve_rr_operand:
|
|
|
|
|
assert (opnd->addr.offset.is_reg);
|
|
|
|
|
assert (opnd->addr.preind);
|
|
|
|
|
if ((aarch64_operands[type].flags & OPD_F_NO_ZR) != 0
|
|
|
|
|
&& opnd->addr.offset.regno == 31)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("index register xzr is not allowed"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (((1 << opnd->shifter.kind) & modifiers) == 0
|
|
|
|
|
|| (opnd->shifter.amount
|
|
|
|
|
!= get_operand_specific_data (&aarch64_operands[type])))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid addressing mode"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW_14:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW_22:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW1_14:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW1_22:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW2_14:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW2_22:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW3_14:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW3_22:
|
|
|
|
|
modifiers = (1 << AARCH64_MOD_SXTW) | (1 << AARCH64_MOD_UXTW);
|
|
|
|
|
goto sve_rr_operand;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZI_U5:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZI_U5x2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZI_U5x4:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZI_U5x8:
|
|
|
|
|
min_value = 0;
|
|
|
|
|
max_value = 31;
|
|
|
|
|
goto sve_imm_offset;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZZ_LSL:
|
|
|
|
|
modifiers = 1 << AARCH64_MOD_LSL;
|
|
|
|
|
sve_zz_operand:
|
|
|
|
|
assert (opnd->addr.offset.is_reg);
|
|
|
|
|
assert (opnd->addr.preind);
|
|
|
|
|
if (((1 << opnd->shifter.kind) & modifiers) == 0
|
|
|
|
|
|| opnd->shifter.amount < 0
|
|
|
|
|
|| opnd->shifter.amount > 3)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid addressing mode"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZZ_SXTW:
|
|
|
|
|
modifiers = (1 << AARCH64_MOD_SXTW);
|
|
|
|
|
goto sve_zz_operand;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZZ_UXTW:
|
|
|
|
|
modifiers = 1 << AARCH64_MOD_UXTW;
|
|
|
|
|
goto sve_zz_operand;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_CLASS_SIMD_REGLIST:
|
2016-06-28 16:21:04 +08:00
|
|
|
|
if (type == AARCH64_OPND_LEt)
|
|
|
|
|
{
|
|
|
|
|
/* Get the upper bound for the element index. */
|
|
|
|
|
num = 16 / aarch64_get_qualifier_esize (qualifier) - 1;
|
|
|
|
|
if (!value_in_range_p (opnd->reglist.index, 0, num))
|
|
|
|
|
{
|
|
|
|
|
set_elem_idx_out_of_range_error (mismatch_detail, idx, 0, num);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* The opcode dependent area stores the number of elements in
|
|
|
|
|
each structure to be loaded/stored. */
|
|
|
|
|
num = get_opcode_dependent_value (opcode);
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_LVt:
|
|
|
|
|
assert (num >= 1 && num <= 4);
|
|
|
|
|
/* Unless LD1/ST1, the number of registers should be equal to that
|
|
|
|
|
of the structure elements. */
|
|
|
|
|
if (num != 1 && opnd->reglist.num_regs != num)
|
|
|
|
|
{
|
|
|
|
|
set_reg_list_error (mismatch_detail, idx, num);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case AARCH64_OPND_LVt_AL:
|
|
|
|
|
case AARCH64_OPND_LEt:
|
|
|
|
|
assert (num >= 1 && num <= 4);
|
|
|
|
|
/* The number of registers should be equal to that of the structure
|
|
|
|
|
elements. */
|
|
|
|
|
if (opnd->reglist.num_regs != num)
|
|
|
|
|
{
|
|
|
|
|
set_reg_list_error (mismatch_detail, idx, num);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_CLASS_IMMEDIATE:
|
|
|
|
|
/* Constraint check on immediate operand. */
|
|
|
|
|
imm = opnd->imm.value;
|
|
|
|
|
/* E.g. imm_0_31 constrains value to be 0..31. */
|
|
|
|
|
if (qualifier_value_in_range_constraint_p (qualifier)
|
|
|
|
|
&& !value_in_range_p (imm, get_lower_bound (qualifier),
|
|
|
|
|
get_upper_bound (qualifier)))
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx,
|
|
|
|
|
get_lower_bound (qualifier),
|
|
|
|
|
get_upper_bound (qualifier));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_AIMM:
|
|
|
|
|
if (opnd->shifter.kind != AARCH64_MOD_LSL)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid shift operator"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (opnd->shifter.amount != 0 && opnd->shifter.amount != 12)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
2016-09-22 00:11:04 +08:00
|
|
|
|
_("shift amount must be 0 or 12"));
|
2012-08-13 22:52:54 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!value_fit_unsigned_field_p (opnd->imm.value, 12))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate out of range"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_HALF:
|
|
|
|
|
assert (idx == 1 && opnds[0].type == AARCH64_OPND_Rd);
|
|
|
|
|
if (opnd->shifter.kind != AARCH64_MOD_LSL)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid shift operator"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
size = aarch64_get_qualifier_esize (opnds[0].qualifier);
|
|
|
|
|
if (!value_aligned_p (opnd->shifter.amount, 16))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
2016-09-22 00:11:04 +08:00
|
|
|
|
_("shift amount must be a multiple of 16"));
|
2012-08-13 22:52:54 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!value_in_range_p (opnd->shifter.amount, 0, size * 8 - 16))
|
|
|
|
|
{
|
|
|
|
|
set_sft_amount_out_of_range_error (mismatch_detail, idx,
|
|
|
|
|
0, size * 8 - 16);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (opnd->imm.value < 0)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("negative immediate value not allowed"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!value_fit_unsigned_field_p (opnd->imm.value, 16))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate out of range"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_IMM_MOV:
|
|
|
|
|
{
|
2016-09-21 23:51:09 +08:00
|
|
|
|
int esize = aarch64_get_qualifier_esize (opnds[0].qualifier);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
imm = opnd->imm.value;
|
|
|
|
|
assert (idx == 1);
|
|
|
|
|
switch (opcode->op)
|
|
|
|
|
{
|
|
|
|
|
case OP_MOV_IMM_WIDEN:
|
|
|
|
|
imm = ~imm;
|
2016-10-05 15:47:02 +08:00
|
|
|
|
/* Fall through. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case OP_MOV_IMM_WIDE:
|
2016-09-21 23:51:09 +08:00
|
|
|
|
if (!aarch64_wide_constant_p (imm, esize == 4, NULL))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate out of range"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case OP_MOV_IMM_LOG:
|
2016-09-21 23:51:09 +08:00
|
|
|
|
if (!aarch64_logical_immediate_p (imm, esize, NULL))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate out of range"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert (0);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_NZCV:
|
|
|
|
|
case AARCH64_OPND_CCMP_IMM:
|
|
|
|
|
case AARCH64_OPND_EXCEPTION:
|
2019-05-02 00:14:01 +08:00
|
|
|
|
case AARCH64_OPND_TME_UIMM16:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_UIMM4:
|
[BINUTILS, AARCH64, 2/8] Add Tag generation instructions in Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch add support to the Tag generation instructions from
MTE. These are the following instructions added in this patch:
- IRG <Xd|SP>, <Xn|SP>{, Xm}
- ADDG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- SUBG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- GMI <Xd>, <Xn|SP>, <Xm>
where
<Xd|SP> : Is the 64-bit destination GPR or Stack pointer.
<Xn|SP> : Is the 64-bit source GPR or Stack pointer.
<uimm6> : Is the unsigned immediate, a multiple of 16
in the range 0 to 1008.
<uimm4> : Is the unsigned immediate, in the range 0 to 15.
*** include/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (aarch64_opnd): Add
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10 as new enums.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.h (aarch64_field_kind): New FLD_imm4_3.
(OPD_F_SHIFT_BY_4, operand_need_shift_by_four): New.
* aarch64-opc.c (fields): Add entry for imm4_3.
(operand_general_constraint_met_p): Add cases for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
(aarch64_print_operand): Likewise.
* aarch64-tbl.h (QL_ADDG): New.
(aarch64_opcode_table): Add addg, subg, irg and gmi.
(AARCH64_OPERANDS): Define UIMM4_ADDG and UIMM10.
* aarch64-asm.c (aarch64_ins_imm): Add case for
operand_need_shift_by_four.
* aarch64-asm-2.c: Regenerated.
* aarch64-dis-2.c: Regenerated.
* aarch64-opc-2.c: Regenerated.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_operands): Add switch case for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
* testsuite/gas/aarch64/armv8_5-a-memtag.s: New.
* testsuite/gas/aarch64/armv8_5-a-memtag.d: Likewise.
* testsuite/gas/aarch64/illegal-memtag.s: Likewise.
* testsuite/gas/aarch64/illegal-memtag.l: Likewise.
* testsuite/gas/aarch64/illegal-memtag.d: Likewise.
2018-11-12 20:52:55 +08:00
|
|
|
|
case AARCH64_OPND_UIMM4_ADDG:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_UIMM7:
|
|
|
|
|
case AARCH64_OPND_UIMM3_OP1:
|
|
|
|
|
case AARCH64_OPND_UIMM3_OP2:
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SVE_UIMM3:
|
|
|
|
|
case AARCH64_OPND_SVE_UIMM7:
|
|
|
|
|
case AARCH64_OPND_SVE_UIMM8:
|
|
|
|
|
case AARCH64_OPND_SVE_UIMM8_53:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
size = get_operand_fields_width (get_operand_from_code (type));
|
|
|
|
|
assert (size < 32);
|
|
|
|
|
if (!value_fit_unsigned_field_p (opnd->imm.value, size))
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx, 0,
|
|
|
|
|
(1 << size) - 1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[BINUTILS, AARCH64, 2/8] Add Tag generation instructions in Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch add support to the Tag generation instructions from
MTE. These are the following instructions added in this patch:
- IRG <Xd|SP>, <Xn|SP>{, Xm}
- ADDG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- SUBG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- GMI <Xd>, <Xn|SP>, <Xm>
where
<Xd|SP> : Is the 64-bit destination GPR or Stack pointer.
<Xn|SP> : Is the 64-bit source GPR or Stack pointer.
<uimm6> : Is the unsigned immediate, a multiple of 16
in the range 0 to 1008.
<uimm4> : Is the unsigned immediate, in the range 0 to 15.
*** include/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (aarch64_opnd): Add
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10 as new enums.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.h (aarch64_field_kind): New FLD_imm4_3.
(OPD_F_SHIFT_BY_4, operand_need_shift_by_four): New.
* aarch64-opc.c (fields): Add entry for imm4_3.
(operand_general_constraint_met_p): Add cases for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
(aarch64_print_operand): Likewise.
* aarch64-tbl.h (QL_ADDG): New.
(aarch64_opcode_table): Add addg, subg, irg and gmi.
(AARCH64_OPERANDS): Define UIMM4_ADDG and UIMM10.
* aarch64-asm.c (aarch64_ins_imm): Add case for
operand_need_shift_by_four.
* aarch64-asm-2.c: Regenerated.
* aarch64-dis-2.c: Regenerated.
* aarch64-opc-2.c: Regenerated.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_operands): Add switch case for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
* testsuite/gas/aarch64/armv8_5-a-memtag.s: New.
* testsuite/gas/aarch64/armv8_5-a-memtag.d: Likewise.
* testsuite/gas/aarch64/illegal-memtag.s: Likewise.
* testsuite/gas/aarch64/illegal-memtag.l: Likewise.
* testsuite/gas/aarch64/illegal-memtag.d: Likewise.
2018-11-12 20:52:55 +08:00
|
|
|
|
case AARCH64_OPND_UIMM10:
|
|
|
|
|
/* Scaled unsigned 10 bits immediate offset. */
|
|
|
|
|
if (!value_in_range_p (opnd->imm.value, 0, 1008))
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx, 0, 1008);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!value_aligned_p (opnd->imm.value, 16))
|
|
|
|
|
{
|
|
|
|
|
set_unaligned_error (mismatch_detail, idx, 16);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SIMM5:
|
|
|
|
|
case AARCH64_OPND_SVE_SIMM5:
|
|
|
|
|
case AARCH64_OPND_SVE_SIMM5B:
|
|
|
|
|
case AARCH64_OPND_SVE_SIMM6:
|
|
|
|
|
case AARCH64_OPND_SVE_SIMM8:
|
|
|
|
|
size = get_operand_fields_width (get_operand_from_code (type));
|
|
|
|
|
assert (size < 32);
|
|
|
|
|
if (!value_fit_signed_field_p (opnd->imm.value, size))
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx,
|
|
|
|
|
-(1 << (size - 1)),
|
|
|
|
|
(1 << (size - 1)) - 1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_WIDTH:
|
2015-11-27 23:25:08 +08:00
|
|
|
|
assert (idx > 1 && opnds[idx-1].type == AARCH64_OPND_IMM
|
2012-08-13 22:52:54 +08:00
|
|
|
|
&& opnds[0].type == AARCH64_OPND_Rd);
|
|
|
|
|
size = get_upper_bound (qualifier);
|
|
|
|
|
if (opnd->imm.value + opnds[idx-1].imm.value > size)
|
|
|
|
|
/* lsb+width <= reg.size */
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx, 1,
|
|
|
|
|
size - opnds[idx-1].imm.value);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_LIMM:
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SVE_LIMM:
|
2016-09-21 23:51:09 +08:00
|
|
|
|
{
|
|
|
|
|
int esize = aarch64_get_qualifier_esize (opnds[0].qualifier);
|
|
|
|
|
uint64_t uimm = opnd->imm.value;
|
|
|
|
|
if (opcode->op == OP_BIC)
|
|
|
|
|
uimm = ~uimm;
|
2017-05-18 13:17:40 +08:00
|
|
|
|
if (!aarch64_logical_immediate_p (uimm, esize, NULL))
|
2016-09-21 23:51:09 +08:00
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate out of range"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_IMM0:
|
|
|
|
|
case AARCH64_OPND_FPIMM0:
|
|
|
|
|
if (opnd->imm.value != 0)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate zero expected"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64] Add ARMv8.3 FCMLA and FCADD instructions
Add support for FCMLA and FCADD complex arithmetic SIMD instructions.
FCMLA has an indexed element variant where the index range has to be
treated specially because a complex number takes two elements and the
indexed vector size depends on the other operands.
These complex number SIMD instructions are part of ARMv8.3
https://community.arm.com/groups/processors/blog/2016/10/27/armv8-a-architecture-2016-additions
include/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* opcode/aarch64.h (enum aarch64_opnd): Add AARCH64_OPND_IMM_ROT1,
AARCH64_OPND_IMM_ROT2, AARCH64_OPND_IMM_ROT3.
(enum aarch64_op): Add OP_FCMLA_ELEM.
opcodes/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* aarch64-tbl.h (QL_V3SAMEHSD_ROT, QL_ELEMENT_ROT): Define.
(aarch64_feature_simd_v8_3, SIMD_V8_3): Define.
(aarch64_opcode_table): Add fcmla and fcadd.
(AARCH64_OPERANDS): Add IMM_ROT{1,2,3}.
* aarch64-asm.h (aarch64_ins_imm_rotate): Declare.
* aarch64-asm.c (aarch64_ins_imm_rotate): Define.
* aarch64-dis.h (aarch64_ext_imm_rotate): Declare.
* aarch64-dis.c (aarch64_ext_imm_rotate): Define.
* aarch64-opc.h (enum aarch64_field_kind): Add FLD_rotate{1,2,3}.
* aarch64-opc.c (fields): Add FLD_rotate{1,2,3}.
(operand_general_constraint_met_p): Rotate and index range check.
(aarch64_print_operand): Handle rotate operand.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Likewise.
* aarch64-opc-2.c: Likewise.
gas/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* config/tc-aarch64.c (parse_operands): Handle AARCH64_OPND_IMM_ROT*.
* testsuite/gas/aarch64/advsimd-armv8_3.d: New.
* testsuite/gas/aarch64/advsimd-armv8_3.s: New.
* testsuite/gas/aarch64/illegal-fcmla.s: New.
* testsuite/gas/aarch64/illegal-fcmla.l: New.
* testsuite/gas/aarch64/illegal-fcmla.d: New.
2016-11-18 18:02:16 +08:00
|
|
|
|
case AARCH64_OPND_IMM_ROT1:
|
|
|
|
|
case AARCH64_OPND_IMM_ROT2:
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
case AARCH64_OPND_SVE_IMM_ROT2:
|
[AArch64] Add ARMv8.3 FCMLA and FCADD instructions
Add support for FCMLA and FCADD complex arithmetic SIMD instructions.
FCMLA has an indexed element variant where the index range has to be
treated specially because a complex number takes two elements and the
indexed vector size depends on the other operands.
These complex number SIMD instructions are part of ARMv8.3
https://community.arm.com/groups/processors/blog/2016/10/27/armv8-a-architecture-2016-additions
include/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* opcode/aarch64.h (enum aarch64_opnd): Add AARCH64_OPND_IMM_ROT1,
AARCH64_OPND_IMM_ROT2, AARCH64_OPND_IMM_ROT3.
(enum aarch64_op): Add OP_FCMLA_ELEM.
opcodes/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* aarch64-tbl.h (QL_V3SAMEHSD_ROT, QL_ELEMENT_ROT): Define.
(aarch64_feature_simd_v8_3, SIMD_V8_3): Define.
(aarch64_opcode_table): Add fcmla and fcadd.
(AARCH64_OPERANDS): Add IMM_ROT{1,2,3}.
* aarch64-asm.h (aarch64_ins_imm_rotate): Declare.
* aarch64-asm.c (aarch64_ins_imm_rotate): Define.
* aarch64-dis.h (aarch64_ext_imm_rotate): Declare.
* aarch64-dis.c (aarch64_ext_imm_rotate): Define.
* aarch64-opc.h (enum aarch64_field_kind): Add FLD_rotate{1,2,3}.
* aarch64-opc.c (fields): Add FLD_rotate{1,2,3}.
(operand_general_constraint_met_p): Rotate and index range check.
(aarch64_print_operand): Handle rotate operand.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Likewise.
* aarch64-opc-2.c: Likewise.
gas/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* config/tc-aarch64.c (parse_operands): Handle AARCH64_OPND_IMM_ROT*.
* testsuite/gas/aarch64/advsimd-armv8_3.d: New.
* testsuite/gas/aarch64/advsimd-armv8_3.s: New.
* testsuite/gas/aarch64/illegal-fcmla.s: New.
* testsuite/gas/aarch64/illegal-fcmla.l: New.
* testsuite/gas/aarch64/illegal-fcmla.d: New.
2016-11-18 18:02:16 +08:00
|
|
|
|
if (opnd->imm.value != 0
|
|
|
|
|
&& opnd->imm.value != 90
|
|
|
|
|
&& opnd->imm.value != 180
|
|
|
|
|
&& opnd->imm.value != 270)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("rotate expected to be 0, 90, 180 or 270"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_IMM_ROT3:
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
case AARCH64_OPND_SVE_IMM_ROT1:
|
2019-05-09 17:29:15 +08:00
|
|
|
|
case AARCH64_OPND_SVE_IMM_ROT3:
|
[AArch64] Add ARMv8.3 FCMLA and FCADD instructions
Add support for FCMLA and FCADD complex arithmetic SIMD instructions.
FCMLA has an indexed element variant where the index range has to be
treated specially because a complex number takes two elements and the
indexed vector size depends on the other operands.
These complex number SIMD instructions are part of ARMv8.3
https://community.arm.com/groups/processors/blog/2016/10/27/armv8-a-architecture-2016-additions
include/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* opcode/aarch64.h (enum aarch64_opnd): Add AARCH64_OPND_IMM_ROT1,
AARCH64_OPND_IMM_ROT2, AARCH64_OPND_IMM_ROT3.
(enum aarch64_op): Add OP_FCMLA_ELEM.
opcodes/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* aarch64-tbl.h (QL_V3SAMEHSD_ROT, QL_ELEMENT_ROT): Define.
(aarch64_feature_simd_v8_3, SIMD_V8_3): Define.
(aarch64_opcode_table): Add fcmla and fcadd.
(AARCH64_OPERANDS): Add IMM_ROT{1,2,3}.
* aarch64-asm.h (aarch64_ins_imm_rotate): Declare.
* aarch64-asm.c (aarch64_ins_imm_rotate): Define.
* aarch64-dis.h (aarch64_ext_imm_rotate): Declare.
* aarch64-dis.c (aarch64_ext_imm_rotate): Define.
* aarch64-opc.h (enum aarch64_field_kind): Add FLD_rotate{1,2,3}.
* aarch64-opc.c (fields): Add FLD_rotate{1,2,3}.
(operand_general_constraint_met_p): Rotate and index range check.
(aarch64_print_operand): Handle rotate operand.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Likewise.
* aarch64-opc-2.c: Likewise.
gas/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* config/tc-aarch64.c (parse_operands): Handle AARCH64_OPND_IMM_ROT*.
* testsuite/gas/aarch64/advsimd-armv8_3.d: New.
* testsuite/gas/aarch64/advsimd-armv8_3.s: New.
* testsuite/gas/aarch64/illegal-fcmla.s: New.
* testsuite/gas/aarch64/illegal-fcmla.l: New.
* testsuite/gas/aarch64/illegal-fcmla.d: New.
2016-11-18 18:02:16 +08:00
|
|
|
|
if (opnd->imm.value != 90 && opnd->imm.value != 270)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("rotate expected to be 90 or 270"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_SHLL_IMM:
|
|
|
|
|
assert (idx == 2);
|
|
|
|
|
size = 8 * aarch64_get_qualifier_esize (opnds[idx - 1].qualifier);
|
|
|
|
|
if (opnd->imm.value != size)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid shift amount"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_IMM_VLSL:
|
|
|
|
|
size = aarch64_get_qualifier_esize (qualifier);
|
|
|
|
|
if (!value_in_range_p (opnd->imm.value, 0, size * 8 - 1))
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx, 0,
|
|
|
|
|
size * 8 - 1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_IMM_VLSR:
|
|
|
|
|
size = aarch64_get_qualifier_esize (qualifier);
|
|
|
|
|
if (!value_in_range_p (opnd->imm.value, 1, size * 8))
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx, 1, size * 8);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SIMD_IMM:
|
|
|
|
|
case AARCH64_OPND_SIMD_IMM_SFT:
|
|
|
|
|
/* Qualifier check. */
|
|
|
|
|
switch (qualifier)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_QLF_LSL:
|
|
|
|
|
if (opnd->shifter.kind != AARCH64_MOD_LSL)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid shift operator"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case AARCH64_OPND_QLF_MSL:
|
|
|
|
|
if (opnd->shifter.kind != AARCH64_MOD_MSL)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid shift operator"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case AARCH64_OPND_QLF_NIL:
|
|
|
|
|
if (opnd->shifter.kind != AARCH64_MOD_NONE)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("shift is not permitted"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert (0);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* Is the immediate valid? */
|
|
|
|
|
assert (idx == 1);
|
|
|
|
|
if (aarch64_get_qualifier_esize (opnds[0].qualifier) != 8)
|
|
|
|
|
{
|
2013-05-14 06:28:27 +08:00
|
|
|
|
/* uimm8 or simm8 */
|
|
|
|
|
if (!value_in_range_p (opnd->imm.value, -128, 255))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
2013-05-14 06:28:27 +08:00
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx, -128, 255);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (aarch64_shrink_expanded_imm8 (opnd->imm.value) < 0)
|
|
|
|
|
{
|
|
|
|
|
/* uimm64 is not
|
|
|
|
|
'aaaaaaaabbbbbbbbccccccccddddddddeeeeeeee
|
|
|
|
|
ffffffffgggggggghhhhhhhh'. */
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid value for immediate"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* Is the shift amount valid? */
|
|
|
|
|
switch (opnd->shifter.kind)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_MOD_LSL:
|
|
|
|
|
size = aarch64_get_qualifier_esize (opnds[0].qualifier);
|
2013-01-18 00:09:44 +08:00
|
|
|
|
if (!value_in_range_p (opnd->shifter.amount, 0, (size - 1) * 8))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
2013-01-18 00:09:44 +08:00
|
|
|
|
set_sft_amount_out_of_range_error (mismatch_detail, idx, 0,
|
|
|
|
|
(size - 1) * 8);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2013-01-18 00:09:44 +08:00
|
|
|
|
if (!value_aligned_p (opnd->shifter.amount, 8))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
2013-01-18 00:09:44 +08:00
|
|
|
|
set_unaligned_error (mismatch_detail, idx, 8);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case AARCH64_MOD_MSL:
|
|
|
|
|
/* Only 8 and 16 are valid shift amount. */
|
|
|
|
|
if (opnd->shifter.amount != 8 && opnd->shifter.amount != 16)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
2016-09-22 00:11:04 +08:00
|
|
|
|
_("shift amount must be 0 or 16"));
|
2012-08-13 22:52:54 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
if (opnd->shifter.kind != AARCH64_MOD_NONE)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid shift operator"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_FPIMM:
|
|
|
|
|
case AARCH64_OPND_SIMD_FPIMM:
|
2016-09-21 23:57:22 +08:00
|
|
|
|
case AARCH64_OPND_SVE_FPIMM8:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
if (opnd->imm.is_fp == 0)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("floating-point immediate expected"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* The value is expected to be an 8-bit floating-point constant with
|
|
|
|
|
sign, 3-bit exponent and normalized 4 bits of precision, encoded
|
|
|
|
|
in "a:b:c:d:e:f:g:h" or FLD_imm8 (depending on the type of the
|
|
|
|
|
instruction). */
|
|
|
|
|
if (!value_in_range_p (opnd->imm.value, 0, 255))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate out of range"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (opnd->shifter.kind != AARCH64_MOD_NONE)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid shift operator"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SVE_AIMM:
|
|
|
|
|
min_value = 0;
|
|
|
|
|
sve_aimm:
|
|
|
|
|
assert (opnd->shifter.kind == AARCH64_MOD_LSL);
|
|
|
|
|
size = aarch64_get_qualifier_esize (opnds[0].qualifier);
|
|
|
|
|
mask = ~((uint64_t) -1 << (size * 4) << (size * 4));
|
|
|
|
|
uvalue = opnd->imm.value;
|
|
|
|
|
shift = opnd->shifter.amount;
|
|
|
|
|
if (size == 1)
|
|
|
|
|
{
|
|
|
|
|
if (shift != 0)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("no shift amount allowed for"
|
|
|
|
|
" 8-bit constants"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (shift != 0 && shift != 8)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("shift amount must be 0 or 8"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (shift == 0 && (uvalue & 0xff) == 0)
|
|
|
|
|
{
|
|
|
|
|
shift = 8;
|
|
|
|
|
uvalue = (int64_t) uvalue / 256;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
mask >>= shift;
|
|
|
|
|
if ((uvalue & mask) != uvalue && (uvalue | ~mask) != uvalue)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate too big for element size"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
uvalue = (uvalue - min_value) & mask;
|
|
|
|
|
if (uvalue > 0xff)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid arithmetic immediate"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ASIMM:
|
|
|
|
|
min_value = -128;
|
|
|
|
|
goto sve_aimm;
|
|
|
|
|
|
2016-09-21 23:57:22 +08:00
|
|
|
|
case AARCH64_OPND_SVE_I1_HALF_ONE:
|
|
|
|
|
assert (opnd->imm.is_fp);
|
|
|
|
|
if (opnd->imm.value != 0x3f000000 && opnd->imm.value != 0x3f800000)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("floating-point value must be 0.5 or 1.0"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_I1_HALF_TWO:
|
|
|
|
|
assert (opnd->imm.is_fp);
|
|
|
|
|
if (opnd->imm.value != 0x3f000000 && opnd->imm.value != 0x40000000)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("floating-point value must be 0.5 or 2.0"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_I1_ZERO_ONE:
|
|
|
|
|
assert (opnd->imm.is_fp);
|
|
|
|
|
if (opnd->imm.value != 0 && opnd->imm.value != 0x3f800000)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("floating-point value must be 0.0 or 1.0"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SVE_INV_LIMM:
|
|
|
|
|
{
|
|
|
|
|
int esize = aarch64_get_qualifier_esize (opnds[0].qualifier);
|
|
|
|
|
uint64_t uimm = ~opnd->imm.value;
|
|
|
|
|
if (!aarch64_logical_immediate_p (uimm, esize, NULL))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate out of range"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_LIMM_MOV:
|
|
|
|
|
{
|
|
|
|
|
int esize = aarch64_get_qualifier_esize (opnds[0].qualifier);
|
|
|
|
|
uint64_t uimm = opnd->imm.value;
|
|
|
|
|
if (!aarch64_logical_immediate_p (uimm, esize, NULL))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("immediate out of range"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!aarch64_sve_dupm_mov_immediate_p (uimm, esize))
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("invalid replicated MOV immediate"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED
Some SVE instructions count the number of elements in a given vector
pattern and allow a scale factor of [1, 16] to be applied to the result.
This scale factor is written ", MUL #n", where "MUL" is a new operator.
E.g.:
UQINCD X0, POW2, MUL #2
This patch adds support for this kind of operand.
All existing operators were shifts of some kind, so there was a natural
range of [0, 63] regardless of context. This was then narrowered further
by later checks (e.g. to [0, 31] when used for 32-bit values).
In contrast, MUL doesn't really have a natural context-independent range.
Rather than pick one arbitrarily, it seemed better to make the "shift"
amount a full 64-bit value and leave the range test to the usual
operand-checking code. I've rearranged the fields of aarch64_opnd_info
so that this doesn't increase the size of the structure (although I don't
think its size is critical anyway).
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_PATTERN_SCALED): New
aarch64_opnd.
(AARCH64_MOD_MUL): New aarch64_modifier_kind.
(aarch64_opnd_info): Make shifter.amount an int64_t and
rearrange the fields.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add an entry for
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc.h (FLD_SVE_imm4): New aarch64_field_kind.
* aarch64-opc.c (fields): Add a corresponding entry.
(set_multiplier_out_of_range_error): New function.
(aarch64_operand_modifiers): Add entry for AARCH64_MOD_MUL.
(operand_general_constraint_met_p): Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
(print_register_offset_address): Use PRIi64 to print the
shift amount.
(aarch64_print_operand): Likewise. Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_scale): New inserter.
* aarch64-asm.c (aarch64_ins_sve_scale): New function.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_scale): New inserter.
* aarch64-dis.c (aarch64_ext_sve_scale): New function.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_MUL): New parse_shift_mode.
(parse_shift): Handle it. Reject AARCH64_MOD_MUL for all other
shift modes. Skip range tests for AARCH64_MOD_MUL.
(process_omitted_operand): Handle AARCH64_OPND_SVE_PATTERN_SCALED.
(parse_operands): Likewise.
2016-09-21 23:55:22 +08:00
|
|
|
|
case AARCH64_OPND_SVE_PATTERN_SCALED:
|
|
|
|
|
assert (opnd->shifter.kind == AARCH64_MOD_MUL);
|
|
|
|
|
if (!value_in_range_p (opnd->shifter.amount, 1, 16))
|
|
|
|
|
{
|
|
|
|
|
set_multiplier_out_of_range_error (mismatch_detail, idx, 1, 16);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SVE_SHLIMM_PRED:
|
|
|
|
|
case AARCH64_OPND_SVE_SHLIMM_UNPRED:
|
2019-05-09 17:29:27 +08:00
|
|
|
|
case AARCH64_OPND_SVE_SHLIMM_UNPRED_22:
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
size = aarch64_get_qualifier_esize (opnds[idx - 1].qualifier);
|
|
|
|
|
if (!value_in_range_p (opnd->imm.value, 0, 8 * size - 1))
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx,
|
|
|
|
|
0, 8 * size - 1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_SHRIMM_PRED:
|
|
|
|
|
case AARCH64_OPND_SVE_SHRIMM_UNPRED:
|
2019-05-09 17:29:22 +08:00
|
|
|
|
case AARCH64_OPND_SVE_SHRIMM_UNPRED_22:
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
{
|
2019-05-09 17:29:22 +08:00
|
|
|
|
unsigned int index =
|
|
|
|
|
(type == AARCH64_OPND_SVE_SHRIMM_UNPRED_22) ? 2 : 1;
|
|
|
|
|
size = aarch64_get_qualifier_esize (opnds[idx - index].qualifier);
|
|
|
|
|
if (!value_in_range_p (opnd->imm.value, 1, 8 * size))
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx, 1, 8*size);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_CLASS_SYSTEM:
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_PSTATEFIELD:
|
|
|
|
|
assert (idx == 0 && opnds[1].type == AARCH64_OPND_UIMM4);
|
2016-01-20 22:25:46 +08:00
|
|
|
|
/* MSR UAO, #uimm4
|
|
|
|
|
MSR PAN, #uimm4
|
2018-09-26 18:04:32 +08:00
|
|
|
|
MSR SSBS,#uimm4
|
2015-11-19 22:13:45 +08:00
|
|
|
|
The immediate must be #0 or #1. */
|
2016-01-20 22:25:46 +08:00
|
|
|
|
if ((opnd->pstatefield == 0x03 /* UAO. */
|
Add assembler and disassembler support for the new Armv8.4-a registers for AArch64.
Some of these instructions have been back-ported as optional extensions to
Armv8.2-a and higher, but others are only available for Armv8.4-a.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Add ARMv8.4-a registers;
dit, vstcr_el2, vsttbr_el2, cnthvs_tval_el2, cnthvs_cval_el2,
cnthvs_ctl_el2, cnthps_tval_el2, cnthps_cval_el2, cnthps_ctl_el2,
sder32_el2, vncr_el2.
(aarch64_sys_reg_supported_p): Likewise.
(aarch64_pstatefields): Add dit register.
(aarch64_pstatefield_supported_p): Likewise.
(aarch64_sys_regs_tlbi): Add vmalle1os, vae1os, aside1os, vaae1os,
vale1os, vaale1os, ipas2e1os, ipas2le1os, vae2os, vale2os, vmalls12e1os,
vae3os, vale3os, alle2os, alle1os, alle3os, rvae1, rvaae1, rvale1,
rvaale1, rvae1is, rvaae1is, rvale1is, rvaale1is, rvae1os, rvaae1os,
rvale1os, rvaale1os, ripas2e1is, ripas2le1is, ripas2e1, ripas2le1,
ripas2e1os, ripas2le1os, rvae2, rvale2, rvae2is, rvale2is, rvae2os,
rvale2os, rvae3, rvale3, rvae3is, rvale3is, rvae3os, rvale3os.
gas/testsuite
* gas/aarch64/armv8_4-a-registers-illegal.d: New.
* gas/aarch64/armv8_4-a-registers-illegal.l: New.
* gas/aarch64/armv8_4-a-registers-illegal.s: New.
* gas/aarch64/armv8_4-a-registers.d: New.
* gas/aarch64/armv8_4-a-registers.s: New.
2017-11-09 23:48:43 +08:00
|
|
|
|
|| opnd->pstatefield == 0x04 /* PAN. */
|
2018-09-26 18:04:32 +08:00
|
|
|
|
|| opnd->pstatefield == 0x19 /* SSBS. */
|
Add assembler and disassembler support for the new Armv8.4-a registers for AArch64.
Some of these instructions have been back-ported as optional extensions to
Armv8.2-a and higher, but others are only available for Armv8.4-a.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Add ARMv8.4-a registers;
dit, vstcr_el2, vsttbr_el2, cnthvs_tval_el2, cnthvs_cval_el2,
cnthvs_ctl_el2, cnthps_tval_el2, cnthps_cval_el2, cnthps_ctl_el2,
sder32_el2, vncr_el2.
(aarch64_sys_reg_supported_p): Likewise.
(aarch64_pstatefields): Add dit register.
(aarch64_pstatefield_supported_p): Likewise.
(aarch64_sys_regs_tlbi): Add vmalle1os, vae1os, aside1os, vaae1os,
vale1os, vaale1os, ipas2e1os, ipas2le1os, vae2os, vale2os, vmalls12e1os,
vae3os, vale3os, alle2os, alle1os, alle3os, rvae1, rvaae1, rvale1,
rvaale1, rvae1is, rvaae1is, rvale1is, rvaale1is, rvae1os, rvaae1os,
rvale1os, rvaale1os, ripas2e1is, ripas2le1is, ripas2e1, ripas2le1,
ripas2e1os, ripas2le1os, rvae2, rvale2, rvae2is, rvale2is, rvae2os,
rvale2os, rvae3, rvale3, rvae3is, rvale3is, rvae3os, rvale3os.
gas/testsuite
* gas/aarch64/armv8_4-a-registers-illegal.d: New.
* gas/aarch64/armv8_4-a-registers-illegal.l: New.
* gas/aarch64/armv8_4-a-registers-illegal.s: New.
* gas/aarch64/armv8_4-a-registers.d: New.
* gas/aarch64/armv8_4-a-registers.s: New.
2017-11-09 23:48:43 +08:00
|
|
|
|
|| opnd->pstatefield == 0x1a) /* DIT. */
|
2015-11-19 22:13:45 +08:00
|
|
|
|
&& opnds[1].imm.value > 1)
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx, 0, 1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* MSR SPSel, #uimm4
|
|
|
|
|
Uses uimm4 as a control value to select the stack pointer: if
|
|
|
|
|
bit 0 is set it selects the current exception level's stack
|
|
|
|
|
pointer, if bit 0 is clear it selects shared EL0 stack pointer.
|
|
|
|
|
Bits 1 to 3 of uimm4 are reserved and should be zero. */
|
|
|
|
|
if (opnd->pstatefield == 0x05 /* spsel */ && opnds[1].imm.value > 1)
|
|
|
|
|
{
|
|
|
|
|
set_imm_out_of_range_error (mismatch_detail, idx, 0, 1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_CLASS_SIMD_ELEMENT:
|
|
|
|
|
/* Get the upper bound for the element index. */
|
[AArch64] Add ARMv8.3 FCMLA and FCADD instructions
Add support for FCMLA and FCADD complex arithmetic SIMD instructions.
FCMLA has an indexed element variant where the index range has to be
treated specially because a complex number takes two elements and the
indexed vector size depends on the other operands.
These complex number SIMD instructions are part of ARMv8.3
https://community.arm.com/groups/processors/blog/2016/10/27/armv8-a-architecture-2016-additions
include/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* opcode/aarch64.h (enum aarch64_opnd): Add AARCH64_OPND_IMM_ROT1,
AARCH64_OPND_IMM_ROT2, AARCH64_OPND_IMM_ROT3.
(enum aarch64_op): Add OP_FCMLA_ELEM.
opcodes/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* aarch64-tbl.h (QL_V3SAMEHSD_ROT, QL_ELEMENT_ROT): Define.
(aarch64_feature_simd_v8_3, SIMD_V8_3): Define.
(aarch64_opcode_table): Add fcmla and fcadd.
(AARCH64_OPERANDS): Add IMM_ROT{1,2,3}.
* aarch64-asm.h (aarch64_ins_imm_rotate): Declare.
* aarch64-asm.c (aarch64_ins_imm_rotate): Define.
* aarch64-dis.h (aarch64_ext_imm_rotate): Declare.
* aarch64-dis.c (aarch64_ext_imm_rotate): Define.
* aarch64-opc.h (enum aarch64_field_kind): Add FLD_rotate{1,2,3}.
* aarch64-opc.c (fields): Add FLD_rotate{1,2,3}.
(operand_general_constraint_met_p): Rotate and index range check.
(aarch64_print_operand): Handle rotate operand.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Likewise.
* aarch64-opc-2.c: Likewise.
gas/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* config/tc-aarch64.c (parse_operands): Handle AARCH64_OPND_IMM_ROT*.
* testsuite/gas/aarch64/advsimd-armv8_3.d: New.
* testsuite/gas/aarch64/advsimd-armv8_3.s: New.
* testsuite/gas/aarch64/illegal-fcmla.s: New.
* testsuite/gas/aarch64/illegal-fcmla.l: New.
* testsuite/gas/aarch64/illegal-fcmla.d: New.
2016-11-18 18:02:16 +08:00
|
|
|
|
if (opcode->op == OP_FCMLA_ELEM)
|
|
|
|
|
/* FCMLA index range depends on the vector size of other operands
|
|
|
|
|
and is halfed because complex numbers take two elements. */
|
|
|
|
|
num = aarch64_get_qualifier_nelem (opnds[0].qualifier)
|
|
|
|
|
* aarch64_get_qualifier_esize (opnds[0].qualifier) / 2;
|
|
|
|
|
else
|
|
|
|
|
num = 16;
|
|
|
|
|
num = num / aarch64_get_qualifier_esize (qualifier) - 1;
|
AArch64: Fix error checking for SIMD udot (by element)
Committed on behalf of Matthew Malcomson:
The SIMD UDOT instruction assembly has an unusual operand that selects a single
32 bit element with the mnemonic 4B.
This unusual mnemonic is handled by a special operand qualifier and associated
qualifier data in `aarch64_opnd_qualifiers`.
The current qualifier data describes 4 1-byte elements with the structure
{1, 4, 0x0, "4b", OQK_OPD_VARIANT}
This makes sense, as the instruction does work on 4 1-byte elements, however
some logic in the `operand_general_constraint_met_p` makes assumptions about
the range of index allowed when selecting a SIMD_ELEMENT depending on element
size.
That function reasons that e.g. in order to select a byte-sized element in a 16
byte V register an index must allow selection of one of the 16 elements and
hence its range will be in [0,15].
This reasoning breaks with the above description of a 4 part selection of 1
byte elements and allows an index outside the valid [0,3] range, triggering an
assert later on in the program in `aarch64_ins_reglane`.
vshcmd: > echo 'udot v0.2s, v1.8b, v2.4b[4]' | ../src/binutils-build/gas/as-new -march=armv8.4-a
as-new: ../../binutils-gdb/opcodes/aarch64-asm.c:134: aarch64_ins_reglane: Assertion `reglane_index < 4' failed.
{standard input}: Assembler messages:
{standard input}:1: Internal error (Aborted).
Please report this bug.
This patch changes the operand qualifier data so that it describes a single
32 bit element.
{4, 1, 0x0, "4b", OQK_OPD_VARIANT}
Hence the calculation in `operand_general_constraint_met_p` provides the
correct answer and the usual error checking machinery is used.
vshcmd: > echo 'udot v0.2s, v1.8b, v2.4b[4]' | ../src/binutils-build/gas/as-new -march=armv8.4-a
{standard input}: Assembler messages:
{standard input}:1: Error: register element index out of range 0 to 3 at operand 3 -- `udot v0.2s,v1.8b,v2.4b[4]'
2018-10-17 01:49:36 +08:00
|
|
|
|
assert (aarch64_get_qualifier_nelem (qualifier) == 1);
|
[AArch64] Add ARMv8.3 FCMLA and FCADD instructions
Add support for FCMLA and FCADD complex arithmetic SIMD instructions.
FCMLA has an indexed element variant where the index range has to be
treated specially because a complex number takes two elements and the
indexed vector size depends on the other operands.
These complex number SIMD instructions are part of ARMv8.3
https://community.arm.com/groups/processors/blog/2016/10/27/armv8-a-architecture-2016-additions
include/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* opcode/aarch64.h (enum aarch64_opnd): Add AARCH64_OPND_IMM_ROT1,
AARCH64_OPND_IMM_ROT2, AARCH64_OPND_IMM_ROT3.
(enum aarch64_op): Add OP_FCMLA_ELEM.
opcodes/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* aarch64-tbl.h (QL_V3SAMEHSD_ROT, QL_ELEMENT_ROT): Define.
(aarch64_feature_simd_v8_3, SIMD_V8_3): Define.
(aarch64_opcode_table): Add fcmla and fcadd.
(AARCH64_OPERANDS): Add IMM_ROT{1,2,3}.
* aarch64-asm.h (aarch64_ins_imm_rotate): Declare.
* aarch64-asm.c (aarch64_ins_imm_rotate): Define.
* aarch64-dis.h (aarch64_ext_imm_rotate): Declare.
* aarch64-dis.c (aarch64_ext_imm_rotate): Define.
* aarch64-opc.h (enum aarch64_field_kind): Add FLD_rotate{1,2,3}.
* aarch64-opc.c (fields): Add FLD_rotate{1,2,3}.
(operand_general_constraint_met_p): Rotate and index range check.
(aarch64_print_operand): Handle rotate operand.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Likewise.
* aarch64-opc-2.c: Likewise.
gas/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* config/tc-aarch64.c (parse_operands): Handle AARCH64_OPND_IMM_ROT*.
* testsuite/gas/aarch64/advsimd-armv8_3.d: New.
* testsuite/gas/aarch64/advsimd-armv8_3.s: New.
* testsuite/gas/aarch64/illegal-fcmla.s: New.
* testsuite/gas/aarch64/illegal-fcmla.l: New.
* testsuite/gas/aarch64/illegal-fcmla.d: New.
2016-11-18 18:02:16 +08:00
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* Index out-of-range. */
|
|
|
|
|
if (!value_in_range_p (opnd->reglane.index, 0, num))
|
|
|
|
|
{
|
|
|
|
|
set_elem_idx_out_of_range_error (mismatch_detail, idx, 0, num);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* SMLAL<Q> <Vd>.<Ta>, <Vn>.<Tb>, <Vm>.<Ts>[<index>].
|
|
|
|
|
<Vm> Is the vector register (V0-V31) or (V0-V15), whose
|
|
|
|
|
number is encoded in "size:M:Rm":
|
|
|
|
|
size <Vm>
|
|
|
|
|
00 RESERVED
|
|
|
|
|
01 0:Rm
|
|
|
|
|
10 M:Rm
|
|
|
|
|
11 RESERVED */
|
Fix AArch64 encodings for by element instructions.
Some instructions in Armv8-a place a limitation on FP16 registers that can be
used as the register from which to select an element from.
e.g. fmla restricts Rm to 4 bits when using an FP16 register. This restriction
does not apply for all instructions, e.g. fcmla does not have this restriction
as it gets an extra bit from the M field.
Unfortunately, this restriction to S_H was added for all _Em operands before,
meaning for a large number of instructions you couldn't use the full register
file.
This fixes the issue by introducing a new operand _Em16 which applies this
restriction only when paired with S_H and leaves the _Em and the other
qualifiers for _Em16 unbounded (i.e. using the full 5 bit range).
Also the patch updates all instructions that should be affected by this.
opcodes/
PR binutils/23192
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Likewise.
* aarch64-opc-2.c: Likewise.
* aarch64-dis.c (aarch64_ext_reglane): Add AARCH64_OPND_Em16 constraint.
* aarch64-opc.c (operand_general_constraint_met_p,
aarch64_print_operand): Likewise.
* aarch64-tbl.h (aarch64_opcode_table): Change Em to Em16 for smlal,
smlal2, fmla, fmls, fmul, fmulx, sqrdmlah, sqrdlsh, fmlal, fmlsl,
fmlal2, fmlsl2.
(AARCH64_OPERANDS): Add Em2.
gas/
PR binutils/23192
* config/tc-aarch64.c (process_omitted_operand, parse_operands): Add
AARCH64_OPND_Em16
* testsuite/gas/aarch64/advsimd-armv8_3.s: Expand tests to cover upper
16 registers.
* testsuite/gas/aarch64/advsimd-armv8_3.d: Likewise.
* testsuite/gas/aarch64/advsimd-compnum.s: Likewise.
* testsuite/gas/aarch64/advsimd-compnum.d: Likewise.
* testsuite/gas/aarch64/sve.d: Likewise.
include/
PR binutils/23192
*opcode/aarch64.h (aarch64_opnd): Add AARCH64_OPND_Em16.
2018-06-29 19:12:27 +08:00
|
|
|
|
if (type == AARCH64_OPND_Em16 && qualifier == AARCH64_OPND_QLF_S_H
|
2012-08-13 22:52:54 +08:00
|
|
|
|
&& !value_in_range_p (opnd->reglane.regno, 0, 15))
|
|
|
|
|
{
|
|
|
|
|
set_regno_out_of_range_error (mismatch_detail, idx, 0, 15);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_CLASS_MODIFIED_REG:
|
|
|
|
|
assert (idx == 1 || idx == 2);
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_Rm_EXT:
|
2017-05-18 13:17:40 +08:00
|
|
|
|
if (!aarch64_extend_operator_p (opnd->shifter.kind)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
&& opnd->shifter.kind != AARCH64_MOD_LSL)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("extend operator expected"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* It is not optional unless at least one of "Rd" or "Rn" is '11111'
|
|
|
|
|
(i.e. SP), in which case it defaults to LSL. The LSL alias is
|
|
|
|
|
only valid when "Rd" or "Rn" is '11111', and is preferred in that
|
|
|
|
|
case. */
|
|
|
|
|
if (!aarch64_stack_pointer_p (opnds + 0)
|
|
|
|
|
&& (idx != 2 || !aarch64_stack_pointer_p (opnds + 1)))
|
|
|
|
|
{
|
|
|
|
|
if (!opnd->shifter.operator_present)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("missing extend operator"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
else if (opnd->shifter.kind == AARCH64_MOD_LSL)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("'LSL' operator not allowed"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
assert (opnd->shifter.operator_present /* Default to LSL. */
|
|
|
|
|
|| opnd->shifter.kind == AARCH64_MOD_LSL);
|
|
|
|
|
if (!value_in_range_p (opnd->shifter.amount, 0, 4))
|
|
|
|
|
{
|
|
|
|
|
set_sft_amount_out_of_range_error (mismatch_detail, idx, 0, 4);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* In the 64-bit form, the final register operand is written as Wm
|
|
|
|
|
for all but the (possibly omitted) UXTX/LSL and SXTX
|
|
|
|
|
operators.
|
|
|
|
|
N.B. GAS allows X register to be used with any operator as a
|
|
|
|
|
programming convenience. */
|
|
|
|
|
if (qualifier == AARCH64_OPND_QLF_X
|
|
|
|
|
&& opnd->shifter.kind != AARCH64_MOD_LSL
|
|
|
|
|
&& opnd->shifter.kind != AARCH64_MOD_UXTX
|
|
|
|
|
&& opnd->shifter.kind != AARCH64_MOD_SXTX)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx, _("W register expected"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_Rm_SFT:
|
|
|
|
|
/* ROR is not available to the shifted register operand in
|
|
|
|
|
arithmetic instructions. */
|
2017-05-18 13:17:40 +08:00
|
|
|
|
if (!aarch64_shift_operator_p (opnd->shifter.kind))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("shift operator expected"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (opnd->shifter.kind == AARCH64_MOD_ROR
|
|
|
|
|
&& opcode->iclass != log_shift)
|
|
|
|
|
{
|
|
|
|
|
set_other_error (mismatch_detail, idx,
|
|
|
|
|
_("'ROR' operator not allowed"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
num = qualifier == AARCH64_OPND_QLF_W ? 31 : 63;
|
|
|
|
|
if (!value_in_range_p (opnd->shifter.amount, 0, num))
|
|
|
|
|
{
|
|
|
|
|
set_sft_amount_out_of_range_error (mismatch_detail, idx, 0, num);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Main entrypoint for the operand constraint checking.
|
|
|
|
|
|
|
|
|
|
Return 1 if operands of *INST meet the constraint applied by the operand
|
|
|
|
|
codes and operand qualifiers; otherwise return 0 and if MISMATCH_DETAIL is
|
|
|
|
|
not NULL, return the detail of the error in *MISMATCH_DETAIL. N.B. when
|
|
|
|
|
adding more constraint checking, make sure MISMATCH_DETAIL->KIND is set
|
|
|
|
|
with a proper error kind rather than AARCH64_OPDE_NIL (GAS asserts non-NIL
|
|
|
|
|
error kind when it is notified that an instruction does not pass the check).
|
|
|
|
|
|
|
|
|
|
Un-determined operand qualifiers may get established during the process. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
aarch64_match_operands_constraint (aarch64_inst *inst,
|
|
|
|
|
aarch64_operand_error *mismatch_detail)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("enter");
|
|
|
|
|
|
[AArch64][SVE 20/32] Add support for tied operands
SVE has some instructions in which the same register appears twice
in the assembly string, once as an input and once as an output.
This patch adds a general mechanism for that.
The patch needs to add new information to the instruction entries.
One option would have been to extend the flags field of the opcode
to 64 bits (since we already rely on 64-bit integers being available
on the host). However, the *_INSN macros mean that it's easy to add
new information as top-level fields without affecting the existing
table entries too much. Going for that option seemed to give slightly
neater code.
include/
* opcode/aarch64.h (aarch64_opcode): Add a tied_operand field.
(AARCH64_OPDE_UNTIED_OPERAND): New aarch64_operand_error_kind.
opcodes/
* aarch64-tbl.h (CORE_INSN, __FP_INSN, SIMD_INSN, CRYP_INSN)
(_CRC_INSN, _LSE_INSN, _LOR_INSN, RDMA_INSN, FP16_INSN, SF16_INSN)
(V8_2_INSN, aarch64_opcode_table): Initialize tied_operand field.
* aarch64-opc.c (aarch64_match_operands_constraint): Check for
tied operands.
gas/
* config/tc-aarch64.c (output_operand_error_record): Handle
AARCH64_OPDE_UNTIED_OPERAND.
2016-09-21 23:52:30 +08:00
|
|
|
|
/* Check for cases where a source register needs to be the same as the
|
|
|
|
|
destination register. Do this before matching qualifiers since if
|
|
|
|
|
an instruction has both invalid tying and invalid qualifiers,
|
|
|
|
|
the error about qualifiers would suggest several alternative
|
|
|
|
|
instructions that also have invalid tying. */
|
|
|
|
|
i = inst->opcode->tied_operand;
|
|
|
|
|
if (i > 0 && (inst->operands[0].reg.regno != inst->operands[i].reg.regno))
|
|
|
|
|
{
|
|
|
|
|
if (mismatch_detail)
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_UNTIED_OPERAND;
|
|
|
|
|
mismatch_detail->index = i;
|
|
|
|
|
mismatch_detail->error = NULL;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* Match operands' qualifier.
|
|
|
|
|
*INST has already had qualifier establish for some, if not all, of
|
|
|
|
|
its operands; we need to find out whether these established
|
|
|
|
|
qualifiers match one of the qualifier sequence in
|
|
|
|
|
INST->OPCODE->QUALIFIERS_LIST. If yes, we will assign each operand
|
|
|
|
|
with the corresponding qualifier in such a sequence.
|
|
|
|
|
Only basic operand constraint checking is done here; the more thorough
|
|
|
|
|
constraint checking will carried out by operand_general_constraint_met_p,
|
|
|
|
|
which has be to called after this in order to get all of the operands'
|
|
|
|
|
qualifiers established. */
|
|
|
|
|
if (match_operands_qualifier (inst, TRUE /* update_p */) == 0)
|
|
|
|
|
{
|
|
|
|
|
DEBUG_TRACE ("FAIL on operand qualifier matching");
|
|
|
|
|
if (mismatch_detail)
|
|
|
|
|
{
|
|
|
|
|
/* Return an error type to indicate that it is the qualifier
|
|
|
|
|
matching failure; we don't care about which operand as there
|
|
|
|
|
are enough information in the opcode table to reproduce it. */
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_INVALID_VARIANT;
|
|
|
|
|
mismatch_detail->index = -1;
|
|
|
|
|
mismatch_detail->error = NULL;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Match operands' constraint. */
|
|
|
|
|
for (i = 0; i < AARCH64_MAX_OPND_NUM; ++i)
|
|
|
|
|
{
|
|
|
|
|
enum aarch64_opnd type = inst->opcode->operands[i];
|
|
|
|
|
if (type == AARCH64_OPND_NIL)
|
|
|
|
|
break;
|
|
|
|
|
if (inst->operands[i].skip)
|
|
|
|
|
{
|
|
|
|
|
DEBUG_TRACE ("skip the incomplete operand %d", i);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (operand_general_constraint_met_p (inst->operands, i, type,
|
|
|
|
|
inst->opcode, mismatch_detail) == 0)
|
|
|
|
|
{
|
|
|
|
|
DEBUG_TRACE ("FAIL on operand %d", i);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("PASS");
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Replace INST->OPCODE with OPCODE and return the replaced OPCODE.
|
|
|
|
|
Also updates the TYPE of each INST->OPERANDS with the corresponding
|
|
|
|
|
value of OPCODE->OPERANDS.
|
|
|
|
|
|
|
|
|
|
Note that some operand qualifiers may need to be manually cleared by
|
|
|
|
|
the caller before it further calls the aarch64_opcode_encode; by
|
|
|
|
|
doing this, it helps the qualifier matching facilities work
|
|
|
|
|
properly. */
|
|
|
|
|
|
|
|
|
|
const aarch64_opcode*
|
|
|
|
|
aarch64_replace_opcode (aarch64_inst *inst, const aarch64_opcode *opcode)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
const aarch64_opcode *old = inst->opcode;
|
|
|
|
|
|
|
|
|
|
inst->opcode = opcode;
|
|
|
|
|
|
|
|
|
|
/* Update the operand types. */
|
|
|
|
|
for (i = 0; i < AARCH64_MAX_OPND_NUM; ++i)
|
|
|
|
|
{
|
|
|
|
|
inst->operands[i].type = opcode->operands[i];
|
|
|
|
|
if (opcode->operands[i] == AARCH64_OPND_NIL)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEBUG_TRACE ("replace %s with %s", old->name, opcode->name);
|
|
|
|
|
|
|
|
|
|
return old;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
aarch64_operand_index (const enum aarch64_opnd *operands, enum aarch64_opnd operand)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < AARCH64_MAX_OPND_NUM; ++i)
|
|
|
|
|
if (operands[i] == operand)
|
|
|
|
|
return i;
|
|
|
|
|
else if (operands[i] == AARCH64_OPND_NIL)
|
|
|
|
|
break;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-21 23:51:37 +08:00
|
|
|
|
/* R0...R30, followed by FOR31. */
|
|
|
|
|
#define BANK(R, FOR31) \
|
|
|
|
|
{ R (0), R (1), R (2), R (3), R (4), R (5), R (6), R (7), \
|
|
|
|
|
R (8), R (9), R (10), R (11), R (12), R (13), R (14), R (15), \
|
|
|
|
|
R (16), R (17), R (18), R (19), R (20), R (21), R (22), R (23), \
|
|
|
|
|
R (24), R (25), R (26), R (27), R (28), R (29), R (30), FOR31 }
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* [0][0] 32-bit integer regs with sp Wn
|
|
|
|
|
[0][1] 64-bit integer regs with sp Xn sf=1
|
|
|
|
|
[1][0] 32-bit integer regs with #0 Wn
|
|
|
|
|
[1][1] 64-bit integer regs with #0 Xn sf=1 */
|
|
|
|
|
static const char *int_reg[2][2][32] = {
|
2016-09-21 23:51:37 +08:00
|
|
|
|
#define R32(X) "w" #X
|
|
|
|
|
#define R64(X) "x" #X
|
|
|
|
|
{ BANK (R32, "wsp"), BANK (R64, "sp") },
|
|
|
|
|
{ BANK (R32, "wzr"), BANK (R64, "xzr") }
|
2012-08-13 22:52:54 +08:00
|
|
|
|
#undef R64
|
|
|
|
|
#undef R32
|
|
|
|
|
};
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
|
|
|
|
|
/* Names of the SVE vector registers, first with .S suffixes,
|
|
|
|
|
then with .D suffixes. */
|
|
|
|
|
|
|
|
|
|
static const char *sve_reg[2][32] = {
|
|
|
|
|
#define ZS(X) "z" #X ".s"
|
|
|
|
|
#define ZD(X) "z" #X ".d"
|
|
|
|
|
BANK (ZS, ZS (31)), BANK (ZD, ZD (31))
|
|
|
|
|
#undef ZD
|
|
|
|
|
#undef ZS
|
|
|
|
|
};
|
2016-09-21 23:51:37 +08:00
|
|
|
|
#undef BANK
|
2012-08-13 22:52:54 +08:00
|
|
|
|
|
|
|
|
|
/* Return the integer register name.
|
|
|
|
|
if SP_REG_P is not 0, R31 is an SP reg, other R31 is the zero reg. */
|
|
|
|
|
|
|
|
|
|
static inline const char *
|
|
|
|
|
get_int_reg_name (int regno, aarch64_opnd_qualifier_t qualifier, int sp_reg_p)
|
|
|
|
|
{
|
|
|
|
|
const int has_zr = sp_reg_p ? 0 : 1;
|
|
|
|
|
const int is_64 = aarch64_get_qualifier_esize (qualifier) == 4 ? 0 : 1;
|
|
|
|
|
return int_reg[has_zr][is_64][regno];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Like get_int_reg_name, but IS_64 is always 1. */
|
|
|
|
|
|
|
|
|
|
static inline const char *
|
|
|
|
|
get_64bit_int_reg_name (int regno, int sp_reg_p)
|
|
|
|
|
{
|
|
|
|
|
const int has_zr = sp_reg_p ? 0 : 1;
|
|
|
|
|
return int_reg[has_zr][1][regno];
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-21 23:51:43 +08:00
|
|
|
|
/* Get the name of the integer offset register in OPND, using the shift type
|
|
|
|
|
to decide whether it's a word or doubleword. */
|
|
|
|
|
|
|
|
|
|
static inline const char *
|
|
|
|
|
get_offset_int_reg_name (const aarch64_opnd_info *opnd)
|
|
|
|
|
{
|
|
|
|
|
switch (opnd->shifter.kind)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_MOD_UXTW:
|
|
|
|
|
case AARCH64_MOD_SXTW:
|
|
|
|
|
return get_int_reg_name (opnd->addr.offset.regno, AARCH64_OPND_QLF_W, 0);
|
|
|
|
|
|
|
|
|
|
case AARCH64_MOD_LSL:
|
|
|
|
|
case AARCH64_MOD_SXTX:
|
|
|
|
|
return get_int_reg_name (opnd->addr.offset.regno, AARCH64_OPND_QLF_X, 0);
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
/* Get the name of the SVE vector offset register in OPND, using the operand
|
|
|
|
|
qualifier to decide whether the suffix should be .S or .D. */
|
|
|
|
|
|
|
|
|
|
static inline const char *
|
|
|
|
|
get_addr_sve_reg_name (int regno, aarch64_opnd_qualifier_t qualifier)
|
|
|
|
|
{
|
|
|
|
|
assert (qualifier == AARCH64_OPND_QLF_S_S
|
|
|
|
|
|| qualifier == AARCH64_OPND_QLF_S_D);
|
|
|
|
|
return sve_reg[qualifier == AARCH64_OPND_QLF_S_D][regno];
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* Types for expanding an encoded 8-bit value to a floating-point value. */
|
|
|
|
|
|
|
|
|
|
typedef union
|
|
|
|
|
{
|
|
|
|
|
uint64_t i;
|
|
|
|
|
double d;
|
|
|
|
|
} double_conv_t;
|
|
|
|
|
|
|
|
|
|
typedef union
|
|
|
|
|
{
|
|
|
|
|
uint32_t i;
|
|
|
|
|
float f;
|
|
|
|
|
} single_conv_t;
|
|
|
|
|
|
2015-11-28 00:25:52 +08:00
|
|
|
|
typedef union
|
|
|
|
|
{
|
|
|
|
|
uint32_t i;
|
|
|
|
|
float f;
|
|
|
|
|
} half_conv_t;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* IMM8 is an 8-bit floating-point constant with sign, 3-bit exponent and
|
|
|
|
|
normalized 4 bits of precision, encoded in "a:b:c:d:e:f:g:h" or FLD_imm8
|
|
|
|
|
(depending on the type of the instruction). IMM8 will be expanded to a
|
2015-11-28 00:25:52 +08:00
|
|
|
|
single-precision floating-point value (SIZE == 4) or a double-precision
|
|
|
|
|
floating-point value (SIZE == 8). A half-precision floating-point value
|
|
|
|
|
(SIZE == 2) is expanded to a single-precision floating-point value. The
|
|
|
|
|
expanded value is returned. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
|
|
|
|
|
static uint64_t
|
2015-11-28 00:25:52 +08:00
|
|
|
|
expand_fp_imm (int size, uint32_t imm8)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
2017-09-21 23:46:48 +08:00
|
|
|
|
uint64_t imm = 0;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
uint32_t imm8_7, imm8_6_0, imm8_6, imm8_6_repl4;
|
|
|
|
|
|
|
|
|
|
imm8_7 = (imm8 >> 7) & 0x01; /* imm8<7> */
|
|
|
|
|
imm8_6_0 = imm8 & 0x7f; /* imm8<6:0> */
|
|
|
|
|
imm8_6 = imm8_6_0 >> 6; /* imm8<6> */
|
|
|
|
|
imm8_6_repl4 = (imm8_6 << 3) | (imm8_6 << 2)
|
|
|
|
|
| (imm8_6 << 1) | imm8_6; /* Replicate(imm8<6>,4) */
|
2015-11-28 00:25:52 +08:00
|
|
|
|
if (size == 8)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
imm = (imm8_7 << (63-32)) /* imm8<7> */
|
|
|
|
|
| ((imm8_6 ^ 1) << (62-32)) /* NOT(imm8<6) */
|
|
|
|
|
| (imm8_6_repl4 << (58-32)) | (imm8_6 << (57-32))
|
|
|
|
|
| (imm8_6 << (56-32)) | (imm8_6 << (55-32)) /* Replicate(imm8<6>,7) */
|
|
|
|
|
| (imm8_6_0 << (48-32)); /* imm8<6>:imm8<5:0> */
|
|
|
|
|
imm <<= 32;
|
|
|
|
|
}
|
2015-11-28 00:25:52 +08:00
|
|
|
|
else if (size == 4 || size == 2)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
imm = (imm8_7 << 31) /* imm8<7> */
|
|
|
|
|
| ((imm8_6 ^ 1) << 30) /* NOT(imm8<6>) */
|
|
|
|
|
| (imm8_6_repl4 << 26) /* Replicate(imm8<6>,4) */
|
|
|
|
|
| (imm8_6_0 << 19); /* imm8<6>:imm8<5:0> */
|
|
|
|
|
}
|
2015-11-28 00:25:52 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* An unsupported size. */
|
|
|
|
|
assert (0);
|
|
|
|
|
}
|
2012-08-13 22:52:54 +08:00
|
|
|
|
|
|
|
|
|
return imm;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Produce the string representation of the register list operand *OPND
|
2016-09-21 23:51:30 +08:00
|
|
|
|
in the buffer pointed by BUF of size SIZE. PREFIX is the part of
|
|
|
|
|
the register name that comes before the register number, such as "v". */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
static void
|
2016-09-21 23:51:30 +08:00
|
|
|
|
print_register_list (char *buf, size_t size, const aarch64_opnd_info *opnd,
|
|
|
|
|
const char *prefix)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
|
|
|
|
const int num_regs = opnd->reglist.num_regs;
|
|
|
|
|
const int first_reg = opnd->reglist.first_regno;
|
|
|
|
|
const int last_reg = (first_reg + num_regs - 1) & 0x1f;
|
|
|
|
|
const char *qlf_name = aarch64_get_qualifier_name (opnd->qualifier);
|
|
|
|
|
char tb[8]; /* Temporary buffer. */
|
|
|
|
|
|
|
|
|
|
assert (opnd->type != AARCH64_OPND_LEt || opnd->reglist.has_index);
|
|
|
|
|
assert (num_regs >= 1 && num_regs <= 4);
|
|
|
|
|
|
|
|
|
|
/* Prepare the index if any. */
|
|
|
|
|
if (opnd->reglist.has_index)
|
2017-02-03 17:04:21 +08:00
|
|
|
|
/* PR 21096: The %100 is to silence a warning about possible truncation. */
|
|
|
|
|
snprintf (tb, 8, "[%" PRIi64 "]", (opnd->reglist.index % 100));
|
2012-08-13 22:52:54 +08:00
|
|
|
|
else
|
|
|
|
|
tb[0] = '\0';
|
|
|
|
|
|
|
|
|
|
/* The hyphenated form is preferred for disassembly if there are
|
|
|
|
|
more than two registers in the list, and the register numbers
|
|
|
|
|
are monotonically increasing in increments of one. */
|
|
|
|
|
if (num_regs > 2 && last_reg > first_reg)
|
2016-09-21 23:51:30 +08:00
|
|
|
|
snprintf (buf, size, "{%s%d.%s-%s%d.%s}%s", prefix, first_reg, qlf_name,
|
|
|
|
|
prefix, last_reg, qlf_name, tb);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
const int reg0 = first_reg;
|
|
|
|
|
const int reg1 = (first_reg + 1) & 0x1f;
|
|
|
|
|
const int reg2 = (first_reg + 2) & 0x1f;
|
|
|
|
|
const int reg3 = (first_reg + 3) & 0x1f;
|
|
|
|
|
|
|
|
|
|
switch (num_regs)
|
|
|
|
|
{
|
|
|
|
|
case 1:
|
2016-09-21 23:51:30 +08:00
|
|
|
|
snprintf (buf, size, "{%s%d.%s}%s", prefix, reg0, qlf_name, tb);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
case 2:
|
2016-09-21 23:51:30 +08:00
|
|
|
|
snprintf (buf, size, "{%s%d.%s, %s%d.%s}%s", prefix, reg0, qlf_name,
|
|
|
|
|
prefix, reg1, qlf_name, tb);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
case 3:
|
2016-09-21 23:51:30 +08:00
|
|
|
|
snprintf (buf, size, "{%s%d.%s, %s%d.%s, %s%d.%s}%s",
|
|
|
|
|
prefix, reg0, qlf_name, prefix, reg1, qlf_name,
|
|
|
|
|
prefix, reg2, qlf_name, tb);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
case 4:
|
2016-09-21 23:51:30 +08:00
|
|
|
|
snprintf (buf, size, "{%s%d.%s, %s%d.%s, %s%d.%s, %s%d.%s}%s",
|
|
|
|
|
prefix, reg0, qlf_name, prefix, reg1, qlf_name,
|
|
|
|
|
prefix, reg2, qlf_name, prefix, reg3, qlf_name, tb);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-21 23:51:43 +08:00
|
|
|
|
/* Print the register+immediate address in OPND to BUF, which has SIZE
|
|
|
|
|
characters. BASE is the name of the base register. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_immediate_offset_address (char *buf, size_t size,
|
|
|
|
|
const aarch64_opnd_info *opnd,
|
|
|
|
|
const char *base)
|
|
|
|
|
{
|
|
|
|
|
if (opnd->addr.writeback)
|
|
|
|
|
{
|
|
|
|
|
if (opnd->addr.preind)
|
Modify the ARNM assembler to accept the omission of the immediate argument for the writeback form of the LDRAA and LDRAB mnemonics
This is a shorthand for the immediate argument being 0, as described here:
https://developer.arm.com/docs/ddi0596/latest/base-instructions-alphabetic-order/ldraa-ldrab-load-register-with-pointer-authentication
This is because the instructions still have a use with an immediate
argument of 0, unlike loads without the PAC functionality. Currently,
the mnemonics are
LDRAA Xt, [Xn, #<simm10>]!
LDRAB Xt, [Xn, #<simm10>]!
After this patch they become
LDRAA Xt, [Xn {, #<simm10>}]!
LDRAB Xt, [Xn {, #<simm10>}]!
gas * config/tc-aarch64.c (parse_address_main): Accept the omission of
the immediate argument for ldraa and ldrab as a shorthand for the
immediate being 0.
* testsuite/gas/aarch64/ldraa-ldrab-no-offset.d: New test.
* testsuite/gas/aarch64/ldraa-ldrab-no-offset.s: New test.
* testsuite/gas/aarch64/illegal-ldraa.s: Modified to accept the
writeback form with no offset.
* testsuite/gas/aarch64/illegal-ldraa.s: Removed missing offset
error.
opcodes * aarch64-opc.c (print_immediate_offset_address): Don't print the
immediate for the writeback form of ldraa/ldrab if it is 0.
* aarch64-tbl.h: Updated the documentation for ADDR_SIMM10.
* aarch64-opc-2.c: Regenerated.
2019-10-30 21:23:35 +08:00
|
|
|
|
{
|
|
|
|
|
if (opnd->type == AARCH64_OPND_ADDR_SIMM10 && !opnd->addr.offset.imm)
|
|
|
|
|
snprintf (buf, size, "[%s]!", base);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "[%s, #%d]!", base, opnd->addr.offset.imm);
|
|
|
|
|
}
|
2016-09-21 23:51:43 +08:00
|
|
|
|
else
|
2016-09-22 00:11:52 +08:00
|
|
|
|
snprintf (buf, size, "[%s], #%d", base, opnd->addr.offset.imm);
|
2016-09-21 23:51:43 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
[AArch64][SVE 26/32] Add SVE MUL VL addressing modes
This patch adds support for addresses of the form:
[<base>, #<offset>, MUL VL]
This involves adding a new AARCH64_MOD_MUL_VL modifier, which is
why I split it out from the other addressing modes.
For LD2, LD3 and LD4, the offset must be a multiple of the structure
size, so for LD3 the possible values are 0, 3, 6, .... The patch
therefore extends value_aligned_p to handle non-power-of-2 alignments.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4xVL): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_S4x2xVL, AARCH64_OPND_SVE_ADDR_RI_S4x3xVL)
(AARCH64_OPND_SVE_ADDR_RI_S4x4xVL, AARCH64_OPND_SVE_ADDR_RI_S6xVL)
(AARCH64_OPND_SVE_ADDR_RI_S9xVL): Likewise.
(AARCH64_MOD_MUL_VL): New aarch64_modifier_kind.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new MUL VL
operands.
* aarch64-opc.c (aarch64_operand_modifiers): Initialize
the AARCH64_MOD_MUL_VL entry.
(value_aligned_p): Cope with non-power-of-two alignments.
(operand_general_constraint_met_p): Handle the new MUL VL addresses.
(print_immediate_offset_address): Likewise.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_s4xvl, ins_sve_addr_ri_s6xvl)
(ins_sve_addr_ri_s9xvl): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_s4xvl): New function.
(aarch64_ins_sve_addr_ri_s6xvl): Likewise.
(aarch64_ins_sve_addr_ri_s9xvl): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4xvl, ext_sve_addr_ri_s6xvl)
(ext_sve_addr_ri_s9xvl): New extractors.
* aarch64-dis.c (aarch64_ext_sve_addr_reg_mul_vl): New function.
(aarch64_ext_sve_addr_ri_s4xvl): Likewise.
(aarch64_ext_sve_addr_ri_s6xvl): Likewise.
(aarch64_ext_sve_addr_ri_s9xvl): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_NONE, SHIFTED_MUL_VL): New
parse_shift_modes.
(parse_shift): Handle SHIFTED_MUL_VL.
(parse_address_main): Add an imm_shift_mode parameter.
(parse_address, parse_sve_address): Update accordingly.
(parse_operands): Handle MUL VL addressing modes.
2016-09-21 23:56:15 +08:00
|
|
|
|
if (opnd->shifter.operator_present)
|
|
|
|
|
{
|
|
|
|
|
assert (opnd->shifter.kind == AARCH64_MOD_MUL_VL);
|
2016-09-22 00:11:52 +08:00
|
|
|
|
snprintf (buf, size, "[%s, #%d, mul vl]",
|
[AArch64][SVE 26/32] Add SVE MUL VL addressing modes
This patch adds support for addresses of the form:
[<base>, #<offset>, MUL VL]
This involves adding a new AARCH64_MOD_MUL_VL modifier, which is
why I split it out from the other addressing modes.
For LD2, LD3 and LD4, the offset must be a multiple of the structure
size, so for LD3 the possible values are 0, 3, 6, .... The patch
therefore extends value_aligned_p to handle non-power-of-2 alignments.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4xVL): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_S4x2xVL, AARCH64_OPND_SVE_ADDR_RI_S4x3xVL)
(AARCH64_OPND_SVE_ADDR_RI_S4x4xVL, AARCH64_OPND_SVE_ADDR_RI_S6xVL)
(AARCH64_OPND_SVE_ADDR_RI_S9xVL): Likewise.
(AARCH64_MOD_MUL_VL): New aarch64_modifier_kind.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new MUL VL
operands.
* aarch64-opc.c (aarch64_operand_modifiers): Initialize
the AARCH64_MOD_MUL_VL entry.
(value_aligned_p): Cope with non-power-of-two alignments.
(operand_general_constraint_met_p): Handle the new MUL VL addresses.
(print_immediate_offset_address): Likewise.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_s4xvl, ins_sve_addr_ri_s6xvl)
(ins_sve_addr_ri_s9xvl): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_s4xvl): New function.
(aarch64_ins_sve_addr_ri_s6xvl): Likewise.
(aarch64_ins_sve_addr_ri_s9xvl): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4xvl, ext_sve_addr_ri_s6xvl)
(ext_sve_addr_ri_s9xvl): New extractors.
* aarch64-dis.c (aarch64_ext_sve_addr_reg_mul_vl): New function.
(aarch64_ext_sve_addr_ri_s4xvl): Likewise.
(aarch64_ext_sve_addr_ri_s6xvl): Likewise.
(aarch64_ext_sve_addr_ri_s9xvl): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_NONE, SHIFTED_MUL_VL): New
parse_shift_modes.
(parse_shift): Handle SHIFTED_MUL_VL.
(parse_address_main): Add an imm_shift_mode parameter.
(parse_address, parse_sve_address): Update accordingly.
(parse_operands): Handle MUL VL addressing modes.
2016-09-21 23:56:15 +08:00
|
|
|
|
base, opnd->addr.offset.imm);
|
|
|
|
|
}
|
|
|
|
|
else if (opnd->addr.offset.imm)
|
2016-09-22 00:11:52 +08:00
|
|
|
|
snprintf (buf, size, "[%s, #%d]", base, opnd->addr.offset.imm);
|
2016-09-21 23:51:43 +08:00
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "[%s]", base);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* Produce the string representation of the register offset address operand
|
2016-09-21 23:51:43 +08:00
|
|
|
|
*OPND in the buffer pointed by BUF of size SIZE. BASE and OFFSET are
|
|
|
|
|
the names of the base and offset registers. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
static void
|
|
|
|
|
print_register_offset_address (char *buf, size_t size,
|
2016-09-21 23:51:43 +08:00
|
|
|
|
const aarch64_opnd_info *opnd,
|
|
|
|
|
const char *base, const char *offset)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
2016-03-25 05:42:09 +08:00
|
|
|
|
char tb[16]; /* Temporary buffer. */
|
2012-08-13 22:52:54 +08:00
|
|
|
|
bfd_boolean print_extend_p = TRUE;
|
|
|
|
|
bfd_boolean print_amount_p = TRUE;
|
|
|
|
|
const char *shift_name = aarch64_operand_modifiers[opnd->shifter.kind].name;
|
|
|
|
|
|
|
|
|
|
if (!opnd->shifter.amount && (opnd->qualifier != AARCH64_OPND_QLF_S_B
|
|
|
|
|
|| !opnd->shifter.amount_present))
|
|
|
|
|
{
|
|
|
|
|
/* Not print the shift/extend amount when the amount is zero and
|
|
|
|
|
when it is not the special case of 8-bit load/store instruction. */
|
|
|
|
|
print_amount_p = FALSE;
|
|
|
|
|
/* Likewise, no need to print the shift operator LSL in such a
|
|
|
|
|
situation. */
|
2016-09-21 23:51:43 +08:00
|
|
|
|
if (opnd->shifter.kind == AARCH64_MOD_LSL)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
print_extend_p = FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepare for the extend/shift. */
|
|
|
|
|
if (print_extend_p)
|
|
|
|
|
{
|
|
|
|
|
if (print_amount_p)
|
2016-09-22 00:11:52 +08:00
|
|
|
|
snprintf (tb, sizeof (tb), ", %s #%" PRIi64, shift_name,
|
2017-02-03 17:04:21 +08:00
|
|
|
|
/* PR 21096: The %100 is to silence a warning about possible truncation. */
|
|
|
|
|
(opnd->shifter.amount % 100));
|
2012-08-13 22:52:54 +08:00
|
|
|
|
else
|
2016-09-22 00:11:52 +08:00
|
|
|
|
snprintf (tb, sizeof (tb), ", %s", shift_name);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
tb[0] = '\0';
|
|
|
|
|
|
2016-09-22 00:11:52 +08:00
|
|
|
|
snprintf (buf, size, "[%s, %s%s]", base, offset, tb);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Generate the string representation of the operand OPNDS[IDX] for OPCODE
|
|
|
|
|
in *BUF. The caller should pass in the maximum size of *BUF in SIZE.
|
|
|
|
|
PC, PCREL_P and ADDRESS are used to pass in and return information about
|
|
|
|
|
the PC-relative address calculation, where the PC value is passed in
|
|
|
|
|
PC. If the operand is pc-relative related, *PCREL_P (if PCREL_P non-NULL)
|
|
|
|
|
will return 1 and *ADDRESS (if ADDRESS non-NULL) will return the
|
|
|
|
|
calculated address; otherwise, *PCREL_P (if PCREL_P non-NULL) returns 0.
|
|
|
|
|
|
|
|
|
|
The function serves both the disassembler and the assembler diagnostics
|
|
|
|
|
issuer, which is the reason why it lives in this file. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
aarch64_print_operand (char *buf, size_t size, bfd_vma pc,
|
|
|
|
|
const aarch64_opcode *opcode,
|
|
|
|
|
const aarch64_opnd_info *opnds, int idx, int *pcrel_p,
|
2018-10-04 01:51:11 +08:00
|
|
|
|
bfd_vma *address, char** notes)
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
[AArch64] Add SVE condition codes
SVE defines new names for existing NZCV conditions, to reflect the
result of instructions like PTEST. This patch adds support for these
names.
The patch also adds comments to the disassembly output to show the
alternative names of a condition code. For example:
cinv x0, x1, cc
becomes:
cinv x0, x1, cc // cc = lo, ul, last
and:
b.cc f0 <...>
becomes:
b.cc f0 <...> // b.lo, b.ul, b.last
Doing this for the SVE names follows the practice recommended by the
SVE specification and is definitely useful when reading SVE code.
If the feeling is that it's too distracting elsewhere, we could add
an option to turn it off.
include/
* opcode/aarch64.h (aarch64_cond): Bump array size to 4.
opcodes/
* aarch64-dis.c (remove_dot_suffix): New function, split out from...
(print_mnemonic_name): ...here.
(print_comment): New function.
(print_aarch64_insn): Call it.
* aarch64-opc.c (aarch64_conds): Add SVE names.
(aarch64_print_operand): Print alternative condition names in
a comment.
gas/
* config/tc-aarch64.c (opcode_lookup): Search for the end of
a condition name, rather than assuming that it will have exactly
2 characters.
(parse_operands): Likewise.
* testsuite/gas/aarch64/alias.d: Add new condition-code comments
to the expected output.
* testsuite/gas/aarch64/beq_1.d: Likewise.
* testsuite/gas/aarch64/float-fp16.d: Likewise.
* testsuite/gas/aarch64/int-insns.d: Likewise.
* testsuite/gas/aarch64/no-aliases.d: Likewise.
* testsuite/gas/aarch64/programmer-friendly.d: Likewise.
* testsuite/gas/aarch64/reloc-insn.d: Likewise.
* testsuite/gas/aarch64/b_c_1.d, testsuite/gas/aarch64/b_c_1.s:
New test.
ld/
* testsuite/ld-aarch64/emit-relocs-280.d: Match branch comments.
* testsuite/ld-aarch64/weak-undefined.d: Likewise.
2016-09-22 00:09:59 +08:00
|
|
|
|
unsigned int i, num_conds;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
const char *name = NULL;
|
|
|
|
|
const aarch64_opnd_info *opnd = opnds + idx;
|
|
|
|
|
enum aarch64_modifier_kind kind;
|
2016-09-21 23:54:53 +08:00
|
|
|
|
uint64_t addr, enum_value;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
|
|
|
|
|
buf[0] = '\0';
|
|
|
|
|
if (pcrel_p)
|
|
|
|
|
*pcrel_p = 0;
|
|
|
|
|
|
|
|
|
|
switch (opnd->type)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_Rd:
|
|
|
|
|
case AARCH64_OPND_Rn:
|
|
|
|
|
case AARCH64_OPND_Rm:
|
|
|
|
|
case AARCH64_OPND_Rt:
|
|
|
|
|
case AARCH64_OPND_Rt2:
|
|
|
|
|
case AARCH64_OPND_Rs:
|
|
|
|
|
case AARCH64_OPND_Ra:
|
|
|
|
|
case AARCH64_OPND_Rt_SYS:
|
2014-09-03 21:40:41 +08:00
|
|
|
|
case AARCH64_OPND_PAIRREG:
|
2016-09-21 23:57:43 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Rm:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* The optional-ness of <Xt> in e.g. IC <ic_op>{, <Xt>} is determined by
|
2017-07-18 23:58:14 +08:00
|
|
|
|
the <ic_op>, therefore we use opnd->present to override the
|
2012-08-13 22:52:54 +08:00
|
|
|
|
generic optional-ness information. */
|
2016-10-07 17:55:56 +08:00
|
|
|
|
if (opnd->type == AARCH64_OPND_Rt_SYS)
|
|
|
|
|
{
|
|
|
|
|
if (!opnd->present)
|
|
|
|
|
break;
|
|
|
|
|
}
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* Omit the operand, e.g. RET. */
|
2016-10-07 17:55:56 +08:00
|
|
|
|
else if (optional_operand_p (opcode, idx)
|
|
|
|
|
&& (opnd->reg.regno
|
|
|
|
|
== get_optional_operand_default_value (opcode)))
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
assert (opnd->qualifier == AARCH64_OPND_QLF_W
|
|
|
|
|
|| opnd->qualifier == AARCH64_OPND_QLF_X);
|
|
|
|
|
snprintf (buf, size, "%s",
|
|
|
|
|
get_int_reg_name (opnd->reg.regno, opnd->qualifier, 0));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_Rd_SP:
|
|
|
|
|
case AARCH64_OPND_Rn_SP:
|
[BINUTILS, AArch64, 2/2] Update Store Allocation Tag instructions
This patch updates the Store allocation tags instructions in
Armv8.5-A Memory Tagging Extension. This is part of the changes
that have been introduced recently in the 00bet10 release
All of these instructions have an updated register operand (Xt -> <Xt|SP>)
- STG <Xt|SP>, [<Xn|SP>, #<simm>]
- STG <Xt|SP>, [<Xn|SP>, #<simm>]!
- STG <Xt|SP>, [<Xn|SP>], #<simm>
- STZG <Xt|SP>, [<Xn|SP>, #<simm>]
- STZG <Xt|SP>, [<Xn|SP>, #<simm>]!
- STZG <Xt|SP>, [<Xn|SP>], #<simm>
- ST2G <Xt|SP>, [<Xn|SP>, #<simm>]
- ST2G <Xt|SP>, [<Xn|SP>, #<simm>]!
- ST2G <Xt|SP>, [<Xn|SP>], #<simm>
- STZ2G <Xt|SP>, [<Xn|SP>, #<simm>]
- STZ2G <Xt|SP>, [<Xn|SP>, #<simm>]!
- STZ2G <Xt|SP>, [<Xn|SP>], #<simm>
In order to accept <Rt|SP> a new operand type Rt_SP is introduced which has
the same field as FLD_Rt but follows other semantics of Rn_SP.
*** gas/ChangeLog ***
2019-04-11 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (process_omitted_operand): Add case for
AARCH64_OPND_Rt_SP.
(parse_operands): Likewise.
* testsuite/gas/aarch64/armv8_5-a-memtag.d: Update tests.
* testsuite/gas/aarch64/armv8_5-a-memtag.s: Likewise.
* testsuite/gas/aarch64/illegal-memtag.l: Likewise.
* testsuite/gas/aarch64/illegal-memtag.s: Likewise.
*** include/ChangeLog ***
2019-04-11 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (enum aarch64_opnd): Add AARCH64_OPND_Rt_SP.
*** opcodes/ChangeLog ***
2019-04-11 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_print_operand): Add case for
AARCH64_OPND_Rt_SP.
(verify_constraints): Likewise.
* aarch64-tbl.h (QL_LDST_AT): Update to add SP qualifier.
(struct aarch64_opcode): Update stg, stzg, st2g, stz2g instructions
to accept Rt|SP as first operand.
(AARCH64_OPERANDS): Add new Rt_SP.
* aarch64-asm-2.c: Regenerated.
* aarch64-dis-2.c: Regenerated.
* aarch64-opc-2.c: Regenerated.
2019-04-11 17:19:37 +08:00
|
|
|
|
case AARCH64_OPND_Rt_SP:
|
2016-09-21 23:57:43 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Rn_SP:
|
2016-11-11 18:39:46 +08:00
|
|
|
|
case AARCH64_OPND_Rm_SP:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
assert (opnd->qualifier == AARCH64_OPND_QLF_W
|
|
|
|
|
|| opnd->qualifier == AARCH64_OPND_QLF_WSP
|
|
|
|
|
|| opnd->qualifier == AARCH64_OPND_QLF_X
|
|
|
|
|
|| opnd->qualifier == AARCH64_OPND_QLF_SP);
|
|
|
|
|
snprintf (buf, size, "%s",
|
|
|
|
|
get_int_reg_name (opnd->reg.regno, opnd->qualifier, 1));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_Rm_EXT:
|
|
|
|
|
kind = opnd->shifter.kind;
|
|
|
|
|
assert (idx == 1 || idx == 2);
|
|
|
|
|
if ((aarch64_stack_pointer_p (opnds)
|
|
|
|
|
|| (idx == 2 && aarch64_stack_pointer_p (opnds + 1)))
|
|
|
|
|
&& ((opnd->qualifier == AARCH64_OPND_QLF_W
|
|
|
|
|
&& opnds[0].qualifier == AARCH64_OPND_QLF_W
|
|
|
|
|
&& kind == AARCH64_MOD_UXTW)
|
|
|
|
|
|| (opnd->qualifier == AARCH64_OPND_QLF_X
|
|
|
|
|
&& kind == AARCH64_MOD_UXTX)))
|
|
|
|
|
{
|
|
|
|
|
/* 'LSL' is the preferred form in this case. */
|
|
|
|
|
kind = AARCH64_MOD_LSL;
|
|
|
|
|
if (opnd->shifter.amount == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Shifter omitted. */
|
|
|
|
|
snprintf (buf, size, "%s",
|
|
|
|
|
get_int_reg_name (opnd->reg.regno, opnd->qualifier, 0));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (opnd->shifter.amount)
|
[AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED
Some SVE instructions count the number of elements in a given vector
pattern and allow a scale factor of [1, 16] to be applied to the result.
This scale factor is written ", MUL #n", where "MUL" is a new operator.
E.g.:
UQINCD X0, POW2, MUL #2
This patch adds support for this kind of operand.
All existing operators were shifts of some kind, so there was a natural
range of [0, 63] regardless of context. This was then narrowered further
by later checks (e.g. to [0, 31] when used for 32-bit values).
In contrast, MUL doesn't really have a natural context-independent range.
Rather than pick one arbitrarily, it seemed better to make the "shift"
amount a full 64-bit value and leave the range test to the usual
operand-checking code. I've rearranged the fields of aarch64_opnd_info
so that this doesn't increase the size of the structure (although I don't
think its size is critical anyway).
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_PATTERN_SCALED): New
aarch64_opnd.
(AARCH64_MOD_MUL): New aarch64_modifier_kind.
(aarch64_opnd_info): Make shifter.amount an int64_t and
rearrange the fields.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add an entry for
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc.h (FLD_SVE_imm4): New aarch64_field_kind.
* aarch64-opc.c (fields): Add a corresponding entry.
(set_multiplier_out_of_range_error): New function.
(aarch64_operand_modifiers): Add entry for AARCH64_MOD_MUL.
(operand_general_constraint_met_p): Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
(print_register_offset_address): Use PRIi64 to print the
shift amount.
(aarch64_print_operand): Likewise. Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_scale): New inserter.
* aarch64-asm.c (aarch64_ins_sve_scale): New function.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_scale): New inserter.
* aarch64-dis.c (aarch64_ext_sve_scale): New function.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_MUL): New parse_shift_mode.
(parse_shift): Handle it. Reject AARCH64_MOD_MUL for all other
shift modes. Skip range tests for AARCH64_MOD_MUL.
(process_omitted_operand): Handle AARCH64_OPND_SVE_PATTERN_SCALED.
(parse_operands): Likewise.
2016-09-21 23:55:22 +08:00
|
|
|
|
snprintf (buf, size, "%s, %s #%" PRIi64,
|
2012-08-13 22:52:54 +08:00
|
|
|
|
get_int_reg_name (opnd->reg.regno, opnd->qualifier, 0),
|
|
|
|
|
aarch64_operand_modifiers[kind].name,
|
|
|
|
|
opnd->shifter.amount);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "%s, %s",
|
|
|
|
|
get_int_reg_name (opnd->reg.regno, opnd->qualifier, 0),
|
|
|
|
|
aarch64_operand_modifiers[kind].name);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_Rm_SFT:
|
|
|
|
|
assert (opnd->qualifier == AARCH64_OPND_QLF_W
|
|
|
|
|
|| opnd->qualifier == AARCH64_OPND_QLF_X);
|
|
|
|
|
if (opnd->shifter.amount == 0 && opnd->shifter.kind == AARCH64_MOD_LSL)
|
|
|
|
|
snprintf (buf, size, "%s",
|
|
|
|
|
get_int_reg_name (opnd->reg.regno, opnd->qualifier, 0));
|
|
|
|
|
else
|
[AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED
Some SVE instructions count the number of elements in a given vector
pattern and allow a scale factor of [1, 16] to be applied to the result.
This scale factor is written ", MUL #n", where "MUL" is a new operator.
E.g.:
UQINCD X0, POW2, MUL #2
This patch adds support for this kind of operand.
All existing operators were shifts of some kind, so there was a natural
range of [0, 63] regardless of context. This was then narrowered further
by later checks (e.g. to [0, 31] when used for 32-bit values).
In contrast, MUL doesn't really have a natural context-independent range.
Rather than pick one arbitrarily, it seemed better to make the "shift"
amount a full 64-bit value and leave the range test to the usual
operand-checking code. I've rearranged the fields of aarch64_opnd_info
so that this doesn't increase the size of the structure (although I don't
think its size is critical anyway).
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_PATTERN_SCALED): New
aarch64_opnd.
(AARCH64_MOD_MUL): New aarch64_modifier_kind.
(aarch64_opnd_info): Make shifter.amount an int64_t and
rearrange the fields.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add an entry for
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc.h (FLD_SVE_imm4): New aarch64_field_kind.
* aarch64-opc.c (fields): Add a corresponding entry.
(set_multiplier_out_of_range_error): New function.
(aarch64_operand_modifiers): Add entry for AARCH64_MOD_MUL.
(operand_general_constraint_met_p): Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
(print_register_offset_address): Use PRIi64 to print the
shift amount.
(aarch64_print_operand): Likewise. Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_scale): New inserter.
* aarch64-asm.c (aarch64_ins_sve_scale): New function.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_scale): New inserter.
* aarch64-dis.c (aarch64_ext_sve_scale): New function.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_MUL): New parse_shift_mode.
(parse_shift): Handle it. Reject AARCH64_MOD_MUL for all other
shift modes. Skip range tests for AARCH64_MOD_MUL.
(process_omitted_operand): Handle AARCH64_OPND_SVE_PATTERN_SCALED.
(parse_operands): Likewise.
2016-09-21 23:55:22 +08:00
|
|
|
|
snprintf (buf, size, "%s, %s #%" PRIi64,
|
2012-08-13 22:52:54 +08:00
|
|
|
|
get_int_reg_name (opnd->reg.regno, opnd->qualifier, 0),
|
|
|
|
|
aarch64_operand_modifiers[opnd->shifter.kind].name,
|
|
|
|
|
opnd->shifter.amount);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_Fd:
|
|
|
|
|
case AARCH64_OPND_Fn:
|
|
|
|
|
case AARCH64_OPND_Fm:
|
|
|
|
|
case AARCH64_OPND_Fa:
|
|
|
|
|
case AARCH64_OPND_Ft:
|
|
|
|
|
case AARCH64_OPND_Ft2:
|
|
|
|
|
case AARCH64_OPND_Sd:
|
|
|
|
|
case AARCH64_OPND_Sn:
|
|
|
|
|
case AARCH64_OPND_Sm:
|
2016-09-21 23:57:43 +08:00
|
|
|
|
case AARCH64_OPND_SVE_VZn:
|
|
|
|
|
case AARCH64_OPND_SVE_Vd:
|
|
|
|
|
case AARCH64_OPND_SVE_Vm:
|
|
|
|
|
case AARCH64_OPND_SVE_Vn:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
snprintf (buf, size, "%s%d", aarch64_get_qualifier_name (opnd->qualifier),
|
|
|
|
|
opnd->reg.regno);
|
|
|
|
|
break;
|
|
|
|
|
|
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
gas/
* config/tc-aarch64.c (process_omitted_operand):
Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
and AARCH64_OPND_IMM_2.
(parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
and AARCH64_OPND_ADDR_OFFSET.
include/
* opcode/aarch64.h:
(aarch64_opnd): Add AARCH64_OPND_Va, AARCH64_OPND_MASK,
AARCH64_OPND_IMM_2, AARCH64_OPND_ADDR_OFFSET
and AARCH64_OPND_SM3_IMM2.
(aarch64_insn_class): Add cryptosm3 and cryptosm4.
(arch64_feature_set): Make uint64_t.
opcodes/
* aarch64-asm.h (ins_addr_offset): New.
* aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
(aarch64_ins_addr_offset): New.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_addr_offset): New.
* aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
(aarch64_ext_addr_offset): New.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
* aarch64-opc.c (fields): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
(operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
(aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
* aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
* aarch64-tbl.h
(aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
2017-11-09 23:22:30 +08:00
|
|
|
|
case AARCH64_OPND_Va:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_Vd:
|
|
|
|
|
case AARCH64_OPND_Vn:
|
|
|
|
|
case AARCH64_OPND_Vm:
|
|
|
|
|
snprintf (buf, size, "v%d.%s", opnd->reg.regno,
|
|
|
|
|
aarch64_get_qualifier_name (opnd->qualifier));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_Ed:
|
|
|
|
|
case AARCH64_OPND_En:
|
|
|
|
|
case AARCH64_OPND_Em:
|
Fix AArch64 encodings for by element instructions.
Some instructions in Armv8-a place a limitation on FP16 registers that can be
used as the register from which to select an element from.
e.g. fmla restricts Rm to 4 bits when using an FP16 register. This restriction
does not apply for all instructions, e.g. fcmla does not have this restriction
as it gets an extra bit from the M field.
Unfortunately, this restriction to S_H was added for all _Em operands before,
meaning for a large number of instructions you couldn't use the full register
file.
This fixes the issue by introducing a new operand _Em16 which applies this
restriction only when paired with S_H and leaves the _Em and the other
qualifiers for _Em16 unbounded (i.e. using the full 5 bit range).
Also the patch updates all instructions that should be affected by this.
opcodes/
PR binutils/23192
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Likewise.
* aarch64-opc-2.c: Likewise.
* aarch64-dis.c (aarch64_ext_reglane): Add AARCH64_OPND_Em16 constraint.
* aarch64-opc.c (operand_general_constraint_met_p,
aarch64_print_operand): Likewise.
* aarch64-tbl.h (aarch64_opcode_table): Change Em to Em16 for smlal,
smlal2, fmla, fmls, fmul, fmulx, sqrdmlah, sqrdlsh, fmlal, fmlsl,
fmlal2, fmlsl2.
(AARCH64_OPERANDS): Add Em2.
gas/
PR binutils/23192
* config/tc-aarch64.c (process_omitted_operand, parse_operands): Add
AARCH64_OPND_Em16
* testsuite/gas/aarch64/advsimd-armv8_3.s: Expand tests to cover upper
16 registers.
* testsuite/gas/aarch64/advsimd-armv8_3.d: Likewise.
* testsuite/gas/aarch64/advsimd-compnum.s: Likewise.
* testsuite/gas/aarch64/advsimd-compnum.d: Likewise.
* testsuite/gas/aarch64/sve.d: Likewise.
include/
PR binutils/23192
*opcode/aarch64.h (aarch64_opnd): Add AARCH64_OPND_Em16.
2018-06-29 19:12:27 +08:00
|
|
|
|
case AARCH64_OPND_Em16:
|
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
gas/
* config/tc-aarch64.c (process_omitted_operand):
Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
and AARCH64_OPND_IMM_2.
(parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
and AARCH64_OPND_ADDR_OFFSET.
include/
* opcode/aarch64.h:
(aarch64_opnd): Add AARCH64_OPND_Va, AARCH64_OPND_MASK,
AARCH64_OPND_IMM_2, AARCH64_OPND_ADDR_OFFSET
and AARCH64_OPND_SM3_IMM2.
(aarch64_insn_class): Add cryptosm3 and cryptosm4.
(arch64_feature_set): Make uint64_t.
opcodes/
* aarch64-asm.h (ins_addr_offset): New.
* aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
(aarch64_ins_addr_offset): New.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_addr_offset): New.
* aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
(aarch64_ext_addr_offset): New.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
* aarch64-opc.c (fields): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
(operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
(aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
* aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
* aarch64-tbl.h
(aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
2017-11-09 23:22:30 +08:00
|
|
|
|
case AARCH64_OPND_SM3_IMM2:
|
2016-06-28 16:21:04 +08:00
|
|
|
|
snprintf (buf, size, "v%d.%s[%" PRIi64 "]", opnd->reglane.regno,
|
2012-08-13 22:52:54 +08:00
|
|
|
|
aarch64_get_qualifier_name (opnd->qualifier),
|
|
|
|
|
opnd->reglane.index);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_VdD1:
|
|
|
|
|
case AARCH64_OPND_VnD1:
|
|
|
|
|
snprintf (buf, size, "v%d.d[1]", opnd->reg.regno);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_LVn:
|
|
|
|
|
case AARCH64_OPND_LVt:
|
|
|
|
|
case AARCH64_OPND_LVt_AL:
|
|
|
|
|
case AARCH64_OPND_LEt:
|
2016-09-21 23:51:30 +08:00
|
|
|
|
print_register_list (buf, size, opnd, "v");
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 21/32] Add Zn and Pn registers
This patch adds the Zn and Pn registers, and associated fields and
operands.
include/
* opcode/aarch64.h (AARCH64_OPND_CLASS_SVE_REG): New
aarch64_operand_class.
(AARCH64_OPND_CLASS_PRED_REG): Likewise.
(AARCH64_OPND_SVE_Pd, AARCH64_OPND_SVE_Pg3, AARCH64_OPND_SVE_Pg4_5)
(AARCH64_OPND_SVE_Pg4_10, AARCH64_OPND_SVE_Pg4_16)
(AARCH64_OPND_SVE_Pm, AARCH64_OPND_SVE_Pn, AARCH64_OPND_SVE_Pt)
(AARCH64_OPND_SVE_Za_5, AARCH64_OPND_SVE_Za_16, AARCH64_OPND_SVE_Zd)
(AARCH64_OPND_SVE_Zm_5, AARCH64_OPND_SVE_Zm_16, AARCH64_OPND_SVE_Zn)
(AARCH64_OPND_SVE_Zn_INDEX, AARCH64_OPND_SVE_ZnxN)
(AARCH64_OPND_SVE_Zt, AARCH64_OPND_SVE_ZtxN): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new SVE operands.
* aarch64-opc.h (FLD_SVE_Pd, FLD_SVE_Pg3, FLD_SVE_Pg4_5)
(FLD_SVE_Pg4_10, FLD_SVE_Pg4_16, FLD_SVE_Pm, FLD_SVE_Pn, FLD_SVE_Pt)
(FLD_SVE_Za_5, FLD_SVE_Za_16, FLD_SVE_Zd, FLD_SVE_Zm_5, FLD_SVE_Zm_16)
(FLD_SVE_Zn, FLD_SVE_Zt, FLD_SVE_tzsh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries here.
(operand_general_constraint_met_p): Check that SVE register lists
have the correct length. Check the ranges of SVE index registers.
Check for cases where p8-p15 are used in 3-bit predicate fields.
(aarch64_print_operand): Handle the new SVE operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_index, ins_sve_reglist): New inserters.
* aarch64-asm.c (aarch64_ins_sve_index): New function.
(aarch64_ins_sve_reglist): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_index, ext_sve_reglist): New extractors.
* aarch64-dis.c (aarch64_ext_sve_index): New function.
(aarch64_ext_sve_reglist): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (NTA_HASVARWIDTH): New macro.
(AARCH64_REG_TYPES): Add ZN and PN.
(get_reg_expected_msg): Handle them.
(parse_vector_type_for_operand): Add a reg_type parameter.
Skip the width for Zn and Pn registers.
(parse_typed_reg): Extend vector handling to Zn and Pn. Update the
call to parse_vector_type_for_operand. Set HASVARTYPE for Zn and Pn,
expecting the width to be 0.
(parse_vector_reg_list): Restrict error about [BHSD]nn operands to
REG_TYPE_VN.
(vectype_to_qualifier): Use S_[BHSD] qualifiers for NTA_HASVARWIDTH.
(parse_operands): Handle the new Zn and Pn operands.
(REGSET16): New macro, split out from...
(REGSET31): ...here.
(reg_names): Add Zn and Pn entries.
2016-09-21 23:53:54 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Pd:
|
|
|
|
|
case AARCH64_OPND_SVE_Pg3:
|
|
|
|
|
case AARCH64_OPND_SVE_Pg4_5:
|
|
|
|
|
case AARCH64_OPND_SVE_Pg4_10:
|
|
|
|
|
case AARCH64_OPND_SVE_Pg4_16:
|
|
|
|
|
case AARCH64_OPND_SVE_Pm:
|
|
|
|
|
case AARCH64_OPND_SVE_Pn:
|
|
|
|
|
case AARCH64_OPND_SVE_Pt:
|
|
|
|
|
if (opnd->qualifier == AARCH64_OPND_QLF_NIL)
|
|
|
|
|
snprintf (buf, size, "p%d", opnd->reg.regno);
|
2016-09-21 23:54:30 +08:00
|
|
|
|
else if (opnd->qualifier == AARCH64_OPND_QLF_P_Z
|
|
|
|
|
|| opnd->qualifier == AARCH64_OPND_QLF_P_M)
|
|
|
|
|
snprintf (buf, size, "p%d/%s", opnd->reg.regno,
|
|
|
|
|
aarch64_get_qualifier_name (opnd->qualifier));
|
[AArch64][SVE 21/32] Add Zn and Pn registers
This patch adds the Zn and Pn registers, and associated fields and
operands.
include/
* opcode/aarch64.h (AARCH64_OPND_CLASS_SVE_REG): New
aarch64_operand_class.
(AARCH64_OPND_CLASS_PRED_REG): Likewise.
(AARCH64_OPND_SVE_Pd, AARCH64_OPND_SVE_Pg3, AARCH64_OPND_SVE_Pg4_5)
(AARCH64_OPND_SVE_Pg4_10, AARCH64_OPND_SVE_Pg4_16)
(AARCH64_OPND_SVE_Pm, AARCH64_OPND_SVE_Pn, AARCH64_OPND_SVE_Pt)
(AARCH64_OPND_SVE_Za_5, AARCH64_OPND_SVE_Za_16, AARCH64_OPND_SVE_Zd)
(AARCH64_OPND_SVE_Zm_5, AARCH64_OPND_SVE_Zm_16, AARCH64_OPND_SVE_Zn)
(AARCH64_OPND_SVE_Zn_INDEX, AARCH64_OPND_SVE_ZnxN)
(AARCH64_OPND_SVE_Zt, AARCH64_OPND_SVE_ZtxN): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new SVE operands.
* aarch64-opc.h (FLD_SVE_Pd, FLD_SVE_Pg3, FLD_SVE_Pg4_5)
(FLD_SVE_Pg4_10, FLD_SVE_Pg4_16, FLD_SVE_Pm, FLD_SVE_Pn, FLD_SVE_Pt)
(FLD_SVE_Za_5, FLD_SVE_Za_16, FLD_SVE_Zd, FLD_SVE_Zm_5, FLD_SVE_Zm_16)
(FLD_SVE_Zn, FLD_SVE_Zt, FLD_SVE_tzsh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries here.
(operand_general_constraint_met_p): Check that SVE register lists
have the correct length. Check the ranges of SVE index registers.
Check for cases where p8-p15 are used in 3-bit predicate fields.
(aarch64_print_operand): Handle the new SVE operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_index, ins_sve_reglist): New inserters.
* aarch64-asm.c (aarch64_ins_sve_index): New function.
(aarch64_ins_sve_reglist): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_index, ext_sve_reglist): New extractors.
* aarch64-dis.c (aarch64_ext_sve_index): New function.
(aarch64_ext_sve_reglist): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (NTA_HASVARWIDTH): New macro.
(AARCH64_REG_TYPES): Add ZN and PN.
(get_reg_expected_msg): Handle them.
(parse_vector_type_for_operand): Add a reg_type parameter.
Skip the width for Zn and Pn registers.
(parse_typed_reg): Extend vector handling to Zn and Pn. Update the
call to parse_vector_type_for_operand. Set HASVARTYPE for Zn and Pn,
expecting the width to be 0.
(parse_vector_reg_list): Restrict error about [BHSD]nn operands to
REG_TYPE_VN.
(vectype_to_qualifier): Use S_[BHSD] qualifiers for NTA_HASVARWIDTH.
(parse_operands): Handle the new Zn and Pn operands.
(REGSET16): New macro, split out from...
(REGSET31): ...here.
(reg_names): Add Zn and Pn entries.
2016-09-21 23:53:54 +08:00
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "p%d.%s", opnd->reg.regno,
|
|
|
|
|
aarch64_get_qualifier_name (opnd->qualifier));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_Za_5:
|
|
|
|
|
case AARCH64_OPND_SVE_Za_16:
|
|
|
|
|
case AARCH64_OPND_SVE_Zd:
|
|
|
|
|
case AARCH64_OPND_SVE_Zm_5:
|
|
|
|
|
case AARCH64_OPND_SVE_Zm_16:
|
|
|
|
|
case AARCH64_OPND_SVE_Zn:
|
|
|
|
|
case AARCH64_OPND_SVE_Zt:
|
|
|
|
|
if (opnd->qualifier == AARCH64_OPND_QLF_NIL)
|
|
|
|
|
snprintf (buf, size, "z%d", opnd->reg.regno);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "z%d.%s", opnd->reg.regno,
|
|
|
|
|
aarch64_get_qualifier_name (opnd->qualifier));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ZnxN:
|
|
|
|
|
case AARCH64_OPND_SVE_ZtxN:
|
|
|
|
|
print_register_list (buf, size, opnd, "z");
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zm3_INDEX:
|
|
|
|
|
case AARCH64_OPND_SVE_Zm3_22_INDEX:
|
2019-05-09 17:29:17 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zm3_11_INDEX:
|
2019-05-09 17:29:24 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zm4_11_INDEX:
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zm4_INDEX:
|
[AArch64][SVE 21/32] Add Zn and Pn registers
This patch adds the Zn and Pn registers, and associated fields and
operands.
include/
* opcode/aarch64.h (AARCH64_OPND_CLASS_SVE_REG): New
aarch64_operand_class.
(AARCH64_OPND_CLASS_PRED_REG): Likewise.
(AARCH64_OPND_SVE_Pd, AARCH64_OPND_SVE_Pg3, AARCH64_OPND_SVE_Pg4_5)
(AARCH64_OPND_SVE_Pg4_10, AARCH64_OPND_SVE_Pg4_16)
(AARCH64_OPND_SVE_Pm, AARCH64_OPND_SVE_Pn, AARCH64_OPND_SVE_Pt)
(AARCH64_OPND_SVE_Za_5, AARCH64_OPND_SVE_Za_16, AARCH64_OPND_SVE_Zd)
(AARCH64_OPND_SVE_Zm_5, AARCH64_OPND_SVE_Zm_16, AARCH64_OPND_SVE_Zn)
(AARCH64_OPND_SVE_Zn_INDEX, AARCH64_OPND_SVE_ZnxN)
(AARCH64_OPND_SVE_Zt, AARCH64_OPND_SVE_ZtxN): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new SVE operands.
* aarch64-opc.h (FLD_SVE_Pd, FLD_SVE_Pg3, FLD_SVE_Pg4_5)
(FLD_SVE_Pg4_10, FLD_SVE_Pg4_16, FLD_SVE_Pm, FLD_SVE_Pn, FLD_SVE_Pt)
(FLD_SVE_Za_5, FLD_SVE_Za_16, FLD_SVE_Zd, FLD_SVE_Zm_5, FLD_SVE_Zm_16)
(FLD_SVE_Zn, FLD_SVE_Zt, FLD_SVE_tzsh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries here.
(operand_general_constraint_met_p): Check that SVE register lists
have the correct length. Check the ranges of SVE index registers.
Check for cases where p8-p15 are used in 3-bit predicate fields.
(aarch64_print_operand): Handle the new SVE operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_index, ins_sve_reglist): New inserters.
* aarch64-asm.c (aarch64_ins_sve_index): New function.
(aarch64_ins_sve_reglist): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_index, ext_sve_reglist): New extractors.
* aarch64-dis.c (aarch64_ext_sve_index): New function.
(aarch64_ext_sve_reglist): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (NTA_HASVARWIDTH): New macro.
(AARCH64_REG_TYPES): Add ZN and PN.
(get_reg_expected_msg): Handle them.
(parse_vector_type_for_operand): Add a reg_type parameter.
Skip the width for Zn and Pn registers.
(parse_typed_reg): Extend vector handling to Zn and Pn. Update the
call to parse_vector_type_for_operand. Set HASVARTYPE for Zn and Pn,
expecting the width to be 0.
(parse_vector_reg_list): Restrict error about [BHSD]nn operands to
REG_TYPE_VN.
(vectype_to_qualifier): Use S_[BHSD] qualifiers for NTA_HASVARWIDTH.
(parse_operands): Handle the new Zn and Pn operands.
(REGSET16): New macro, split out from...
(REGSET31): ...here.
(reg_names): Add Zn and Pn entries.
2016-09-21 23:53:54 +08:00
|
|
|
|
case AARCH64_OPND_SVE_Zn_INDEX:
|
|
|
|
|
snprintf (buf, size, "z%d.%s[%" PRIi64 "]", opnd->reglane.regno,
|
|
|
|
|
aarch64_get_qualifier_name (opnd->qualifier),
|
|
|
|
|
opnd->reglane.index);
|
|
|
|
|
break;
|
|
|
|
|
|
2016-12-13 20:37:18 +08:00
|
|
|
|
case AARCH64_OPND_CRn:
|
|
|
|
|
case AARCH64_OPND_CRm:
|
|
|
|
|
snprintf (buf, size, "C%" PRIi64, opnd->imm.value);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_IDX:
|
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
gas/
* config/tc-aarch64.c (process_omitted_operand):
Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
and AARCH64_OPND_IMM_2.
(parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
and AARCH64_OPND_ADDR_OFFSET.
include/
* opcode/aarch64.h:
(aarch64_opnd): Add AARCH64_OPND_Va, AARCH64_OPND_MASK,
AARCH64_OPND_IMM_2, AARCH64_OPND_ADDR_OFFSET
and AARCH64_OPND_SM3_IMM2.
(aarch64_insn_class): Add cryptosm3 and cryptosm4.
(arch64_feature_set): Make uint64_t.
opcodes/
* aarch64-asm.h (ins_addr_offset): New.
* aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
(aarch64_ins_addr_offset): New.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_addr_offset): New.
* aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
(aarch64_ext_addr_offset): New.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
* aarch64-opc.c (fields): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
(operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
(aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
* aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
* aarch64-tbl.h
(aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
2017-11-09 23:22:30 +08:00
|
|
|
|
case AARCH64_OPND_MASK:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_IMM:
|
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
gas/
* config/tc-aarch64.c (process_omitted_operand):
Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
and AARCH64_OPND_IMM_2.
(parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
and AARCH64_OPND_ADDR_OFFSET.
include/
* opcode/aarch64.h:
(aarch64_opnd): Add AARCH64_OPND_Va, AARCH64_OPND_MASK,
AARCH64_OPND_IMM_2, AARCH64_OPND_ADDR_OFFSET
and AARCH64_OPND_SM3_IMM2.
(aarch64_insn_class): Add cryptosm3 and cryptosm4.
(arch64_feature_set): Make uint64_t.
opcodes/
* aarch64-asm.h (ins_addr_offset): New.
* aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
(aarch64_ins_addr_offset): New.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_addr_offset): New.
* aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
(aarch64_ext_addr_offset): New.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
* aarch64-opc.c (fields): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
(operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
(aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
* aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
* aarch64-tbl.h
(aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
2017-11-09 23:22:30 +08:00
|
|
|
|
case AARCH64_OPND_IMM_2:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_WIDTH:
|
|
|
|
|
case AARCH64_OPND_UIMM3_OP1:
|
|
|
|
|
case AARCH64_OPND_UIMM3_OP2:
|
|
|
|
|
case AARCH64_OPND_BIT_NUM:
|
|
|
|
|
case AARCH64_OPND_IMM_VLSL:
|
|
|
|
|
case AARCH64_OPND_IMM_VLSR:
|
|
|
|
|
case AARCH64_OPND_SHLL_IMM:
|
|
|
|
|
case AARCH64_OPND_IMM0:
|
|
|
|
|
case AARCH64_OPND_IMMR:
|
|
|
|
|
case AARCH64_OPND_IMMS:
|
|
|
|
|
case AARCH64_OPND_FBITS:
|
2019-05-02 00:14:01 +08:00
|
|
|
|
case AARCH64_OPND_TME_UIMM16:
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SIMM5:
|
|
|
|
|
case AARCH64_OPND_SVE_SHLIMM_PRED:
|
|
|
|
|
case AARCH64_OPND_SVE_SHLIMM_UNPRED:
|
2019-05-09 17:29:27 +08:00
|
|
|
|
case AARCH64_OPND_SVE_SHLIMM_UNPRED_22:
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SVE_SHRIMM_PRED:
|
|
|
|
|
case AARCH64_OPND_SVE_SHRIMM_UNPRED:
|
2019-05-09 17:29:22 +08:00
|
|
|
|
case AARCH64_OPND_SVE_SHRIMM_UNPRED_22:
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SVE_SIMM5:
|
|
|
|
|
case AARCH64_OPND_SVE_SIMM5B:
|
|
|
|
|
case AARCH64_OPND_SVE_SIMM6:
|
|
|
|
|
case AARCH64_OPND_SVE_SIMM8:
|
|
|
|
|
case AARCH64_OPND_SVE_UIMM3:
|
|
|
|
|
case AARCH64_OPND_SVE_UIMM7:
|
|
|
|
|
case AARCH64_OPND_SVE_UIMM8:
|
|
|
|
|
case AARCH64_OPND_SVE_UIMM8_53:
|
[AArch64] Add ARMv8.3 FCMLA and FCADD instructions
Add support for FCMLA and FCADD complex arithmetic SIMD instructions.
FCMLA has an indexed element variant where the index range has to be
treated specially because a complex number takes two elements and the
indexed vector size depends on the other operands.
These complex number SIMD instructions are part of ARMv8.3
https://community.arm.com/groups/processors/blog/2016/10/27/armv8-a-architecture-2016-additions
include/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* opcode/aarch64.h (enum aarch64_opnd): Add AARCH64_OPND_IMM_ROT1,
AARCH64_OPND_IMM_ROT2, AARCH64_OPND_IMM_ROT3.
(enum aarch64_op): Add OP_FCMLA_ELEM.
opcodes/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* aarch64-tbl.h (QL_V3SAMEHSD_ROT, QL_ELEMENT_ROT): Define.
(aarch64_feature_simd_v8_3, SIMD_V8_3): Define.
(aarch64_opcode_table): Add fcmla and fcadd.
(AARCH64_OPERANDS): Add IMM_ROT{1,2,3}.
* aarch64-asm.h (aarch64_ins_imm_rotate): Declare.
* aarch64-asm.c (aarch64_ins_imm_rotate): Define.
* aarch64-dis.h (aarch64_ext_imm_rotate): Declare.
* aarch64-dis.c (aarch64_ext_imm_rotate): Define.
* aarch64-opc.h (enum aarch64_field_kind): Add FLD_rotate{1,2,3}.
* aarch64-opc.c (fields): Add FLD_rotate{1,2,3}.
(operand_general_constraint_met_p): Rotate and index range check.
(aarch64_print_operand): Handle rotate operand.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Likewise.
* aarch64-opc-2.c: Likewise.
gas/
2016-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
* config/tc-aarch64.c (parse_operands): Handle AARCH64_OPND_IMM_ROT*.
* testsuite/gas/aarch64/advsimd-armv8_3.d: New.
* testsuite/gas/aarch64/advsimd-armv8_3.s: New.
* testsuite/gas/aarch64/illegal-fcmla.s: New.
* testsuite/gas/aarch64/illegal-fcmla.l: New.
* testsuite/gas/aarch64/illegal-fcmla.d: New.
2016-11-18 18:02:16 +08:00
|
|
|
|
case AARCH64_OPND_IMM_ROT1:
|
|
|
|
|
case AARCH64_OPND_IMM_ROT2:
|
|
|
|
|
case AARCH64_OPND_IMM_ROT3:
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
case AARCH64_OPND_SVE_IMM_ROT1:
|
|
|
|
|
case AARCH64_OPND_SVE_IMM_ROT2:
|
2019-05-09 17:29:15 +08:00
|
|
|
|
case AARCH64_OPND_SVE_IMM_ROT3:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
snprintf (buf, size, "#%" PRIi64, opnd->imm.value);
|
|
|
|
|
break;
|
|
|
|
|
|
2016-09-21 23:57:22 +08:00
|
|
|
|
case AARCH64_OPND_SVE_I1_HALF_ONE:
|
|
|
|
|
case AARCH64_OPND_SVE_I1_HALF_TWO:
|
|
|
|
|
case AARCH64_OPND_SVE_I1_ZERO_ONE:
|
|
|
|
|
{
|
|
|
|
|
single_conv_t c;
|
|
|
|
|
c.i = opnd->imm.value;
|
|
|
|
|
snprintf (buf, size, "#%.1f", c.f);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-21 23:54:53 +08:00
|
|
|
|
case AARCH64_OPND_SVE_PATTERN:
|
|
|
|
|
if (optional_operand_p (opcode, idx)
|
|
|
|
|
&& opnd->imm.value == get_optional_operand_default_value (opcode))
|
|
|
|
|
break;
|
|
|
|
|
enum_value = opnd->imm.value;
|
|
|
|
|
assert (enum_value < ARRAY_SIZE (aarch64_sve_pattern_array));
|
|
|
|
|
if (aarch64_sve_pattern_array[enum_value])
|
|
|
|
|
snprintf (buf, size, "%s", aarch64_sve_pattern_array[enum_value]);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "#%" PRIi64, opnd->imm.value);
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED
Some SVE instructions count the number of elements in a given vector
pattern and allow a scale factor of [1, 16] to be applied to the result.
This scale factor is written ", MUL #n", where "MUL" is a new operator.
E.g.:
UQINCD X0, POW2, MUL #2
This patch adds support for this kind of operand.
All existing operators were shifts of some kind, so there was a natural
range of [0, 63] regardless of context. This was then narrowered further
by later checks (e.g. to [0, 31] when used for 32-bit values).
In contrast, MUL doesn't really have a natural context-independent range.
Rather than pick one arbitrarily, it seemed better to make the "shift"
amount a full 64-bit value and leave the range test to the usual
operand-checking code. I've rearranged the fields of aarch64_opnd_info
so that this doesn't increase the size of the structure (although I don't
think its size is critical anyway).
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_PATTERN_SCALED): New
aarch64_opnd.
(AARCH64_MOD_MUL): New aarch64_modifier_kind.
(aarch64_opnd_info): Make shifter.amount an int64_t and
rearrange the fields.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add an entry for
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc.h (FLD_SVE_imm4): New aarch64_field_kind.
* aarch64-opc.c (fields): Add a corresponding entry.
(set_multiplier_out_of_range_error): New function.
(aarch64_operand_modifiers): Add entry for AARCH64_MOD_MUL.
(operand_general_constraint_met_p): Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
(print_register_offset_address): Use PRIi64 to print the
shift amount.
(aarch64_print_operand): Likewise. Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_scale): New inserter.
* aarch64-asm.c (aarch64_ins_sve_scale): New function.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_scale): New inserter.
* aarch64-dis.c (aarch64_ext_sve_scale): New function.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_MUL): New parse_shift_mode.
(parse_shift): Handle it. Reject AARCH64_MOD_MUL for all other
shift modes. Skip range tests for AARCH64_MOD_MUL.
(process_omitted_operand): Handle AARCH64_OPND_SVE_PATTERN_SCALED.
(parse_operands): Likewise.
2016-09-21 23:55:22 +08:00
|
|
|
|
case AARCH64_OPND_SVE_PATTERN_SCALED:
|
|
|
|
|
if (optional_operand_p (opcode, idx)
|
|
|
|
|
&& !opnd->shifter.operator_present
|
|
|
|
|
&& opnd->imm.value == get_optional_operand_default_value (opcode))
|
|
|
|
|
break;
|
|
|
|
|
enum_value = opnd->imm.value;
|
|
|
|
|
assert (enum_value < ARRAY_SIZE (aarch64_sve_pattern_array));
|
|
|
|
|
if (aarch64_sve_pattern_array[opnd->imm.value])
|
|
|
|
|
snprintf (buf, size, "%s", aarch64_sve_pattern_array[opnd->imm.value]);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "#%" PRIi64, opnd->imm.value);
|
|
|
|
|
if (opnd->shifter.operator_present)
|
|
|
|
|
{
|
|
|
|
|
size_t len = strlen (buf);
|
|
|
|
|
snprintf (buf + len, size - len, ", %s #%" PRIi64,
|
|
|
|
|
aarch64_operand_modifiers[opnd->shifter.kind].name,
|
|
|
|
|
opnd->shifter.amount);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2016-09-21 23:54:53 +08:00
|
|
|
|
case AARCH64_OPND_SVE_PRFOP:
|
|
|
|
|
enum_value = opnd->imm.value;
|
|
|
|
|
assert (enum_value < ARRAY_SIZE (aarch64_sve_prfop_array));
|
|
|
|
|
if (aarch64_sve_prfop_array[enum_value])
|
|
|
|
|
snprintf (buf, size, "%s", aarch64_sve_prfop_array[enum_value]);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "#%" PRIi64, opnd->imm.value);
|
|
|
|
|
break;
|
|
|
|
|
|
2013-01-04 22:59:33 +08:00
|
|
|
|
case AARCH64_OPND_IMM_MOV:
|
|
|
|
|
switch (aarch64_get_qualifier_esize (opnds[0].qualifier))
|
|
|
|
|
{
|
|
|
|
|
case 4: /* e.g. MOV Wd, #<imm32>. */
|
|
|
|
|
{
|
|
|
|
|
int imm32 = opnd->imm.value;
|
|
|
|
|
snprintf (buf, size, "#0x%-20x\t// #%d", imm32, imm32);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 8: /* e.g. MOV Xd, #<imm64>. */
|
|
|
|
|
snprintf (buf, size, "#0x%-20" PRIx64 "\t// #%" PRIi64,
|
|
|
|
|
opnd->imm.value, opnd->imm.value);
|
|
|
|
|
break;
|
|
|
|
|
default: assert (0);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_FPIMM0:
|
|
|
|
|
snprintf (buf, size, "#0.0");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_LIMM:
|
|
|
|
|
case AARCH64_OPND_AIMM:
|
|
|
|
|
case AARCH64_OPND_HALF:
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SVE_INV_LIMM:
|
|
|
|
|
case AARCH64_OPND_SVE_LIMM:
|
|
|
|
|
case AARCH64_OPND_SVE_LIMM_MOV:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
if (opnd->shifter.amount)
|
[AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED
Some SVE instructions count the number of elements in a given vector
pattern and allow a scale factor of [1, 16] to be applied to the result.
This scale factor is written ", MUL #n", where "MUL" is a new operator.
E.g.:
UQINCD X0, POW2, MUL #2
This patch adds support for this kind of operand.
All existing operators were shifts of some kind, so there was a natural
range of [0, 63] regardless of context. This was then narrowered further
by later checks (e.g. to [0, 31] when used for 32-bit values).
In contrast, MUL doesn't really have a natural context-independent range.
Rather than pick one arbitrarily, it seemed better to make the "shift"
amount a full 64-bit value and leave the range test to the usual
operand-checking code. I've rearranged the fields of aarch64_opnd_info
so that this doesn't increase the size of the structure (although I don't
think its size is critical anyway).
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_PATTERN_SCALED): New
aarch64_opnd.
(AARCH64_MOD_MUL): New aarch64_modifier_kind.
(aarch64_opnd_info): Make shifter.amount an int64_t and
rearrange the fields.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add an entry for
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc.h (FLD_SVE_imm4): New aarch64_field_kind.
* aarch64-opc.c (fields): Add a corresponding entry.
(set_multiplier_out_of_range_error): New function.
(aarch64_operand_modifiers): Add entry for AARCH64_MOD_MUL.
(operand_general_constraint_met_p): Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
(print_register_offset_address): Use PRIi64 to print the
shift amount.
(aarch64_print_operand): Likewise. Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_scale): New inserter.
* aarch64-asm.c (aarch64_ins_sve_scale): New function.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_scale): New inserter.
* aarch64-dis.c (aarch64_ext_sve_scale): New function.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_MUL): New parse_shift_mode.
(parse_shift): Handle it. Reject AARCH64_MOD_MUL for all other
shift modes. Skip range tests for AARCH64_MOD_MUL.
(process_omitted_operand): Handle AARCH64_OPND_SVE_PATTERN_SCALED.
(parse_operands): Likewise.
2016-09-21 23:55:22 +08:00
|
|
|
|
snprintf (buf, size, "#0x%" PRIx64 ", lsl #%" PRIi64, opnd->imm.value,
|
2012-08-13 22:52:54 +08:00
|
|
|
|
opnd->shifter.amount);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "#0x%" PRIx64, opnd->imm.value);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SIMD_IMM:
|
|
|
|
|
case AARCH64_OPND_SIMD_IMM_SFT:
|
|
|
|
|
if ((! opnd->shifter.amount && opnd->shifter.kind == AARCH64_MOD_LSL)
|
|
|
|
|
|| opnd->shifter.kind == AARCH64_MOD_NONE)
|
|
|
|
|
snprintf (buf, size, "#0x%" PRIx64, opnd->imm.value);
|
|
|
|
|
else
|
[AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED
Some SVE instructions count the number of elements in a given vector
pattern and allow a scale factor of [1, 16] to be applied to the result.
This scale factor is written ", MUL #n", where "MUL" is a new operator.
E.g.:
UQINCD X0, POW2, MUL #2
This patch adds support for this kind of operand.
All existing operators were shifts of some kind, so there was a natural
range of [0, 63] regardless of context. This was then narrowered further
by later checks (e.g. to [0, 31] when used for 32-bit values).
In contrast, MUL doesn't really have a natural context-independent range.
Rather than pick one arbitrarily, it seemed better to make the "shift"
amount a full 64-bit value and leave the range test to the usual
operand-checking code. I've rearranged the fields of aarch64_opnd_info
so that this doesn't increase the size of the structure (although I don't
think its size is critical anyway).
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_PATTERN_SCALED): New
aarch64_opnd.
(AARCH64_MOD_MUL): New aarch64_modifier_kind.
(aarch64_opnd_info): Make shifter.amount an int64_t and
rearrange the fields.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add an entry for
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc.h (FLD_SVE_imm4): New aarch64_field_kind.
* aarch64-opc.c (fields): Add a corresponding entry.
(set_multiplier_out_of_range_error): New function.
(aarch64_operand_modifiers): Add entry for AARCH64_MOD_MUL.
(operand_general_constraint_met_p): Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
(print_register_offset_address): Use PRIi64 to print the
shift amount.
(aarch64_print_operand): Likewise. Handle
AARCH64_OPND_SVE_PATTERN_SCALED.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_scale): New inserter.
* aarch64-asm.c (aarch64_ins_sve_scale): New function.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_scale): New inserter.
* aarch64-dis.c (aarch64_ext_sve_scale): New function.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_MUL): New parse_shift_mode.
(parse_shift): Handle it. Reject AARCH64_MOD_MUL for all other
shift modes. Skip range tests for AARCH64_MOD_MUL.
(process_omitted_operand): Handle AARCH64_OPND_SVE_PATTERN_SCALED.
(parse_operands): Likewise.
2016-09-21 23:55:22 +08:00
|
|
|
|
snprintf (buf, size, "#0x%" PRIx64 ", %s #%" PRIi64, opnd->imm.value,
|
2012-08-13 22:52:54 +08:00
|
|
|
|
aarch64_operand_modifiers[opnd->shifter.kind].name,
|
|
|
|
|
opnd->shifter.amount);
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
case AARCH64_OPND_SVE_AIMM:
|
|
|
|
|
case AARCH64_OPND_SVE_ASIMM:
|
|
|
|
|
if (opnd->shifter.amount)
|
|
|
|
|
snprintf (buf, size, "#%" PRIi64 ", lsl #%" PRIi64, opnd->imm.value,
|
|
|
|
|
opnd->shifter.amount);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "#%" PRIi64, opnd->imm.value);
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_FPIMM:
|
|
|
|
|
case AARCH64_OPND_SIMD_FPIMM:
|
2016-09-21 23:57:22 +08:00
|
|
|
|
case AARCH64_OPND_SVE_FPIMM8:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
switch (aarch64_get_qualifier_esize (opnds[0].qualifier))
|
|
|
|
|
{
|
2015-11-28 00:25:52 +08:00
|
|
|
|
case 2: /* e.g. FMOV <Hd>, #<imm>. */
|
|
|
|
|
{
|
|
|
|
|
half_conv_t c;
|
|
|
|
|
c.i = expand_fp_imm (2, opnd->imm.value);
|
|
|
|
|
snprintf (buf, size, "#%.18e", c.f);
|
|
|
|
|
}
|
|
|
|
|
break;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case 4: /* e.g. FMOV <Vd>.4S, #<imm>. */
|
|
|
|
|
{
|
|
|
|
|
single_conv_t c;
|
2015-11-28 00:25:52 +08:00
|
|
|
|
c.i = expand_fp_imm (4, opnd->imm.value);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
snprintf (buf, size, "#%.18e", c.f);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 8: /* e.g. FMOV <Sd>, #<imm>. */
|
|
|
|
|
{
|
|
|
|
|
double_conv_t c;
|
2015-11-28 00:25:52 +08:00
|
|
|
|
c.i = expand_fp_imm (8, opnd->imm.value);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
snprintf (buf, size, "#%.18e", c.d);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default: assert (0);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_CCMP_IMM:
|
|
|
|
|
case AARCH64_OPND_NZCV:
|
|
|
|
|
case AARCH64_OPND_EXCEPTION:
|
|
|
|
|
case AARCH64_OPND_UIMM4:
|
[BINUTILS, AARCH64, 2/8] Add Tag generation instructions in Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch add support to the Tag generation instructions from
MTE. These are the following instructions added in this patch:
- IRG <Xd|SP>, <Xn|SP>{, Xm}
- ADDG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- SUBG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- GMI <Xd>, <Xn|SP>, <Xm>
where
<Xd|SP> : Is the 64-bit destination GPR or Stack pointer.
<Xn|SP> : Is the 64-bit source GPR or Stack pointer.
<uimm6> : Is the unsigned immediate, a multiple of 16
in the range 0 to 1008.
<uimm4> : Is the unsigned immediate, in the range 0 to 15.
*** include/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (aarch64_opnd): Add
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10 as new enums.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.h (aarch64_field_kind): New FLD_imm4_3.
(OPD_F_SHIFT_BY_4, operand_need_shift_by_four): New.
* aarch64-opc.c (fields): Add entry for imm4_3.
(operand_general_constraint_met_p): Add cases for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
(aarch64_print_operand): Likewise.
* aarch64-tbl.h (QL_ADDG): New.
(aarch64_opcode_table): Add addg, subg, irg and gmi.
(AARCH64_OPERANDS): Define UIMM4_ADDG and UIMM10.
* aarch64-asm.c (aarch64_ins_imm): Add case for
operand_need_shift_by_four.
* aarch64-asm-2.c: Regenerated.
* aarch64-dis-2.c: Regenerated.
* aarch64-opc-2.c: Regenerated.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_operands): Add switch case for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
* testsuite/gas/aarch64/armv8_5-a-memtag.s: New.
* testsuite/gas/aarch64/armv8_5-a-memtag.d: Likewise.
* testsuite/gas/aarch64/illegal-memtag.s: Likewise.
* testsuite/gas/aarch64/illegal-memtag.l: Likewise.
* testsuite/gas/aarch64/illegal-memtag.d: Likewise.
2018-11-12 20:52:55 +08:00
|
|
|
|
case AARCH64_OPND_UIMM4_ADDG:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_UIMM7:
|
[BINUTILS, AARCH64, 2/8] Add Tag generation instructions in Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch add support to the Tag generation instructions from
MTE. These are the following instructions added in this patch:
- IRG <Xd|SP>, <Xn|SP>{, Xm}
- ADDG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- SUBG <Xd|SP>, <Xn|SP>, #<uimm1>. #<uimm2>
- GMI <Xd>, <Xn|SP>, <Xm>
where
<Xd|SP> : Is the 64-bit destination GPR or Stack pointer.
<Xn|SP> : Is the 64-bit source GPR or Stack pointer.
<uimm6> : Is the unsigned immediate, a multiple of 16
in the range 0 to 1008.
<uimm4> : Is the unsigned immediate, in the range 0 to 15.
*** include/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (aarch64_opnd): Add
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10 as new enums.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.h (aarch64_field_kind): New FLD_imm4_3.
(OPD_F_SHIFT_BY_4, operand_need_shift_by_four): New.
* aarch64-opc.c (fields): Add entry for imm4_3.
(operand_general_constraint_met_p): Add cases for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
(aarch64_print_operand): Likewise.
* aarch64-tbl.h (QL_ADDG): New.
(aarch64_opcode_table): Add addg, subg, irg and gmi.
(AARCH64_OPERANDS): Define UIMM4_ADDG and UIMM10.
* aarch64-asm.c (aarch64_ins_imm): Add case for
operand_need_shift_by_four.
* aarch64-asm-2.c: Regenerated.
* aarch64-dis-2.c: Regenerated.
* aarch64-opc-2.c: Regenerated.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_operands): Add switch case for
AARCH64_OPND_UIMM4_ADDG and AARCH64_OPND_UIMM10.
* testsuite/gas/aarch64/armv8_5-a-memtag.s: New.
* testsuite/gas/aarch64/armv8_5-a-memtag.d: Likewise.
* testsuite/gas/aarch64/illegal-memtag.s: Likewise.
* testsuite/gas/aarch64/illegal-memtag.l: Likewise.
* testsuite/gas/aarch64/illegal-memtag.d: Likewise.
2018-11-12 20:52:55 +08:00
|
|
|
|
case AARCH64_OPND_UIMM10:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
if (optional_operand_p (opcode, idx) == TRUE
|
|
|
|
|
&& (opnd->imm.value ==
|
|
|
|
|
(int64_t) get_optional_operand_default_value (opcode)))
|
|
|
|
|
/* Omit the operand, e.g. DCPS1. */
|
|
|
|
|
break;
|
|
|
|
|
snprintf (buf, size, "#0x%x", (unsigned int)opnd->imm.value);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_COND:
|
2013-11-06 04:50:18 +08:00
|
|
|
|
case AARCH64_OPND_COND1:
|
2012-08-13 22:52:54 +08:00
|
|
|
|
snprintf (buf, size, "%s", opnd->cond->names[0]);
|
[AArch64] Add SVE condition codes
SVE defines new names for existing NZCV conditions, to reflect the
result of instructions like PTEST. This patch adds support for these
names.
The patch also adds comments to the disassembly output to show the
alternative names of a condition code. For example:
cinv x0, x1, cc
becomes:
cinv x0, x1, cc // cc = lo, ul, last
and:
b.cc f0 <...>
becomes:
b.cc f0 <...> // b.lo, b.ul, b.last
Doing this for the SVE names follows the practice recommended by the
SVE specification and is definitely useful when reading SVE code.
If the feeling is that it's too distracting elsewhere, we could add
an option to turn it off.
include/
* opcode/aarch64.h (aarch64_cond): Bump array size to 4.
opcodes/
* aarch64-dis.c (remove_dot_suffix): New function, split out from...
(print_mnemonic_name): ...here.
(print_comment): New function.
(print_aarch64_insn): Call it.
* aarch64-opc.c (aarch64_conds): Add SVE names.
(aarch64_print_operand): Print alternative condition names in
a comment.
gas/
* config/tc-aarch64.c (opcode_lookup): Search for the end of
a condition name, rather than assuming that it will have exactly
2 characters.
(parse_operands): Likewise.
* testsuite/gas/aarch64/alias.d: Add new condition-code comments
to the expected output.
* testsuite/gas/aarch64/beq_1.d: Likewise.
* testsuite/gas/aarch64/float-fp16.d: Likewise.
* testsuite/gas/aarch64/int-insns.d: Likewise.
* testsuite/gas/aarch64/no-aliases.d: Likewise.
* testsuite/gas/aarch64/programmer-friendly.d: Likewise.
* testsuite/gas/aarch64/reloc-insn.d: Likewise.
* testsuite/gas/aarch64/b_c_1.d, testsuite/gas/aarch64/b_c_1.s:
New test.
ld/
* testsuite/ld-aarch64/emit-relocs-280.d: Match branch comments.
* testsuite/ld-aarch64/weak-undefined.d: Likewise.
2016-09-22 00:09:59 +08:00
|
|
|
|
num_conds = ARRAY_SIZE (opnd->cond->names);
|
|
|
|
|
for (i = 1; i < num_conds && opnd->cond->names[i]; ++i)
|
|
|
|
|
{
|
|
|
|
|
size_t len = strlen (buf);
|
|
|
|
|
if (i == 1)
|
|
|
|
|
snprintf (buf + len, size - len, " // %s = %s",
|
|
|
|
|
opnd->cond->names[0], opnd->cond->names[i]);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf + len, size - len, ", %s",
|
|
|
|
|
opnd->cond->names[i]);
|
|
|
|
|
}
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_ADDR_ADRP:
|
|
|
|
|
addr = ((pc + AARCH64_PCREL_OFFSET) & ~(uint64_t)0xfff)
|
|
|
|
|
+ opnd->imm.value;
|
|
|
|
|
if (pcrel_p)
|
|
|
|
|
*pcrel_p = 1;
|
|
|
|
|
if (address)
|
|
|
|
|
*address = addr;
|
|
|
|
|
/* This is not necessary during the disassembling, as print_address_func
|
|
|
|
|
in the disassemble_info will take care of the printing. But some
|
|
|
|
|
other callers may be still interested in getting the string in *STR,
|
|
|
|
|
so here we do snprintf regardless. */
|
|
|
|
|
snprintf (buf, size, "#0x%" PRIx64, addr);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_ADDR_PCREL14:
|
|
|
|
|
case AARCH64_OPND_ADDR_PCREL19:
|
|
|
|
|
case AARCH64_OPND_ADDR_PCREL21:
|
|
|
|
|
case AARCH64_OPND_ADDR_PCREL26:
|
|
|
|
|
addr = pc + AARCH64_PCREL_OFFSET + opnd->imm.value;
|
|
|
|
|
if (pcrel_p)
|
|
|
|
|
*pcrel_p = 1;
|
|
|
|
|
if (address)
|
|
|
|
|
*address = addr;
|
|
|
|
|
/* This is not necessary during the disassembling, as print_address_func
|
|
|
|
|
in the disassemble_info will take care of the printing. But some
|
|
|
|
|
other callers may be still interested in getting the string in *STR,
|
|
|
|
|
so here we do snprintf regardless. */
|
|
|
|
|
snprintf (buf, size, "#0x%" PRIx64, addr);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_ADDR_SIMPLE:
|
|
|
|
|
case AARCH64_OPND_SIMD_ADDR_SIMPLE:
|
|
|
|
|
case AARCH64_OPND_SIMD_ADDR_POST:
|
|
|
|
|
name = get_64bit_int_reg_name (opnd->addr.base_regno, 1);
|
|
|
|
|
if (opnd->type == AARCH64_OPND_SIMD_ADDR_POST)
|
|
|
|
|
{
|
|
|
|
|
if (opnd->addr.offset.is_reg)
|
|
|
|
|
snprintf (buf, size, "[%s], x%d", name, opnd->addr.offset.regno);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "[%s], #%d", name, opnd->addr.offset.imm);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "[%s]", name);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_ADDR_REGOFF:
|
2018-03-28 16:44:45 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_R:
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RR:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RR_LSL1:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RR_LSL2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RR_LSL3:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RX:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RX_LSL1:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RX_LSL2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RX_LSL3:
|
2016-09-21 23:51:43 +08:00
|
|
|
|
print_register_offset_address
|
|
|
|
|
(buf, size, opnd, get_64bit_int_reg_name (opnd->addr.base_regno, 1),
|
|
|
|
|
get_offset_int_reg_name (opnd));
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2019-05-09 17:29:18 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZX:
|
|
|
|
|
print_register_offset_address
|
|
|
|
|
(buf, size, opnd,
|
|
|
|
|
get_addr_sve_reg_name (opnd->addr.base_regno, opnd->qualifier),
|
|
|
|
|
get_64bit_int_reg_name (opnd->addr.offset.regno, 0));
|
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_LSL1:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_LSL2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_LSL3:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW_14:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW_22:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW1_14:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW1_22:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW2_14:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW2_22:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW3_14:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RZ_XTW3_22:
|
|
|
|
|
print_register_offset_address
|
|
|
|
|
(buf, size, opnd, get_64bit_int_reg_name (opnd->addr.base_regno, 1),
|
|
|
|
|
get_addr_sve_reg_name (opnd->addr.offset.regno, opnd->qualifier));
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_ADDR_SIMM7:
|
|
|
|
|
case AARCH64_OPND_ADDR_SIMM9:
|
|
|
|
|
case AARCH64_OPND_ADDR_SIMM9_2:
|
2016-11-18 17:49:06 +08:00
|
|
|
|
case AARCH64_OPND_ADDR_SIMM10:
|
[BINUTILS, AARCH64, 4/8] Add Tag setting instructions in Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch add support to the Tag setting instructions from
MTE which consists of the following instructions:
- STG [<Xn|SP>, #<simm>]
- STG [<Xn|SP>, #<simm>]!
- STG [<Xn|SP>], #<simm>
- STZG [<Xn|SP>, #<simm>]
- STZG [<Xn|SP>, #<simm>]!
- STZG [<Xn|SP>], #<simm>
- ST2G [<Xn|SP>, #<simm>]
- ST2G [<Xn|SP>, #<simm>]!
- ST2G [<Xn|SP>], #<simm>
- STZ2G [<Xn|SP>, #<simm>]
- STZ2G [<Xn|SP>, #<simm>]!
- STZ2G [<Xn|SP>], #<simm>
- STGP <Xt>, <Xt2>, [<Xn|SP>, #<imm>]
- STGP <Xt>, <Xt2>, [<Xn|SP>, #<imm>]!
- STGP <Xt>, <Xt2>, [<Xn|SP>], #<imm>
where
<Xn|SP> : Is the 64-bit GPR or Stack pointer.
<simm> : Is the optional signed immediate offset, a multiple of 16
in the range -4096 to 4080, defaulting to 0.
*** include/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (aarch64_opnd): Add AARCH64_OPND_ADDR_SIMM11
and AARCH64_OPND_ADDR_SIMM13.
(aarch64_opnd_qualifier): Add new AARCH64_OPND_QLF_imm_tag.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_opnd_qualifiers): Add new data
for AARCH64_OPND_QLF_imm_tag.
(operand_general_constraint_met_p): Add case for
AARCH64_OPND_ADDR_SIMM11 and AARCH64_OPND_ADDR_SIMM13.
(aarch64_print_operand): Likewise.
* aarch64-tbl.h (QL_LDST_AT, QL_STGP): New.
(aarch64_opcode_table): Add stg, stzg, st2g, stz2g and stgp
for both offset and pre/post indexed versions.
(AARCH64_OPERANDS): Define ADDR_SIMM11 and ADDR_SIMM13.
* aarch64-asm-2.c: Regenerated.
* aarch64-dis-2.c: Regenerated.
* aarch64-opc-2.c: Regenerated.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_operands): Add switch case for
AARCH64_OPND_ADDR_SIMM11 and AARCH64_OPND_ADDR_SIMM13.
(fix_insn): Likewise.
(warn_unpredictable_ldst): Exempt STGP.
* testsuite/gas/aarch64/armv8_5-a-memtag.s: Add tests for stg, st2g,
stzg, stz2g and stgp.
* testsuite/gas/aarch64/armv8_5-a-memtag.d: Likewise.
* testsuite/gas/aarch64/illegal-memtag.s: Likewise.
* testsuite/gas/aarch64/illegal-memtag.l: Likewise.
2018-11-12 21:09:55 +08:00
|
|
|
|
case AARCH64_OPND_ADDR_SIMM11:
|
|
|
|
|
case AARCH64_OPND_ADDR_SIMM13:
|
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
gas/
* config/tc-aarch64.c (process_omitted_operand):
Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
and AARCH64_OPND_IMM_2.
(parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
and AARCH64_OPND_ADDR_OFFSET.
include/
* opcode/aarch64.h:
(aarch64_opnd): Add AARCH64_OPND_Va, AARCH64_OPND_MASK,
AARCH64_OPND_IMM_2, AARCH64_OPND_ADDR_OFFSET
and AARCH64_OPND_SM3_IMM2.
(aarch64_insn_class): Add cryptosm3 and cryptosm4.
(arch64_feature_set): Make uint64_t.
opcodes/
* aarch64-asm.h (ins_addr_offset): New.
* aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
(aarch64_ins_addr_offset): New.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_addr_offset): New.
* aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
(aarch64_ext_addr_offset): New.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
* aarch64-opc.c (fields): Add FLD_imm6_2,
FLD_imm4_2 and FLD_SM3_imm2.
(operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
(aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
* aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
* aarch64-tbl.h
(aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
2017-11-09 23:22:30 +08:00
|
|
|
|
case AARCH64_OPND_ADDR_OFFSET:
|
[AArch64] Additional SVE instructions
This patch supports some additions to the SVE architecture prior to
its public release.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4x16)
(AARCH64_OPND_SVE_IMM_ROT1, AARCH64_OPND_SVE_IMM_ROT2)
(AARCH64_OPND_SVE_Zm3_INDEX, AARCH64_OPND_SVE_Zm3_22_INDEX)
(AARCH64_OPND_SVE_Zm4_INDEX): New aarch64_opnds.
opcodes/
* aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
(OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
(OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
(OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
(OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
(OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
(OP_SVE_V_HSD): New macros.
(OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
(OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
(OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
(aarch64_opcode_table): Add new SVE instructions.
(aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
for rotation operands. Add new SVE operands.
* aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
(ins_sve_quad_index): Likewise.
(ins_imm_rotate): Split into...
(ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
* aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
(aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
functions.
(aarch64_ins_sve_addr_ri_s4): New function.
(aarch64_ins_sve_quad_index): Likewise.
(do_misc_encoding): Handle "MOV Zn.Q, Qm".
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
(ext_sve_quad_index): Likewise.
(ext_imm_rotate): Split into...
(ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
* aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
(aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
functions.
(aarch64_ext_sve_addr_ri_s4): New function.
(aarch64_ext_sve_quad_index): Likewise.
(aarch64_ext_sve_index): Allow quad indices.
(do_misc_decoding): Likewise.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
aarch64_field_kinds.
(OPD_F_OD_MASK): Widen by one bit.
(OPD_F_NO_ZR): Bump accordingly.
(get_operand_field_width): New function.
* aarch64-opc.c (fields): Add new SVE fields.
(operand_general_constraint_met_p): Handle new SVE operands.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
gas/
* doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
* config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
to be used with SVE registers.
(parse_operands): Handle new SVE operands.
(aarch64_features): Make "sve" require F16 rather than FP. Also
require COMPNUM.
* testsuite/gas/aarch64/sve.s: Add tests for new instructions.
Include compnum tests.
* testsuite/gas/aarch64/sve.d: Update accordingly.
* testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
* testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
update expected output for new FMOV and MOV alternatives.
2017-02-25 02:29:00 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4x16:
|
[AArch64][SVE 26/32] Add SVE MUL VL addressing modes
This patch adds support for addresses of the form:
[<base>, #<offset>, MUL VL]
This involves adding a new AARCH64_MOD_MUL_VL modifier, which is
why I split it out from the other addressing modes.
For LD2, LD3 and LD4, the offset must be a multiple of the structure
size, so for LD3 the possible values are 0, 3, 6, .... The patch
therefore extends value_aligned_p to handle non-power-of-2 alignments.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_S4xVL): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_S4x2xVL, AARCH64_OPND_SVE_ADDR_RI_S4x3xVL)
(AARCH64_OPND_SVE_ADDR_RI_S4x4xVL, AARCH64_OPND_SVE_ADDR_RI_S6xVL)
(AARCH64_OPND_SVE_ADDR_RI_S9xVL): Likewise.
(AARCH64_MOD_MUL_VL): New aarch64_modifier_kind.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for new MUL VL
operands.
* aarch64-opc.c (aarch64_operand_modifiers): Initialize
the AARCH64_MOD_MUL_VL entry.
(value_aligned_p): Cope with non-power-of-two alignments.
(operand_general_constraint_met_p): Handle the new MUL VL addresses.
(print_immediate_offset_address): Likewise.
(aarch64_print_operand): Likewise.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_s4xvl, ins_sve_addr_ri_s6xvl)
(ins_sve_addr_ri_s9xvl): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_s4xvl): New function.
(aarch64_ins_sve_addr_ri_s6xvl): Likewise.
(aarch64_ins_sve_addr_ri_s9xvl): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_s4xvl, ext_sve_addr_ri_s6xvl)
(ext_sve_addr_ri_s9xvl): New extractors.
* aarch64-dis.c (aarch64_ext_sve_addr_reg_mul_vl): New function.
(aarch64_ext_sve_addr_ri_s4xvl): Likewise.
(aarch64_ext_sve_addr_ri_s6xvl): Likewise.
(aarch64_ext_sve_addr_ri_s9xvl): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (SHIFTED_NONE, SHIFTED_MUL_VL): New
parse_shift_modes.
(parse_shift): Handle SHIFTED_MUL_VL.
(parse_address_main): Add an imm_shift_mode parameter.
(parse_address, parse_sve_address): Update accordingly.
(parse_operands): Handle MUL VL addressing modes.
2016-09-21 23:56:15 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4xVL:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4x2xVL:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4x3xVL:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S4x4xVL:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S6xVL:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_S9xVL:
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_U6:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_U6x2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_U6x4:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_RI_U6x8:
|
2016-09-21 23:51:43 +08:00
|
|
|
|
print_immediate_offset_address
|
|
|
|
|
(buf, size, opnd, get_64bit_int_reg_name (opnd->addr.base_regno, 1));
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
|
[AArch64][SVE 25/32] Add support for SVE addressing modes
This patch adds most of the new SVE addressing modes and associated
operands. A follow-on patch adds MUL VL, since handling it separately
makes the changes easier to read.
The patch also introduces a new "operand-dependent data" field to the
operand flags, based closely on the existing one for opcode flags.
For SVE this new field needs only 2 bits, but it could be widened
in future if necessary.
include/
* opcode/aarch64.h (AARCH64_OPND_SVE_ADDR_RI_U6): New aarch64_opnd.
(AARCH64_OPND_SVE_ADDR_RI_U6x2, AARCH64_OPND_SVE_ADDR_RI_U6x4)
(AARCH64_OPND_SVE_ADDR_RI_U6x8, AARCH64_OPND_SVE_ADDR_RR)
(AARCH64_OPND_SVE_ADDR_RR_LSL1, AARCH64_OPND_SVE_ADDR_RR_LSL2)
(AARCH64_OPND_SVE_ADDR_RR_LSL3, AARCH64_OPND_SVE_ADDR_RX)
(AARCH64_OPND_SVE_ADDR_RX_LSL1, AARCH64_OPND_SVE_ADDR_RX_LSL2)
(AARCH64_OPND_SVE_ADDR_RX_LSL3, AARCH64_OPND_SVE_ADDR_RZ)
(AARCH64_OPND_SVE_ADDR_RZ_LSL1, AARCH64_OPND_SVE_ADDR_RZ_LSL2)
(AARCH64_OPND_SVE_ADDR_RZ_LSL3, AARCH64_OPND_SVE_ADDR_RZ_XTW_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW_22, AARCH64_OPND_SVE_ADDR_RZ_XTW1_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW1_22, AARCH64_OPND_SVE_ADDR_RZ_XTW2_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW2_22, AARCH64_OPND_SVE_ADDR_RZ_XTW3_14)
(AARCH64_OPND_SVE_ADDR_RZ_XTW3_22, AARCH64_OPND_SVE_ADDR_ZI_U5)
(AARCH64_OPND_SVE_ADDR_ZI_U5x2, AARCH64_OPND_SVE_ADDR_ZI_U5x4)
(AARCH64_OPND_SVE_ADDR_ZI_U5x8, AARCH64_OPND_SVE_ADDR_ZZ_LSL)
(AARCH64_OPND_SVE_ADDR_ZZ_SXTW, AARCH64_OPND_SVE_ADDR_ZZ_UXTW):
Likewise.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
address operands.
* aarch64-opc.h (FLD_SVE_imm6, FLD_SVE_msz, FLD_SVE_xs_14)
(FLD_SVE_xs_22): New aarch64_field_kinds.
(OPD_F_OD_MASK, OPD_F_OD_LSB, OPD_F_NO_ZR): New flags.
(get_operand_specific_data): New function.
* aarch64-opc.c (fields): Add entries for FLD_SVE_imm6, FLD_SVE_msz,
FLD_SVE_xs_14 and FLD_SVE_xs_22.
(operand_general_constraint_met_p): Handle the new SVE address
operands.
(sve_reg): New array.
(get_addr_sve_reg_name): New function.
(aarch64_print_operand): Handle the new SVE address operands.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_sve_addr_ri_u6, ins_sve_addr_rr_lsl)
(ins_sve_addr_rz_xtw, ins_sve_addr_zi_u5, ins_sve_addr_zz_lsl)
(ins_sve_addr_zz_sxtw, ins_sve_addr_zz_uxtw): New inserters.
* aarch64-asm.c (aarch64_ins_sve_addr_ri_u6): New function.
(aarch64_ins_sve_addr_rr_lsl): Likewise.
(aarch64_ins_sve_addr_rz_xtw): Likewise.
(aarch64_ins_sve_addr_zi_u5): Likewise.
(aarch64_ins_sve_addr_zz): Likewise.
(aarch64_ins_sve_addr_zz_lsl): Likewise.
(aarch64_ins_sve_addr_zz_sxtw): Likewise.
(aarch64_ins_sve_addr_zz_uxtw): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_sve_addr_ri_u6, ext_sve_addr_rr_lsl)
(ext_sve_addr_rz_xtw, ext_sve_addr_zi_u5, ext_sve_addr_zz_lsl)
(ext_sve_addr_zz_sxtw, ext_sve_addr_zz_uxtw): New extractors.
* aarch64-dis.c (aarch64_ext_sve_add_reg_imm): New function.
(aarch64_ext_sve_addr_ri_u6): Likewise.
(aarch64_ext_sve_addr_rr_lsl): Likewise.
(aarch64_ext_sve_addr_rz_xtw): Likewise.
(aarch64_ext_sve_addr_zi_u5): Likewise.
(aarch64_ext_sve_addr_zz): Likewise.
(aarch64_ext_sve_addr_zz_lsl): Likewise.
(aarch64_ext_sve_addr_zz_sxtw): Likewise.
(aarch64_ext_sve_addr_zz_uxtw): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (REG_TYPE_SVE_BASE, REG_TYPE_SVE_OFFSET): New
register types.
(get_reg_expected_msg): Handle them.
(aarch64_addr_reg_parse): New function, split out from
aarch64_reg_parse_32_64. Handle Z registers too.
(aarch64_reg_parse_32_64): Call it.
(parse_address_main): Add base_qualifier, offset_qualifier,
base_type and offset_type parameters. Handle SVE base and offset
registers.
(parse_address): Update call to parse_address_main.
(parse_sve_address): New function.
(parse_operands): Parse the new SVE address operands.
2016-09-21 23:55:49 +08:00
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZI_U5:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZI_U5x2:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZI_U5x4:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZI_U5x8:
|
|
|
|
|
print_immediate_offset_address
|
|
|
|
|
(buf, size, opnd,
|
|
|
|
|
get_addr_sve_reg_name (opnd->addr.base_regno, opnd->qualifier));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZZ_LSL:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZZ_SXTW:
|
|
|
|
|
case AARCH64_OPND_SVE_ADDR_ZZ_UXTW:
|
|
|
|
|
print_register_offset_address
|
|
|
|
|
(buf, size, opnd,
|
|
|
|
|
get_addr_sve_reg_name (opnd->addr.base_regno, opnd->qualifier),
|
|
|
|
|
get_addr_sve_reg_name (opnd->addr.offset.regno, opnd->qualifier));
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
case AARCH64_OPND_ADDR_UIMM12:
|
|
|
|
|
name = get_64bit_int_reg_name (opnd->addr.base_regno, 1);
|
|
|
|
|
if (opnd->addr.offset.imm)
|
2016-09-22 00:11:52 +08:00
|
|
|
|
snprintf (buf, size, "[%s, #%d]", name, opnd->addr.offset.imm);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "[%s]", name);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SYSREG:
|
|
|
|
|
for (i = 0; aarch64_sys_regs[i].name; ++i)
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{
|
|
|
|
|
bfd_boolean exact_match
|
|
|
|
|
= (aarch64_sys_regs[i].flags & opnd->sysreg.flags)
|
|
|
|
|
== opnd->sysreg.flags;
|
|
|
|
|
|
|
|
|
|
/* Try and find an exact match, But if that fails, return the first
|
|
|
|
|
partial match that was found. */
|
|
|
|
|
if (aarch64_sys_regs[i].value == opnd->sysreg.value
|
|
|
|
|
&& ! aarch64_sys_reg_deprecated_p (&aarch64_sys_regs[i])
|
|
|
|
|
&& (name == NULL || exact_match))
|
|
|
|
|
{
|
|
|
|
|
name = aarch64_sys_regs[i].name;
|
|
|
|
|
if (exact_match)
|
|
|
|
|
{
|
|
|
|
|
if (notes)
|
|
|
|
|
*notes = NULL;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If we didn't match exactly, that means the presense of a flag
|
|
|
|
|
indicates what we didn't want for this instruction. e.g. If
|
|
|
|
|
F_REG_READ is there, that means we were looking for a write
|
|
|
|
|
register. See aarch64_ext_sysreg. */
|
|
|
|
|
if (aarch64_sys_regs[i].flags & F_REG_WRITE)
|
2018-10-04 01:51:11 +08:00
|
|
|
|
*notes = _("reading from a write-only register");
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
else if (aarch64_sys_regs[i].flags & F_REG_READ)
|
2018-10-04 01:51:11 +08:00
|
|
|
|
*notes = _("writing to a read-only register");
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name)
|
|
|
|
|
snprintf (buf, size, "%s", name);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Implementation defined system register. */
|
Modify AArch64 Assembly and disassembly functions to be able to fail and report why.
This patch if the first patch in a series to add the ability to add constraints
to system registers that an instruction must adhere to in order for the register
to be usable with that instruction.
These constraints can also be used to disambiguate between registers with the
same encoding during disassembly.
This patch adds a new flags entry in the sysreg structures and ensures it is
filled in and read out during assembly/disassembly. It also adds the ability for
the assemble and disassemble functions to be able to gracefully fail and re-use
the existing error reporting infrastructure.
The return type of these functions are changed to a boolean to denote success or
failure and the error structure is passed around to them. This requires
aarch64-gen changes so a lot of the changes here are just mechanical.
gas/
PR binutils/21446
* config/tc-aarch64.c (parse_sys_reg): Return register flags.
(parse_operands): Fill in register flags.
gdb/
PR binutils/21446
* aarch64-tdep.c (aarch64_analyze_prologue,
aarch64_software_single_step, aarch64_displaced_step_copy_insn):
Indicate not interested in errors.
include/
PR binutils/21446
* opcode/aarch64.h (aarch64_opnd_info): Change sysreg to struct.
(aarch64_decode_insn): Accept error struct.
opcodes/
PR binutils/21446
* aarch64-asm.h (aarch64_insert_operand, aarch64_##x): Return boolean
and take error struct.
* aarch64-asm.c (aarch64_ext_regno, aarch64_ins_reglane,
aarch64_ins_reglist, aarch64_ins_ldst_reglist,
aarch64_ins_ldst_reglist_r, aarch64_ins_ldst_elemlist,
aarch64_ins_advsimd_imm_shift, aarch64_ins_imm, aarch64_ins_imm_half,
aarch64_ins_advsimd_imm_modified, aarch64_ins_fpimm,
aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2, aarch64_ins_fbits,
aarch64_ins_aimm, aarch64_ins_limm_1, aarch64_ins_limm,
aarch64_ins_inv_limm, aarch64_ins_ft, aarch64_ins_addr_simple,
aarch64_ins_addr_regoff, aarch64_ins_addr_offset, aarch64_ins_addr_simm,
aarch64_ins_addr_simm10, aarch64_ins_addr_uimm12,
aarch64_ins_simd_addr_post, aarch64_ins_cond, aarch64_ins_sysreg,
aarch64_ins_pstatefield, aarch64_ins_sysins_op, aarch64_ins_barrier,
aarch64_ins_prfop, aarch64_ins_hint, aarch64_ins_reg_extended,
aarch64_ins_reg_shifted, aarch64_ins_sve_addr_ri_s4xvl,
aarch64_ins_sve_addr_ri_s6xvl, aarch64_ins_sve_addr_ri_s9xvl,
aarch64_ins_sve_addr_ri_s4, aarch64_ins_sve_addr_ri_u6,
aarch64_ins_sve_addr_rr_lsl, aarch64_ins_sve_addr_rz_xtw,
aarch64_ins_sve_addr_zi_u5, aarch64_ext_sve_addr_zz,
aarch64_ins_sve_addr_zz_lsl, aarch64_ins_sve_addr_zz_sxtw,
aarch64_ins_sve_addr_zz_uxtw, aarch64_ins_sve_aimm,
aarch64_ins_sve_asimm, aarch64_ins_sve_index, aarch64_ins_sve_limm_mov,
aarch64_ins_sve_quad_index, aarch64_ins_sve_reglist,
aarch64_ins_sve_scale, aarch64_ins_sve_shlimm, aarch64_ins_sve_shrimm,
aarch64_ins_sve_float_half_one, aarch64_ins_sve_float_half_two,
aarch64_ins_sve_float_zero_one, aarch64_opcode_encode): Likewise.
* aarch64-dis.h (aarch64_extract_operand, aarch64_##x): Likewise.
* aarch64-dis.c (aarch64_ext_regno, aarch64_ext_reglane,
aarch64_ext_reglist, aarch64_ext_ldst_reglist,
aarch64_ext_ldst_reglist_r, aarch64_ext_ldst_elemlist,
aarch64_ext_advsimd_imm_shift, aarch64_ext_imm, aarch64_ext_imm_half,
aarch64_ext_advsimd_imm_modified, aarch64_ext_fpimm,
aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2, aarch64_ext_fbits,
aarch64_ext_aimm, aarch64_ext_limm_1, aarch64_ext_limm, decode_limm,
aarch64_ext_inv_limm, aarch64_ext_ft, aarch64_ext_addr_simple,
aarch64_ext_addr_regoff, aarch64_ext_addr_offset, aarch64_ext_addr_simm,
aarch64_ext_addr_simm10, aarch64_ext_addr_uimm12,
aarch64_ext_simd_addr_post, aarch64_ext_cond, aarch64_ext_sysreg,
aarch64_ext_pstatefield, aarch64_ext_sysins_op, aarch64_ext_barrier,
aarch64_ext_prfop, aarch64_ext_hint, aarch64_ext_reg_extended,
aarch64_ext_reg_shifted, aarch64_ext_sve_addr_ri_s4xvl,
aarch64_ext_sve_addr_ri_s6xvl, aarch64_ext_sve_addr_ri_s9xvl,
aarch64_ext_sve_addr_ri_s4, aarch64_ext_sve_addr_ri_u6,
aarch64_ext_sve_addr_rr_lsl, aarch64_ext_sve_addr_rz_xtw,
aarch64_ext_sve_addr_zi_u5, aarch64_ext_sve_addr_zz,
aarch64_ext_sve_addr_zz_lsl, aarch64_ext_sve_addr_zz_sxtw,
aarch64_ext_sve_addr_zz_uxtw, aarch64_ext_sve_aimm,
aarch64_ext_sve_asimm, aarch64_ext_sve_index, aarch64_ext_sve_limm_mov,
aarch64_ext_sve_quad_index, aarch64_ext_sve_reglist,
aarch64_ext_sve_scale, aarch64_ext_sve_shlimm, aarch64_ext_sve_shrimm,
aarch64_ext_sve_float_half_one, aarch64_ext_sve_float_half_two,
aarch64_ext_sve_float_zero_one, aarch64_opcode_decode): Likewise.
(determine_disassembling_preference, aarch64_decode_insn,
print_insn_aarch64_word, print_insn_data): Take errors struct.
(print_insn_aarch64): Use errors.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Regenerate.
* aarch64-gen.c (print_operand_inserter): Use errors and change type to
boolean in aarch64_insert_operan.
(print_operand_extractor): Likewise.
* aarch64-opc.c (aarch64_print_operand): Use sysreg struct.
2018-05-15 23:11:42 +08:00
|
|
|
|
unsigned int value = opnd->sysreg.value;
|
2012-08-13 22:52:54 +08:00
|
|
|
|
snprintf (buf, size, "s%u_%u_c%u_c%u_%u", (value >> 14) & 0x3,
|
|
|
|
|
(value >> 11) & 0x7, (value >> 7) & 0xf, (value >> 3) & 0xf,
|
|
|
|
|
value & 0x7);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_PSTATEFIELD:
|
|
|
|
|
for (i = 0; aarch64_pstatefields[i].name; ++i)
|
|
|
|
|
if (aarch64_pstatefields[i].value == opnd->pstatefield)
|
|
|
|
|
break;
|
|
|
|
|
assert (aarch64_pstatefields[i].name);
|
|
|
|
|
snprintf (buf, size, "%s", aarch64_pstatefields[i].name);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_SYSREG_AT:
|
|
|
|
|
case AARCH64_OPND_SYSREG_DC:
|
|
|
|
|
case AARCH64_OPND_SYSREG_IC:
|
|
|
|
|
case AARCH64_OPND_SYSREG_TLBI:
|
2018-09-26 17:52:51 +08:00
|
|
|
|
case AARCH64_OPND_SYSREG_SR:
|
2015-10-07 19:23:15 +08:00
|
|
|
|
snprintf (buf, size, "%s", opnd->sysins_op->name);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_BARRIER:
|
|
|
|
|
snprintf (buf, size, "%s", opnd->barrier->name);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_BARRIER_ISB:
|
|
|
|
|
/* Operand can be omitted, e.g. in DCPS1. */
|
|
|
|
|
if (! optional_operand_p (opcode, idx)
|
|
|
|
|
|| (opnd->barrier->value
|
|
|
|
|
!= get_optional_operand_default_value (opcode)))
|
|
|
|
|
snprintf (buf, size, "#0x%x", opnd->barrier->value);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case AARCH64_OPND_PRFOP:
|
2013-02-15 02:12:51 +08:00
|
|
|
|
if (opnd->prfop->name != NULL)
|
|
|
|
|
snprintf (buf, size, "%s", opnd->prfop->name);
|
|
|
|
|
else
|
|
|
|
|
snprintf (buf, size, "#0x%02x", opnd->prfop->value);
|
2012-08-13 22:52:54 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2015-12-11 18:22:40 +08:00
|
|
|
|
case AARCH64_OPND_BARRIER_PSB:
|
[PATCH, BINUTILS, AARCH64, 7/9] Add BTI instruction
This patch is part of the patch series to add support for ARMv8.5-A
extensions.
(https://developer.arm.com/products/architecture/cpu-architecture/a-profile/docs/ddi0596/a/a64-base-instructions-alphabetic-order/bti-branch-target-identification)
The Branch Target Identification instructions (BTI) are allocated to
existing HINT space, using HINT numbers 32, 34, 36, 38, such that
bits[7:6] of the instruction identify the compatibility of the BTI
instruction to different branches.
BTI {<targets>}
where <targets> one of the following, specifying which type of
indirection is allowed:
j : Can be a target of any BR Xn isntruction.
c : Can be a target of any BLR Xn and BR {X16|X17}.
jc: Can be a target of any free branch.
A BTI instruction without any <targets> is the strictest of all and
can not be a target of nay free branch.
*** include/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (AARCH64_FEATURE_BTI): New.
(AARCH64_ARCH_V8_5): Add AARCH64_FEATURE_BTI by default.
(aarch64_opnd): Add AARCH64_OPND_BTI_TARGET.
(HINT_OPD_CSYNC, HINT_OPD_C, HINT_OPD_J): New macros to
define HINT #imm values.
(HINT_OPD_JC, HINT_OPD_NULL): Likewise.
*** opcodes/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.h (HINT_OPD_NOPRINT, HINT_ENCODE): New.
(HINT_FLAG, HINT_VALUE): New macros to encode NO_PRINT flag
with the hint immediate.
* aarch64-opc.c (aarch64_hint_options): New entries for
c, j, jc and default (with HINT_OPD_F_NOPRINT flag) for BTI.
(aarch64_print_operand): Add case for AARCH64_OPND_BTI_TARGET
while checking for HINT_OPD_F_NOPRINT flag.
* aarch64-dis.c (aarch64_ext_hint): Use new HINT_VALUE to
extract value.
* aarch64-tbl.h (aarch64_feature_bti, BTI, BTI_INSN): New.
(aarch64_opcode_table): Add entry for BTI.
(AARCH64_OPERANDS): Add new description for BTI targets.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc-2.c: Regenerate.
*** gas/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* config/tc-aarch64.c (parse_bti_operand): New.
(process_omitted_operand): Add case for AARCH64_OPND_BTI_TARGET.
(parse_operands): Likewise.
* testsuite/gas/aarch64/system.d: Update for BTI.
* testsuite/gas/aarch64/bti.s: New.
* testsuite/gas/aarch64/bti.d: New.
* testsuite/gas/aarch64/illegal-bti.d: New.
* testsuite/gas/aarch64/illegal-bti.l: New.
2018-09-26 18:00:49 +08:00
|
|
|
|
case AARCH64_OPND_BTI_TARGET:
|
|
|
|
|
if ((HINT_FLAG (opnd->hint_option->value) & HINT_OPD_F_NOPRINT) == 0)
|
|
|
|
|
snprintf (buf, size, "%s", opnd->hint_option->name);
|
2015-12-11 18:22:40 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
default:
|
|
|
|
|
assert (0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define CPENC(op0,op1,crn,crm,op2) \
|
|
|
|
|
((((op0) << 19) | ((op1) << 16) | ((crn) << 12) | ((crm) << 8) | ((op2) << 5)) >> 5)
|
|
|
|
|
/* for 3.9.3 Instructions for Accessing Special Purpose Registers */
|
|
|
|
|
#define CPEN_(op1,crm,op2) CPENC(3,(op1),4,(crm),(op2))
|
|
|
|
|
/* for 3.9.10 System Instructions */
|
|
|
|
|
#define CPENS(op1,crn,crm,op2) CPENC(1,(op1),(crn),(crm),(op2))
|
|
|
|
|
|
|
|
|
|
#define C0 0
|
|
|
|
|
#define C1 1
|
|
|
|
|
#define C2 2
|
|
|
|
|
#define C3 3
|
|
|
|
|
#define C4 4
|
|
|
|
|
#define C5 5
|
|
|
|
|
#define C6 6
|
|
|
|
|
#define C7 7
|
|
|
|
|
#define C8 8
|
|
|
|
|
#define C9 9
|
|
|
|
|
#define C10 10
|
|
|
|
|
#define C11 11
|
|
|
|
|
#define C12 12
|
|
|
|
|
#define C13 13
|
|
|
|
|
#define C14 14
|
|
|
|
|
#define C15 15
|
|
|
|
|
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
/* TODO there is one more issues need to be resolved
|
|
|
|
|
1. handle cpu-implementation-defined system registers. */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
const aarch64_sys_reg aarch64_sys_regs [] =
|
|
|
|
|
{
|
|
|
|
|
{ "spsr_el1", CPEN_(0,C0,0), 0 }, /* = spsr_svc */
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "spsr_el12", CPEN_ (5, C0, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "elr_el1", CPEN_(0,C0,1), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "elr_el12", CPEN_ (5, C0, 1), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "sp_el0", CPEN_(0,C1,0), 0 },
|
|
|
|
|
{ "spsel", CPEN_(0,C2,0), 0 },
|
|
|
|
|
{ "daif", CPEN_(3,C2,1), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "currentel", CPEN_(0,C2,2), F_REG_READ }, /* RO */
|
2015-06-01 23:00:28 +08:00
|
|
|
|
{ "pan", CPEN_(0,C2,3), F_ARCHEXT },
|
2015-12-11 00:01:29 +08:00
|
|
|
|
{ "uao", CPEN_ (0, C2, 4), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "nzcv", CPEN_(3,C2,0), 0 },
|
2018-09-26 18:04:32 +08:00
|
|
|
|
{ "ssbs", CPEN_(3,C2,6), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "fpcr", CPEN_(3,C4,0), 0 },
|
|
|
|
|
{ "fpsr", CPEN_(3,C4,1), 0 },
|
|
|
|
|
{ "dspsr_el0", CPEN_(3,C5,0), 0 },
|
|
|
|
|
{ "dlr_el0", CPEN_(3,C5,1), 0 },
|
|
|
|
|
{ "spsr_el2", CPEN_(4,C0,0), 0 }, /* = spsr_hyp */
|
|
|
|
|
{ "elr_el2", CPEN_(4,C0,1), 0 },
|
|
|
|
|
{ "sp_el1", CPEN_(4,C1,0), 0 },
|
|
|
|
|
{ "spsr_irq", CPEN_(4,C3,0), 0 },
|
|
|
|
|
{ "spsr_abt", CPEN_(4,C3,1), 0 },
|
|
|
|
|
{ "spsr_und", CPEN_(4,C3,2), 0 },
|
|
|
|
|
{ "spsr_fiq", CPEN_(4,C3,3), 0 },
|
|
|
|
|
{ "spsr_el3", CPEN_(6,C0,0), 0 },
|
|
|
|
|
{ "elr_el3", CPEN_(6,C0,1), 0 },
|
|
|
|
|
{ "sp_el2", CPEN_(6,C1,0), 0 },
|
|
|
|
|
{ "spsr_svc", CPEN_(0,C0,0), F_DEPRECATED }, /* = spsr_el1 */
|
|
|
|
|
{ "spsr_hyp", CPEN_(4,C0,0), F_DEPRECATED }, /* = spsr_el2 */
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "midr_el1", CPENC(3,0,C0,C0,0), F_REG_READ }, /* RO */
|
|
|
|
|
{ "ctr_el0", CPENC(3,3,C0,C0,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "mpidr_el1", CPENC(3,0,C0,C0,5), F_REG_READ }, /* RO */
|
|
|
|
|
{ "revidr_el1", CPENC(3,0,C0,C0,6), F_REG_READ }, /* RO */
|
|
|
|
|
{ "aidr_el1", CPENC(3,1,C0,C0,7), F_REG_READ }, /* RO */
|
|
|
|
|
{ "dczid_el0", CPENC(3,3,C0,C0,7), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_dfr0_el1", CPENC(3,0,C0,C1,2), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_pfr0_el1", CPENC(3,0,C0,C1,0), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_pfr1_el1", CPENC(3,0,C0,C1,1), F_REG_READ }, /* RO */
|
[PATCH, BINUTILS, AARCH64, 8/9] Add SCXTNUM_ELx and ID_PFR2_EL1 system registers
This patch is part of the patch series to add support for ARMv8.5-A
extensions.
(https://developer.arm.com/products/architecture/cpu-architecture/a-profile/exploration-tools)
The encodings can be found in the System Register XML.
This patch adds the new system registers SCXTNUM_ELx and ID_PFR2_EL1.
*** include/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (AARCH64_FEATURE_SCXTNUM): New.
(AARCH64_FEATURE_ID_PFR2): New.
(AARCH64_ARCH_V8_5): Add both by default.
*** opcodes/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for
scxtnum_el[0,1,2,3,12] and id_pfr2_el1.
(aarch64_sys_reg_supported_p): New checks for above.
*** gas/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test registers
scxtnum_el[0,1,2,3,12] and id_pfr2_el1.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-09-26 18:02:28 +08:00
|
|
|
|
{ "id_pfr2_el1", CPENC(3,0,C0,C3,4), F_ARCHEXT | F_REG_READ}, /* RO */
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "id_afr0_el1", CPENC(3,0,C0,C1,3), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_mmfr0_el1", CPENC(3,0,C0,C1,4), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_mmfr1_el1", CPENC(3,0,C0,C1,5), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_mmfr2_el1", CPENC(3,0,C0,C1,6), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_mmfr3_el1", CPENC(3,0,C0,C1,7), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_mmfr4_el1", CPENC(3,0,C0,C2,6), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_isar0_el1", CPENC(3,0,C0,C2,0), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_isar1_el1", CPENC(3,0,C0,C2,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_isar2_el1", CPENC(3,0,C0,C2,2), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_isar3_el1", CPENC(3,0,C0,C2,3), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_isar4_el1", CPENC(3,0,C0,C2,4), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_isar5_el1", CPENC(3,0,C0,C2,5), F_REG_READ }, /* RO */
|
|
|
|
|
{ "mvfr0_el1", CPENC(3,0,C0,C3,0), F_REG_READ }, /* RO */
|
|
|
|
|
{ "mvfr1_el1", CPENC(3,0,C0,C3,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "mvfr2_el1", CPENC(3,0,C0,C3,2), F_REG_READ }, /* RO */
|
|
|
|
|
{ "ccsidr_el1", CPENC(3,1,C0,C0,0), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64pfr0_el1", CPENC(3,0,C0,C4,0), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64pfr1_el1", CPENC(3,0,C0,C4,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64dfr0_el1", CPENC(3,0,C0,C5,0), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64dfr1_el1", CPENC(3,0,C0,C5,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64isar0_el1", CPENC(3,0,C0,C6,0), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64isar1_el1", CPENC(3,0,C0,C6,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64mmfr0_el1", CPENC(3,0,C0,C7,0), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64mmfr1_el1", CPENC(3,0,C0,C7,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64mmfr2_el1", CPENC (3, 0, C0, C7, 2), F_ARCHEXT | F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64afr0_el1", CPENC(3,0,C0,C5,4), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64afr1_el1", CPENC(3,0,C0,C5,5), F_REG_READ }, /* RO */
|
|
|
|
|
{ "id_aa64zfr0_el1", CPENC (3, 0, C0, C4, 4), F_ARCHEXT | F_REG_READ }, /* RO */
|
|
|
|
|
{ "clidr_el1", CPENC(3,1,C0,C0,1), F_REG_READ }, /* RO */
|
2018-07-06 23:15:41 +08:00
|
|
|
|
{ "csselr_el1", CPENC(3,2,C0,C0,0), 0 },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "vpidr_el2", CPENC(3,4,C0,C0,0), 0 },
|
|
|
|
|
{ "vmpidr_el2", CPENC(3,4,C0,C0,5), 0 },
|
|
|
|
|
{ "sctlr_el1", CPENC(3,0,C1,C0,0), 0 },
|
|
|
|
|
{ "sctlr_el2", CPENC(3,4,C1,C0,0), 0 },
|
|
|
|
|
{ "sctlr_el3", CPENC(3,6,C1,C0,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "sctlr_el12", CPENC (3, 5, C1, C0, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "actlr_el1", CPENC(3,0,C1,C0,1), 0 },
|
|
|
|
|
{ "actlr_el2", CPENC(3,4,C1,C0,1), 0 },
|
|
|
|
|
{ "actlr_el3", CPENC(3,6,C1,C0,1), 0 },
|
|
|
|
|
{ "cpacr_el1", CPENC(3,0,C1,C0,2), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "cpacr_el12", CPENC (3, 5, C1, C0, 2), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "cptr_el2", CPENC(3,4,C1,C1,2), 0 },
|
|
|
|
|
{ "cptr_el3", CPENC(3,6,C1,C1,2), 0 },
|
|
|
|
|
{ "scr_el3", CPENC(3,6,C1,C1,0), 0 },
|
|
|
|
|
{ "hcr_el2", CPENC(3,4,C1,C1,0), 0 },
|
|
|
|
|
{ "mdcr_el2", CPENC(3,4,C1,C1,1), 0 },
|
|
|
|
|
{ "mdcr_el3", CPENC(3,6,C1,C3,1), 0 },
|
|
|
|
|
{ "hstr_el2", CPENC(3,4,C1,C1,3), 0 },
|
|
|
|
|
{ "hacr_el2", CPENC(3,4,C1,C1,7), 0 },
|
2017-02-16 00:54:21 +08:00
|
|
|
|
{ "zcr_el1", CPENC (3, 0, C1, C2, 0), F_ARCHEXT },
|
|
|
|
|
{ "zcr_el12", CPENC (3, 5, C1, C2, 0), F_ARCHEXT },
|
|
|
|
|
{ "zcr_el2", CPENC (3, 4, C1, C2, 0), F_ARCHEXT },
|
|
|
|
|
{ "zcr_el3", CPENC (3, 6, C1, C2, 0), F_ARCHEXT },
|
|
|
|
|
{ "zidr_el1", CPENC (3, 0, C0, C0, 7), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "ttbr0_el1", CPENC(3,0,C2,C0,0), 0 },
|
|
|
|
|
{ "ttbr1_el1", CPENC(3,0,C2,C0,1), 0 },
|
|
|
|
|
{ "ttbr0_el2", CPENC(3,4,C2,C0,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "ttbr1_el2", CPENC (3, 4, C2, C0, 1), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "ttbr0_el3", CPENC(3,6,C2,C0,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "ttbr0_el12", CPENC (3, 5, C2, C0, 0), F_ARCHEXT },
|
|
|
|
|
{ "ttbr1_el12", CPENC (3, 5, C2, C0, 1), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "vttbr_el2", CPENC(3,4,C2,C1,0), 0 },
|
|
|
|
|
{ "tcr_el1", CPENC(3,0,C2,C0,2), 0 },
|
|
|
|
|
{ "tcr_el2", CPENC(3,4,C2,C0,2), 0 },
|
|
|
|
|
{ "tcr_el3", CPENC(3,6,C2,C0,2), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "tcr_el12", CPENC (3, 5, C2, C0, 2), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "vtcr_el2", CPENC(3,4,C2,C1,2), 0 },
|
2016-11-11 18:33:30 +08:00
|
|
|
|
{ "apiakeylo_el1", CPENC (3, 0, C2, C1, 0), F_ARCHEXT },
|
|
|
|
|
{ "apiakeyhi_el1", CPENC (3, 0, C2, C1, 1), F_ARCHEXT },
|
|
|
|
|
{ "apibkeylo_el1", CPENC (3, 0, C2, C1, 2), F_ARCHEXT },
|
|
|
|
|
{ "apibkeyhi_el1", CPENC (3, 0, C2, C1, 3), F_ARCHEXT },
|
|
|
|
|
{ "apdakeylo_el1", CPENC (3, 0, C2, C2, 0), F_ARCHEXT },
|
|
|
|
|
{ "apdakeyhi_el1", CPENC (3, 0, C2, C2, 1), F_ARCHEXT },
|
|
|
|
|
{ "apdbkeylo_el1", CPENC (3, 0, C2, C2, 2), F_ARCHEXT },
|
|
|
|
|
{ "apdbkeyhi_el1", CPENC (3, 0, C2, C2, 3), F_ARCHEXT },
|
|
|
|
|
{ "apgakeylo_el1", CPENC (3, 0, C2, C3, 0), F_ARCHEXT },
|
|
|
|
|
{ "apgakeyhi_el1", CPENC (3, 0, C2, C3, 1), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "afsr0_el1", CPENC(3,0,C5,C1,0), 0 },
|
|
|
|
|
{ "afsr1_el1", CPENC(3,0,C5,C1,1), 0 },
|
|
|
|
|
{ "afsr0_el2", CPENC(3,4,C5,C1,0), 0 },
|
|
|
|
|
{ "afsr1_el2", CPENC(3,4,C5,C1,1), 0 },
|
|
|
|
|
{ "afsr0_el3", CPENC(3,6,C5,C1,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "afsr0_el12", CPENC (3, 5, C5, C1, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "afsr1_el3", CPENC(3,6,C5,C1,1), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "afsr1_el12", CPENC (3, 5, C5, C1, 1), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "esr_el1", CPENC(3,0,C5,C2,0), 0 },
|
|
|
|
|
{ "esr_el2", CPENC(3,4,C5,C2,0), 0 },
|
|
|
|
|
{ "esr_el3", CPENC(3,6,C5,C2,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "esr_el12", CPENC (3, 5, C5, C2, 0), F_ARCHEXT },
|
2018-07-06 23:15:41 +08:00
|
|
|
|
{ "vsesr_el2", CPENC (3, 4, C5, C2, 3), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "fpexc32_el2", CPENC(3,4,C5,C3,0), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "erridr_el1", CPENC (3, 0, C5, C3, 0), F_ARCHEXT | F_REG_READ }, /* RO */
|
[AArch64][PATCH 2/2] Add RAS system registers.
The ARMv8.2 RAS extension adds a number of new registers. This patch
adds the registers and makes them available whenever the RAS extension
is enabled, as it is when -march=armv8.2-a is selected.
The new registers are:
erridr_el1, errselr_el1, erxfr_el1, erxctlr, erxaddr_el1,
erxmisc0_el1, erxmisc1_el1, vsesr_el2, disr_el1 and
vdisr_el2.
gas/testsuite/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.d: Add tests for new registers.
* gas/aarch64/sysreg-2.s: Likewise. Also replace some spaces with
tabs.
opcodes/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add "vsesr_el2", "erridr_el1",
"errselr_el1", "erxfr_el1", "erxctlr", "erxaddr_el1",
"erxmisc0_el1", "erxmisc1_el1", "disr_el1" and "vdisr_el2".
(aarch64_sys_reg_supported_p): Add architecture feature tests for
new registers.
Change-Id: I8a01a0f0ee7987f89eead32650f6afcc749b3c74
2015-12-10 22:09:03 +08:00
|
|
|
|
{ "errselr_el1", CPENC (3, 0, C5, C3, 1), F_ARCHEXT },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "erxfr_el1", CPENC (3, 0, C5, C4, 0), F_ARCHEXT | F_REG_READ }, /* RO */
|
[AArch64][PATCH 2/2] Add RAS system registers.
The ARMv8.2 RAS extension adds a number of new registers. This patch
adds the registers and makes them available whenever the RAS extension
is enabled, as it is when -march=armv8.2-a is selected.
The new registers are:
erridr_el1, errselr_el1, erxfr_el1, erxctlr, erxaddr_el1,
erxmisc0_el1, erxmisc1_el1, vsesr_el2, disr_el1 and
vdisr_el2.
gas/testsuite/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.d: Add tests for new registers.
* gas/aarch64/sysreg-2.s: Likewise. Also replace some spaces with
tabs.
opcodes/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add "vsesr_el2", "erridr_el1",
"errselr_el1", "erxfr_el1", "erxctlr", "erxaddr_el1",
"erxmisc0_el1", "erxmisc1_el1", "disr_el1" and "vdisr_el2".
(aarch64_sys_reg_supported_p): Add architecture feature tests for
new registers.
Change-Id: I8a01a0f0ee7987f89eead32650f6afcc749b3c74
2015-12-10 22:09:03 +08:00
|
|
|
|
{ "erxctlr_el1", CPENC (3, 0, C5, C4, 1), F_ARCHEXT },
|
|
|
|
|
{ "erxstatus_el1", CPENC (3, 0, C5, C4, 2), F_ARCHEXT },
|
|
|
|
|
{ "erxaddr_el1", CPENC (3, 0, C5, C4, 3), F_ARCHEXT },
|
|
|
|
|
{ "erxmisc0_el1", CPENC (3, 0, C5, C5, 0), F_ARCHEXT },
|
|
|
|
|
{ "erxmisc1_el1", CPENC (3, 0, C5, C5, 1), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "far_el1", CPENC(3,0,C6,C0,0), 0 },
|
|
|
|
|
{ "far_el2", CPENC(3,4,C6,C0,0), 0 },
|
|
|
|
|
{ "far_el3", CPENC(3,6,C6,C0,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "far_el12", CPENC (3, 5, C6, C0, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "hpfar_el2", CPENC(3,4,C6,C0,4), 0 },
|
|
|
|
|
{ "par_el1", CPENC(3,0,C7,C4,0), 0 },
|
|
|
|
|
{ "mair_el1", CPENC(3,0,C10,C2,0), 0 },
|
|
|
|
|
{ "mair_el2", CPENC(3,4,C10,C2,0), 0 },
|
|
|
|
|
{ "mair_el3", CPENC(3,6,C10,C2,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "mair_el12", CPENC (3, 5, C10, C2, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "amair_el1", CPENC(3,0,C10,C3,0), 0 },
|
|
|
|
|
{ "amair_el2", CPENC(3,4,C10,C3,0), 0 },
|
|
|
|
|
{ "amair_el3", CPENC(3,6,C10,C3,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "amair_el12", CPENC (3, 5, C10, C3, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "vbar_el1", CPENC(3,0,C12,C0,0), 0 },
|
|
|
|
|
{ "vbar_el2", CPENC(3,4,C12,C0,0), 0 },
|
|
|
|
|
{ "vbar_el3", CPENC(3,6,C12,C0,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "vbar_el12", CPENC (3, 5, C12, C0, 0), F_ARCHEXT },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "rvbar_el1", CPENC(3,0,C12,C0,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "rvbar_el2", CPENC(3,4,C12,C0,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "rvbar_el3", CPENC(3,6,C12,C0,1), F_REG_READ }, /* RO */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "rmr_el1", CPENC(3,0,C12,C0,2), 0 },
|
|
|
|
|
{ "rmr_el2", CPENC(3,4,C12,C0,2), 0 },
|
|
|
|
|
{ "rmr_el3", CPENC(3,6,C12,C0,2), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "isr_el1", CPENC(3,0,C12,C1,0), F_REG_READ }, /* RO */
|
[AArch64][PATCH 2/2] Add RAS system registers.
The ARMv8.2 RAS extension adds a number of new registers. This patch
adds the registers and makes them available whenever the RAS extension
is enabled, as it is when -march=armv8.2-a is selected.
The new registers are:
erridr_el1, errselr_el1, erxfr_el1, erxctlr, erxaddr_el1,
erxmisc0_el1, erxmisc1_el1, vsesr_el2, disr_el1 and
vdisr_el2.
gas/testsuite/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.d: Add tests for new registers.
* gas/aarch64/sysreg-2.s: Likewise. Also replace some spaces with
tabs.
opcodes/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add "vsesr_el2", "erridr_el1",
"errselr_el1", "erxfr_el1", "erxctlr", "erxaddr_el1",
"erxmisc0_el1", "erxmisc1_el1", "disr_el1" and "vdisr_el2".
(aarch64_sys_reg_supported_p): Add architecture feature tests for
new registers.
Change-Id: I8a01a0f0ee7987f89eead32650f6afcc749b3c74
2015-12-10 22:09:03 +08:00
|
|
|
|
{ "disr_el1", CPENC (3, 0, C12, C1, 1), F_ARCHEXT },
|
|
|
|
|
{ "vdisr_el2", CPENC (3, 4, C12, C1, 1), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "contextidr_el1", CPENC(3,0,C13,C0,1), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "contextidr_el2", CPENC (3, 4, C13, C0, 1), F_ARCHEXT },
|
|
|
|
|
{ "contextidr_el12", CPENC (3, 5, C13, C0, 1), F_ARCHEXT },
|
2018-09-26 17:57:16 +08:00
|
|
|
|
{ "rndr", CPENC(3,3,C2,C4,0), F_ARCHEXT | F_REG_READ }, /* RO */
|
|
|
|
|
{ "rndrrs", CPENC(3,3,C2,C4,1), F_ARCHEXT | F_REG_READ }, /* RO */
|
[BINUTILS, AARCH64, 7/8] Add system registers for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the system registers that are part of this
extension and are accessible via the MRS/MSR instructions:
- TCO
- TFSRE0_SL1
- TFSR_EL1
- TFSR_EL2
- TFSR_EL3
- TFSR_EL12
- RGSR_EL1
- GCR_EL1
TCO is also accessible with the MSR(immediate) instruction.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for TCO,
TFSRE0_SL1, TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12,
RGSR_EL1 and GCR_EL1.
(aarch64_sys_reg_supported_p): New check for above.
(aarch64_pstatefields): New entry for TCO.
(aarch64_pstatefield_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test TCO, TFSRE0_SL1,
TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12, RGSR_EL1 and
GCR_EL1 MSR and MRS.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:26:01 +08:00
|
|
|
|
{ "tco", CPENC(3,3,C4,C2,7), F_ARCHEXT },
|
[AArch64][gas] Update MTE system register encodings
The MTE specification adjusted the encoding of the TFSRE0_EL1, TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12 system registers.
This patch brings binutils up to date.
The references for the encodings are at:
https://developer.arm.com/docs/ddi0595/latest/aarch64-system-registers/tfsre0_el1 (also contains TFSR_EL12 description)
https://developer.arm.com/docs/ddi0595/latest/aarch64-system-registers/tfsr_el1
https://developer.arm.com/docs/ddi0595/latest/aarch64-system-registers/tfsr_el2
https://developer.arm.com/docs/ddi0595/latest/aarch64-system-registers/tfsr_el3
Tested check-gas for aarch64-none-elf.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Update encoding of tfsre0_el1,
tfsr_el1, tfsr_el2, tfsr_el3, tfsr_el12.
(aarch64_sys_reg_supported_p): Update checks for the above.
gas/
* testsuite/gas/aarch64/sysreg-4.d: Update expected disassembly for
tfsre0_el1, tfsr_el1, tfsr_el2, tfsr_el3, tfsr_el12 system registers.
2019-08-22 17:20:01 +08:00
|
|
|
|
{ "tfsre0_el1", CPENC(3,0,C5,C6,1), F_ARCHEXT },
|
|
|
|
|
{ "tfsr_el1", CPENC(3,0,C5,C6,0), F_ARCHEXT },
|
|
|
|
|
{ "tfsr_el2", CPENC(3,4,C5,C6,0), F_ARCHEXT },
|
|
|
|
|
{ "tfsr_el3", CPENC(3,6,C5,C6,0), F_ARCHEXT },
|
|
|
|
|
{ "tfsr_el12", CPENC(3,5,C5,C6,0), F_ARCHEXT },
|
[BINUTILS, AARCH64, 7/8] Add system registers for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the system registers that are part of this
extension and are accessible via the MRS/MSR instructions:
- TCO
- TFSRE0_SL1
- TFSR_EL1
- TFSR_EL2
- TFSR_EL3
- TFSR_EL12
- RGSR_EL1
- GCR_EL1
TCO is also accessible with the MSR(immediate) instruction.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for TCO,
TFSRE0_SL1, TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12,
RGSR_EL1 and GCR_EL1.
(aarch64_sys_reg_supported_p): New check for above.
(aarch64_pstatefields): New entry for TCO.
(aarch64_pstatefield_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test TCO, TFSRE0_SL1,
TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12, RGSR_EL1 and
GCR_EL1 MSR and MRS.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:26:01 +08:00
|
|
|
|
{ "rgsr_el1", CPENC(3,0,C1,C0,5), F_ARCHEXT },
|
|
|
|
|
{ "gcr_el1", CPENC(3,0,C1,C0,6), F_ARCHEXT },
|
2019-07-23 22:54:54 +08:00
|
|
|
|
{ "gmid_el1", CPENC(3,1,C0,C0,4), F_ARCHEXT | F_REG_READ }, /* RO */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "tpidr_el0", CPENC(3,3,C13,C0,2), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "tpidrro_el0", CPENC(3,3,C13,C0,3), 0 }, /* RW */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "tpidr_el1", CPENC(3,0,C13,C0,4), 0 },
|
|
|
|
|
{ "tpidr_el2", CPENC(3,4,C13,C0,2), 0 },
|
|
|
|
|
{ "tpidr_el3", CPENC(3,6,C13,C0,2), 0 },
|
[PATCH, BINUTILS, AARCH64, 8/9] Add SCXTNUM_ELx and ID_PFR2_EL1 system registers
This patch is part of the patch series to add support for ARMv8.5-A
extensions.
(https://developer.arm.com/products/architecture/cpu-architecture/a-profile/exploration-tools)
The encodings can be found in the System Register XML.
This patch adds the new system registers SCXTNUM_ELx and ID_PFR2_EL1.
*** include/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (AARCH64_FEATURE_SCXTNUM): New.
(AARCH64_FEATURE_ID_PFR2): New.
(AARCH64_ARCH_V8_5): Add both by default.
*** opcodes/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for
scxtnum_el[0,1,2,3,12] and id_pfr2_el1.
(aarch64_sys_reg_supported_p): New checks for above.
*** gas/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test registers
scxtnum_el[0,1,2,3,12] and id_pfr2_el1.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-09-26 18:02:28 +08:00
|
|
|
|
{ "scxtnum_el0", CPENC(3,3,C13,C0,7), F_ARCHEXT },
|
|
|
|
|
{ "scxtnum_el1", CPENC(3,0,C13,C0,7), F_ARCHEXT },
|
|
|
|
|
{ "scxtnum_el2", CPENC(3,4,C13,C0,7), F_ARCHEXT },
|
|
|
|
|
{ "scxtnum_el12", CPENC(3,5,C13,C0,7), F_ARCHEXT },
|
|
|
|
|
{ "scxtnum_el3", CPENC(3,6,C13,C0,7), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "teecr32_el1", CPENC(2,2,C0, C0,0), 0 }, /* See section 3.9.7.1 */
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "cntfrq_el0", CPENC(3,3,C14,C0,0), 0 }, /* RW */
|
|
|
|
|
{ "cntpct_el0", CPENC(3,3,C14,C0,1), F_REG_READ }, /* RO */
|
|
|
|
|
{ "cntvct_el0", CPENC(3,3,C14,C0,2), F_REG_READ }, /* RO */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "cntvoff_el2", CPENC(3,4,C14,C0,3), 0 },
|
|
|
|
|
{ "cntkctl_el1", CPENC(3,0,C14,C1,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "cntkctl_el12", CPENC (3, 5, C14, C1, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "cnthctl_el2", CPENC(3,4,C14,C1,0), 0 },
|
|
|
|
|
{ "cntp_tval_el0", CPENC(3,3,C14,C2,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "cntp_tval_el02", CPENC (3, 5, C14, C2, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "cntp_ctl_el0", CPENC(3,3,C14,C2,1), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "cntp_ctl_el02", CPENC (3, 5, C14, C2, 1), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "cntp_cval_el0", CPENC(3,3,C14,C2,2), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "cntp_cval_el02", CPENC (3, 5, C14, C2, 2), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "cntv_tval_el0", CPENC(3,3,C14,C3,0), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "cntv_tval_el02", CPENC (3, 5, C14, C3, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "cntv_ctl_el0", CPENC(3,3,C14,C3,1), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "cntv_ctl_el02", CPENC (3, 5, C14, C3, 1), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "cntv_cval_el0", CPENC(3,3,C14,C3,2), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "cntv_cval_el02", CPENC (3, 5, C14, C3, 2), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "cnthp_tval_el2", CPENC(3,4,C14,C2,0), 0 },
|
|
|
|
|
{ "cnthp_ctl_el2", CPENC(3,4,C14,C2,1), 0 },
|
|
|
|
|
{ "cnthp_cval_el2", CPENC(3,4,C14,C2,2), 0 },
|
|
|
|
|
{ "cntps_tval_el1", CPENC(3,7,C14,C2,0), 0 },
|
|
|
|
|
{ "cntps_ctl_el1", CPENC(3,7,C14,C2,1), 0 },
|
|
|
|
|
{ "cntps_cval_el1", CPENC(3,7,C14,C2,2), 0 },
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
{ "cnthv_tval_el2", CPENC (3, 4, C14, C3, 0), F_ARCHEXT },
|
|
|
|
|
{ "cnthv_ctl_el2", CPENC (3, 4, C14, C3, 1), F_ARCHEXT },
|
|
|
|
|
{ "cnthv_cval_el2", CPENC (3, 4, C14, C3, 2), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "dacr32_el2", CPENC(3,4,C3,C0,0), 0 },
|
|
|
|
|
{ "ifsr32_el2", CPENC(3,4,C5,C0,1), 0 },
|
|
|
|
|
{ "teehbr32_el1", CPENC(2,2,C1,C0,0), 0 },
|
|
|
|
|
{ "sder32_el3", CPENC(3,6,C1,C1,1), 0 },
|
|
|
|
|
{ "mdscr_el1", CPENC(2,0,C0, C2, 2), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "mdccsr_el0", CPENC(2,3,C0, C1, 0), F_REG_READ }, /* r */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "mdccint_el1", CPENC(2,0,C0, C2, 0), 0 },
|
|
|
|
|
{ "dbgdtr_el0", CPENC(2,3,C0, C4, 0), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "dbgdtrrx_el0", CPENC(2,3,C0, C5, 0), F_REG_READ }, /* r */
|
|
|
|
|
{ "dbgdtrtx_el0", CPENC(2,3,C0, C5, 0), F_REG_WRITE }, /* w */
|
2018-07-06 23:15:41 +08:00
|
|
|
|
{ "osdtrrx_el1", CPENC(2,0,C0, C0, 2), 0 },
|
|
|
|
|
{ "osdtrtx_el1", CPENC(2,0,C0, C3, 2), 0 },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "oseccr_el1", CPENC(2,0,C0, C6, 2), 0 },
|
|
|
|
|
{ "dbgvcr32_el2", CPENC(2,4,C0, C7, 0), 0 },
|
|
|
|
|
{ "dbgbvr0_el1", CPENC(2,0,C0, C0, 4), 0 },
|
|
|
|
|
{ "dbgbvr1_el1", CPENC(2,0,C0, C1, 4), 0 },
|
|
|
|
|
{ "dbgbvr2_el1", CPENC(2,0,C0, C2, 4), 0 },
|
|
|
|
|
{ "dbgbvr3_el1", CPENC(2,0,C0, C3, 4), 0 },
|
|
|
|
|
{ "dbgbvr4_el1", CPENC(2,0,C0, C4, 4), 0 },
|
|
|
|
|
{ "dbgbvr5_el1", CPENC(2,0,C0, C5, 4), 0 },
|
|
|
|
|
{ "dbgbvr6_el1", CPENC(2,0,C0, C6, 4), 0 },
|
|
|
|
|
{ "dbgbvr7_el1", CPENC(2,0,C0, C7, 4), 0 },
|
|
|
|
|
{ "dbgbvr8_el1", CPENC(2,0,C0, C8, 4), 0 },
|
|
|
|
|
{ "dbgbvr9_el1", CPENC(2,0,C0, C9, 4), 0 },
|
|
|
|
|
{ "dbgbvr10_el1", CPENC(2,0,C0, C10,4), 0 },
|
|
|
|
|
{ "dbgbvr11_el1", CPENC(2,0,C0, C11,4), 0 },
|
|
|
|
|
{ "dbgbvr12_el1", CPENC(2,0,C0, C12,4), 0 },
|
|
|
|
|
{ "dbgbvr13_el1", CPENC(2,0,C0, C13,4), 0 },
|
|
|
|
|
{ "dbgbvr14_el1", CPENC(2,0,C0, C14,4), 0 },
|
|
|
|
|
{ "dbgbvr15_el1", CPENC(2,0,C0, C15,4), 0 },
|
|
|
|
|
{ "dbgbcr0_el1", CPENC(2,0,C0, C0, 5), 0 },
|
|
|
|
|
{ "dbgbcr1_el1", CPENC(2,0,C0, C1, 5), 0 },
|
|
|
|
|
{ "dbgbcr2_el1", CPENC(2,0,C0, C2, 5), 0 },
|
|
|
|
|
{ "dbgbcr3_el1", CPENC(2,0,C0, C3, 5), 0 },
|
|
|
|
|
{ "dbgbcr4_el1", CPENC(2,0,C0, C4, 5), 0 },
|
|
|
|
|
{ "dbgbcr5_el1", CPENC(2,0,C0, C5, 5), 0 },
|
|
|
|
|
{ "dbgbcr6_el1", CPENC(2,0,C0, C6, 5), 0 },
|
|
|
|
|
{ "dbgbcr7_el1", CPENC(2,0,C0, C7, 5), 0 },
|
|
|
|
|
{ "dbgbcr8_el1", CPENC(2,0,C0, C8, 5), 0 },
|
|
|
|
|
{ "dbgbcr9_el1", CPENC(2,0,C0, C9, 5), 0 },
|
|
|
|
|
{ "dbgbcr10_el1", CPENC(2,0,C0, C10,5), 0 },
|
|
|
|
|
{ "dbgbcr11_el1", CPENC(2,0,C0, C11,5), 0 },
|
|
|
|
|
{ "dbgbcr12_el1", CPENC(2,0,C0, C12,5), 0 },
|
|
|
|
|
{ "dbgbcr13_el1", CPENC(2,0,C0, C13,5), 0 },
|
|
|
|
|
{ "dbgbcr14_el1", CPENC(2,0,C0, C14,5), 0 },
|
|
|
|
|
{ "dbgbcr15_el1", CPENC(2,0,C0, C15,5), 0 },
|
|
|
|
|
{ "dbgwvr0_el1", CPENC(2,0,C0, C0, 6), 0 },
|
|
|
|
|
{ "dbgwvr1_el1", CPENC(2,0,C0, C1, 6), 0 },
|
|
|
|
|
{ "dbgwvr2_el1", CPENC(2,0,C0, C2, 6), 0 },
|
|
|
|
|
{ "dbgwvr3_el1", CPENC(2,0,C0, C3, 6), 0 },
|
|
|
|
|
{ "dbgwvr4_el1", CPENC(2,0,C0, C4, 6), 0 },
|
|
|
|
|
{ "dbgwvr5_el1", CPENC(2,0,C0, C5, 6), 0 },
|
|
|
|
|
{ "dbgwvr6_el1", CPENC(2,0,C0, C6, 6), 0 },
|
|
|
|
|
{ "dbgwvr7_el1", CPENC(2,0,C0, C7, 6), 0 },
|
|
|
|
|
{ "dbgwvr8_el1", CPENC(2,0,C0, C8, 6), 0 },
|
|
|
|
|
{ "dbgwvr9_el1", CPENC(2,0,C0, C9, 6), 0 },
|
|
|
|
|
{ "dbgwvr10_el1", CPENC(2,0,C0, C10,6), 0 },
|
|
|
|
|
{ "dbgwvr11_el1", CPENC(2,0,C0, C11,6), 0 },
|
|
|
|
|
{ "dbgwvr12_el1", CPENC(2,0,C0, C12,6), 0 },
|
|
|
|
|
{ "dbgwvr13_el1", CPENC(2,0,C0, C13,6), 0 },
|
|
|
|
|
{ "dbgwvr14_el1", CPENC(2,0,C0, C14,6), 0 },
|
|
|
|
|
{ "dbgwvr15_el1", CPENC(2,0,C0, C15,6), 0 },
|
|
|
|
|
{ "dbgwcr0_el1", CPENC(2,0,C0, C0, 7), 0 },
|
|
|
|
|
{ "dbgwcr1_el1", CPENC(2,0,C0, C1, 7), 0 },
|
|
|
|
|
{ "dbgwcr2_el1", CPENC(2,0,C0, C2, 7), 0 },
|
|
|
|
|
{ "dbgwcr3_el1", CPENC(2,0,C0, C3, 7), 0 },
|
|
|
|
|
{ "dbgwcr4_el1", CPENC(2,0,C0, C4, 7), 0 },
|
|
|
|
|
{ "dbgwcr5_el1", CPENC(2,0,C0, C5, 7), 0 },
|
|
|
|
|
{ "dbgwcr6_el1", CPENC(2,0,C0, C6, 7), 0 },
|
|
|
|
|
{ "dbgwcr7_el1", CPENC(2,0,C0, C7, 7), 0 },
|
|
|
|
|
{ "dbgwcr8_el1", CPENC(2,0,C0, C8, 7), 0 },
|
|
|
|
|
{ "dbgwcr9_el1", CPENC(2,0,C0, C9, 7), 0 },
|
|
|
|
|
{ "dbgwcr10_el1", CPENC(2,0,C0, C10,7), 0 },
|
|
|
|
|
{ "dbgwcr11_el1", CPENC(2,0,C0, C11,7), 0 },
|
|
|
|
|
{ "dbgwcr12_el1", CPENC(2,0,C0, C12,7), 0 },
|
|
|
|
|
{ "dbgwcr13_el1", CPENC(2,0,C0, C13,7), 0 },
|
|
|
|
|
{ "dbgwcr14_el1", CPENC(2,0,C0, C14,7), 0 },
|
|
|
|
|
{ "dbgwcr15_el1", CPENC(2,0,C0, C15,7), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "mdrar_el1", CPENC(2,0,C1, C0, 0), F_REG_READ }, /* r */
|
|
|
|
|
{ "oslar_el1", CPENC(2,0,C1, C0, 4), F_REG_WRITE }, /* w */
|
|
|
|
|
{ "oslsr_el1", CPENC(2,0,C1, C1, 4), F_REG_READ }, /* r */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "osdlr_el1", CPENC(2,0,C1, C3, 4), 0 },
|
|
|
|
|
{ "dbgprcr_el1", CPENC(2,0,C1, C4, 4), 0 },
|
|
|
|
|
{ "dbgclaimset_el1", CPENC(2,0,C7, C8, 6), 0 },
|
|
|
|
|
{ "dbgclaimclr_el1", CPENC(2,0,C7, C9, 6), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "dbgauthstatus_el1", CPENC(2,0,C7, C14,6), F_REG_READ }, /* r */
|
[AArch64][Patch 2/5] Add Statistical Profiling Extension system registers.
The Statistical Profile extension included in the ARMv8.2 architecture
adds a number of system registers. This patch adds the registers to
binutils, making them available when the architecture extension
"+profile" is enabled.
opcodes/
2015-12-11 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_reg): Add pbmlimitr_el1, pmbptr_el1,
pmbsr_el1, pmbidr_el1, pmscr_el1, pmsicr_el1, pmsirr_el1,
pmsfcr_el1, pmsevfr_el1, pmslatfr_el1, pmsidr_el1, pmscr_el2 and
pmscr_el2.
(aarch64_sys_reg_supported_p): Add architecture feature tests for
the new registers.
gas/testsuite/
2015-12-11 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.s: Add tests for the statistical profiling
system registers.
* gas/aarch64/sysreg-2.d: Enable the statistical profiling
extension and update the expected output.
Change-Id: Ibf23ad34db7c33f0fcd30010b796748b38be6efb
2015-12-11 17:52:11 +08:00
|
|
|
|
{ "pmblimitr_el1", CPENC (3, 0, C9, C10, 0), F_ARCHEXT }, /* rw */
|
|
|
|
|
{ "pmbptr_el1", CPENC (3, 0, C9, C10, 1), F_ARCHEXT }, /* rw */
|
|
|
|
|
{ "pmbsr_el1", CPENC (3, 0, C9, C10, 3), F_ARCHEXT }, /* rw */
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "pmbidr_el1", CPENC (3, 0, C9, C10, 7), F_ARCHEXT | F_REG_READ }, /* ro */
|
[AArch64][Patch 2/5] Add Statistical Profiling Extension system registers.
The Statistical Profile extension included in the ARMv8.2 architecture
adds a number of system registers. This patch adds the registers to
binutils, making them available when the architecture extension
"+profile" is enabled.
opcodes/
2015-12-11 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_reg): Add pbmlimitr_el1, pmbptr_el1,
pmbsr_el1, pmbidr_el1, pmscr_el1, pmsicr_el1, pmsirr_el1,
pmsfcr_el1, pmsevfr_el1, pmslatfr_el1, pmsidr_el1, pmscr_el2 and
pmscr_el2.
(aarch64_sys_reg_supported_p): Add architecture feature tests for
the new registers.
gas/testsuite/
2015-12-11 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.s: Add tests for the statistical profiling
system registers.
* gas/aarch64/sysreg-2.d: Enable the statistical profiling
extension and update the expected output.
Change-Id: Ibf23ad34db7c33f0fcd30010b796748b38be6efb
2015-12-11 17:52:11 +08:00
|
|
|
|
{ "pmscr_el1", CPENC (3, 0, C9, C9, 0), F_ARCHEXT }, /* rw */
|
|
|
|
|
{ "pmsicr_el1", CPENC (3, 0, C9, C9, 2), F_ARCHEXT }, /* rw */
|
|
|
|
|
{ "pmsirr_el1", CPENC (3, 0, C9, C9, 3), F_ARCHEXT }, /* rw */
|
|
|
|
|
{ "pmsfcr_el1", CPENC (3, 0, C9, C9, 4), F_ARCHEXT }, /* rw */
|
|
|
|
|
{ "pmsevfr_el1", CPENC (3, 0, C9, C9, 5), F_ARCHEXT }, /* rw */
|
|
|
|
|
{ "pmslatfr_el1", CPENC (3, 0, C9, C9, 6), F_ARCHEXT }, /* rw */
|
2018-07-06 23:15:41 +08:00
|
|
|
|
{ "pmsidr_el1", CPENC (3, 0, C9, C9, 7), F_ARCHEXT }, /* rw */
|
[AArch64][Patch 2/5] Add Statistical Profiling Extension system registers.
The Statistical Profile extension included in the ARMv8.2 architecture
adds a number of system registers. This patch adds the registers to
binutils, making them available when the architecture extension
"+profile" is enabled.
opcodes/
2015-12-11 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_reg): Add pbmlimitr_el1, pmbptr_el1,
pmbsr_el1, pmbidr_el1, pmscr_el1, pmsicr_el1, pmsirr_el1,
pmsfcr_el1, pmsevfr_el1, pmslatfr_el1, pmsidr_el1, pmscr_el2 and
pmscr_el2.
(aarch64_sys_reg_supported_p): Add architecture feature tests for
the new registers.
gas/testsuite/
2015-12-11 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.s: Add tests for the statistical profiling
system registers.
* gas/aarch64/sysreg-2.d: Enable the statistical profiling
extension and update the expected output.
Change-Id: Ibf23ad34db7c33f0fcd30010b796748b38be6efb
2015-12-11 17:52:11 +08:00
|
|
|
|
{ "pmscr_el2", CPENC (3, 4, C9, C9, 0), F_ARCHEXT }, /* rw */
|
|
|
|
|
{ "pmscr_el12", CPENC (3, 5, C9, C9, 0), F_ARCHEXT }, /* rw */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "pmcr_el0", CPENC(3,3,C9,C12, 0), 0 },
|
|
|
|
|
{ "pmcntenset_el0", CPENC(3,3,C9,C12, 1), 0 },
|
|
|
|
|
{ "pmcntenclr_el0", CPENC(3,3,C9,C12, 2), 0 },
|
|
|
|
|
{ "pmovsclr_el0", CPENC(3,3,C9,C12, 3), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "pmswinc_el0", CPENC(3,3,C9,C12, 4), F_REG_WRITE }, /* w */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "pmselr_el0", CPENC(3,3,C9,C12, 5), 0 },
|
Implement Read/Write constraints on system registers on AArch64
This patch adds constraints for read and write only system registers with the
msr and mrs instructions. The code will treat having both flags set and none
set as the same. These flags add constraints that must be matched up. e.g. a
system register with a READ only flag set, can only be used with mrs. If The
constraint fails a warning is emitted.
Examples of the warnings generated:
test.s: Assembler messages:
test.s:5: Warning: specified register cannot be written to at operand 1 -- `msr dbgdtrrx_el0,x3'
test.s:7: Warning: specified register cannot be read from at operand 2 -- `mrs x3,dbgdtrtx_el0'
test.s:8: Warning: specified register cannot be written to at operand 1 -- `msr midr_el1,x3'
and disassembly notes:
0000000000000000 <main>:
0: d5130503 msr dbgdtrtx_el0, x3
4: d5130503 msr dbgdtrtx_el0, x3
8: d5330503 mrs x3, dbgdtrrx_el0
c: d5330503 mrs x3, dbgdtrrx_el0
10: d5180003 msr midr_el1, x3 ; note: writing to a read-only register.
Note that because dbgdtrrx_el0 and dbgdtrtx_el0 have the same encoding, during
disassembly the constraints are use to disambiguate between the two. An exact
constraint match is always prefered over partial ones if available.
As always the warnings can be suppressed with -w and also be made errors using
warnings as errors.
binutils/
PR binutils/21446
* doc/binutils.texi (-M): Document AArch64 options.
gas/
PR binutils/21446
* testsuite/gas/aarch64/illegal-sysreg-2.s: Fix pmbidr_el1 test.
* testsuite/gas/aarch64/illegal-sysreg-2.l: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-2.d: Likewise.
* testsuite/gas/aarch64/sysreg-diagnostic.s: New.
* testsuite/gas/aarch64/sysreg-diagnostic.l: New.
* testsuite/gas/aarch64/sysreg-diagnostic.d: New.
include/
PR binutils/21446
* opcode/aarch64.h (F_SYS_READ, F_SYS_WRITE): New.
opcodes/
PR binutils/21446
* aarch64-asm.c (opintl.h): Include.
(aarch64_ins_sysreg): Enforce read/write constraints.
* aarch64-dis.c (aarch64_ext_sysreg): Likewise.
* aarch64-opc.h (F_DEPRECATED, F_ARCHEXT, F_HASXT): Moved here.
(F_REG_READ, F_REG_WRITE): New.
* aarch64-opc.c (aarch64_print_operand): Generate notes for
AARCH64_OPND_SYSREG.
(F_DEPRECATED, F_ARCHEXT, F_HASXT): Move to aarch64-opc.h.
(aarch64_sys_regs): Add constraints to currentel, midr_el1, ctr_el0,
mpidr_el1, revidr_el1, aidr_el1, dczid_el0, id_dfr0_el1, id_pfr0_el1,
id_pfr1_el1, id_afr0_el1, id_mmfr0_el1, id_mmfr1_el1, id_mmfr2_el1,
id_mmfr3_el1, id_mmfr4_el1, id_isar0_el1, id_isar1_el1, id_isar2_el1,
id_isar3_el1, id_isar4_el1, id_isar5_el1, mvfr0_el1, mvfr1_el1,
mvfr2_el1, ccsidr_el1, id_aa64pfr0_el1, id_aa64pfr1_el1,
id_aa64dfr0_el1, id_aa64dfr1_el1, id_aa64isar0_el1, id_aa64isar1_el1,
id_aa64mmfr0_el1, id_aa64mmfr1_el1, id_aa64mmfr2_el1, id_aa64afr0_el1,
id_aa64afr0_el1, id_aa64afr1_el1, id_aa64zfr0_el1, clidr_el1,
csselr_el1, vsesr_el2, erridr_el1, erxfr_el1, rvbar_el1, rvbar_el2,
rvbar_el3, isr_el1, tpidrro_el0, cntfrq_el0, cntpct_el0, cntvct_el0,
mdccsr_el0, dbgdtrrx_el0, dbgdtrtx_el0, osdtrrx_el1, osdtrtx_el1,
mdrar_el1, oslar_el1, oslsr_el1, dbgauthstatus_el1, pmbidr_el1,
pmsidr_el1, pmswinc_el0, pmceid0_el0, pmceid1_el0.
* aarch64-tbl.h (aarch64_opcode_table): Add constraints to
msr (F_SYS_WRITE), mrs (F_SYS_READ).
2018-05-15 23:37:20 +08:00
|
|
|
|
{ "pmceid0_el0", CPENC(3,3,C9,C12, 6), F_REG_READ }, /* r */
|
|
|
|
|
{ "pmceid1_el0", CPENC(3,3,C9,C12, 7), F_REG_READ }, /* r */
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ "pmccntr_el0", CPENC(3,3,C9,C13, 0), 0 },
|
|
|
|
|
{ "pmxevtyper_el0", CPENC(3,3,C9,C13, 1), 0 },
|
|
|
|
|
{ "pmxevcntr_el0", CPENC(3,3,C9,C13, 2), 0 },
|
|
|
|
|
{ "pmuserenr_el0", CPENC(3,3,C9,C14, 0), 0 },
|
|
|
|
|
{ "pmintenset_el1", CPENC(3,0,C9,C14, 1), 0 },
|
|
|
|
|
{ "pmintenclr_el1", CPENC(3,0,C9,C14, 2), 0 },
|
|
|
|
|
{ "pmovsset_el0", CPENC(3,3,C9,C14, 3), 0 },
|
|
|
|
|
{ "pmevcntr0_el0", CPENC(3,3,C14,C8, 0), 0 },
|
|
|
|
|
{ "pmevcntr1_el0", CPENC(3,3,C14,C8, 1), 0 },
|
|
|
|
|
{ "pmevcntr2_el0", CPENC(3,3,C14,C8, 2), 0 },
|
|
|
|
|
{ "pmevcntr3_el0", CPENC(3,3,C14,C8, 3), 0 },
|
|
|
|
|
{ "pmevcntr4_el0", CPENC(3,3,C14,C8, 4), 0 },
|
|
|
|
|
{ "pmevcntr5_el0", CPENC(3,3,C14,C8, 5), 0 },
|
|
|
|
|
{ "pmevcntr6_el0", CPENC(3,3,C14,C8, 6), 0 },
|
|
|
|
|
{ "pmevcntr7_el0", CPENC(3,3,C14,C8, 7), 0 },
|
|
|
|
|
{ "pmevcntr8_el0", CPENC(3,3,C14,C9, 0), 0 },
|
|
|
|
|
{ "pmevcntr9_el0", CPENC(3,3,C14,C9, 1), 0 },
|
|
|
|
|
{ "pmevcntr10_el0", CPENC(3,3,C14,C9, 2), 0 },
|
|
|
|
|
{ "pmevcntr11_el0", CPENC(3,3,C14,C9, 3), 0 },
|
|
|
|
|
{ "pmevcntr12_el0", CPENC(3,3,C14,C9, 4), 0 },
|
|
|
|
|
{ "pmevcntr13_el0", CPENC(3,3,C14,C9, 5), 0 },
|
|
|
|
|
{ "pmevcntr14_el0", CPENC(3,3,C14,C9, 6), 0 },
|
|
|
|
|
{ "pmevcntr15_el0", CPENC(3,3,C14,C9, 7), 0 },
|
|
|
|
|
{ "pmevcntr16_el0", CPENC(3,3,C14,C10,0), 0 },
|
|
|
|
|
{ "pmevcntr17_el0", CPENC(3,3,C14,C10,1), 0 },
|
|
|
|
|
{ "pmevcntr18_el0", CPENC(3,3,C14,C10,2), 0 },
|
|
|
|
|
{ "pmevcntr19_el0", CPENC(3,3,C14,C10,3), 0 },
|
|
|
|
|
{ "pmevcntr20_el0", CPENC(3,3,C14,C10,4), 0 },
|
|
|
|
|
{ "pmevcntr21_el0", CPENC(3,3,C14,C10,5), 0 },
|
|
|
|
|
{ "pmevcntr22_el0", CPENC(3,3,C14,C10,6), 0 },
|
|
|
|
|
{ "pmevcntr23_el0", CPENC(3,3,C14,C10,7), 0 },
|
|
|
|
|
{ "pmevcntr24_el0", CPENC(3,3,C14,C11,0), 0 },
|
|
|
|
|
{ "pmevcntr25_el0", CPENC(3,3,C14,C11,1), 0 },
|
|
|
|
|
{ "pmevcntr26_el0", CPENC(3,3,C14,C11,2), 0 },
|
|
|
|
|
{ "pmevcntr27_el0", CPENC(3,3,C14,C11,3), 0 },
|
|
|
|
|
{ "pmevcntr28_el0", CPENC(3,3,C14,C11,4), 0 },
|
|
|
|
|
{ "pmevcntr29_el0", CPENC(3,3,C14,C11,5), 0 },
|
|
|
|
|
{ "pmevcntr30_el0", CPENC(3,3,C14,C11,6), 0 },
|
|
|
|
|
{ "pmevtyper0_el0", CPENC(3,3,C14,C12,0), 0 },
|
|
|
|
|
{ "pmevtyper1_el0", CPENC(3,3,C14,C12,1), 0 },
|
|
|
|
|
{ "pmevtyper2_el0", CPENC(3,3,C14,C12,2), 0 },
|
|
|
|
|
{ "pmevtyper3_el0", CPENC(3,3,C14,C12,3), 0 },
|
|
|
|
|
{ "pmevtyper4_el0", CPENC(3,3,C14,C12,4), 0 },
|
|
|
|
|
{ "pmevtyper5_el0", CPENC(3,3,C14,C12,5), 0 },
|
|
|
|
|
{ "pmevtyper6_el0", CPENC(3,3,C14,C12,6), 0 },
|
|
|
|
|
{ "pmevtyper7_el0", CPENC(3,3,C14,C12,7), 0 },
|
|
|
|
|
{ "pmevtyper8_el0", CPENC(3,3,C14,C13,0), 0 },
|
|
|
|
|
{ "pmevtyper9_el0", CPENC(3,3,C14,C13,1), 0 },
|
|
|
|
|
{ "pmevtyper10_el0", CPENC(3,3,C14,C13,2), 0 },
|
|
|
|
|
{ "pmevtyper11_el0", CPENC(3,3,C14,C13,3), 0 },
|
|
|
|
|
{ "pmevtyper12_el0", CPENC(3,3,C14,C13,4), 0 },
|
|
|
|
|
{ "pmevtyper13_el0", CPENC(3,3,C14,C13,5), 0 },
|
|
|
|
|
{ "pmevtyper14_el0", CPENC(3,3,C14,C13,6), 0 },
|
|
|
|
|
{ "pmevtyper15_el0", CPENC(3,3,C14,C13,7), 0 },
|
|
|
|
|
{ "pmevtyper16_el0", CPENC(3,3,C14,C14,0), 0 },
|
|
|
|
|
{ "pmevtyper17_el0", CPENC(3,3,C14,C14,1), 0 },
|
|
|
|
|
{ "pmevtyper18_el0", CPENC(3,3,C14,C14,2), 0 },
|
|
|
|
|
{ "pmevtyper19_el0", CPENC(3,3,C14,C14,3), 0 },
|
|
|
|
|
{ "pmevtyper20_el0", CPENC(3,3,C14,C14,4), 0 },
|
|
|
|
|
{ "pmevtyper21_el0", CPENC(3,3,C14,C14,5), 0 },
|
|
|
|
|
{ "pmevtyper22_el0", CPENC(3,3,C14,C14,6), 0 },
|
|
|
|
|
{ "pmevtyper23_el0", CPENC(3,3,C14,C14,7), 0 },
|
|
|
|
|
{ "pmevtyper24_el0", CPENC(3,3,C14,C15,0), 0 },
|
|
|
|
|
{ "pmevtyper25_el0", CPENC(3,3,C14,C15,1), 0 },
|
|
|
|
|
{ "pmevtyper26_el0", CPENC(3,3,C14,C15,2), 0 },
|
|
|
|
|
{ "pmevtyper27_el0", CPENC(3,3,C14,C15,3), 0 },
|
|
|
|
|
{ "pmevtyper28_el0", CPENC(3,3,C14,C15,4), 0 },
|
|
|
|
|
{ "pmevtyper29_el0", CPENC(3,3,C14,C15,5), 0 },
|
|
|
|
|
{ "pmevtyper30_el0", CPENC(3,3,C14,C15,6), 0 },
|
|
|
|
|
{ "pmccfiltr_el0", CPENC(3,3,C14,C15,7), 0 },
|
Add assembler and disassembler support for the new Armv8.4-a registers for AArch64.
Some of these instructions have been back-ported as optional extensions to
Armv8.2-a and higher, but others are only available for Armv8.4-a.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Add ARMv8.4-a registers;
dit, vstcr_el2, vsttbr_el2, cnthvs_tval_el2, cnthvs_cval_el2,
cnthvs_ctl_el2, cnthps_tval_el2, cnthps_cval_el2, cnthps_ctl_el2,
sder32_el2, vncr_el2.
(aarch64_sys_reg_supported_p): Likewise.
(aarch64_pstatefields): Add dit register.
(aarch64_pstatefield_supported_p): Likewise.
(aarch64_sys_regs_tlbi): Add vmalle1os, vae1os, aside1os, vaae1os,
vale1os, vaale1os, ipas2e1os, ipas2le1os, vae2os, vale2os, vmalls12e1os,
vae3os, vale3os, alle2os, alle1os, alle3os, rvae1, rvaae1, rvale1,
rvaale1, rvae1is, rvaae1is, rvale1is, rvaale1is, rvae1os, rvaae1os,
rvale1os, rvaale1os, ripas2e1is, ripas2le1is, ripas2e1, ripas2le1,
ripas2e1os, ripas2le1os, rvae2, rvale2, rvae2is, rvale2is, rvae2os,
rvale2os, rvae3, rvale3, rvae3is, rvale3is, rvae3os, rvale3os.
gas/testsuite
* gas/aarch64/armv8_4-a-registers-illegal.d: New.
* gas/aarch64/armv8_4-a-registers-illegal.l: New.
* gas/aarch64/armv8_4-a-registers-illegal.s: New.
* gas/aarch64/armv8_4-a-registers.d: New.
* gas/aarch64/armv8_4-a-registers.s: New.
2017-11-09 23:48:43 +08:00
|
|
|
|
|
|
|
|
|
{ "dit", CPEN_ (3, C2, 5), F_ARCHEXT },
|
|
|
|
|
{ "vstcr_el2", CPENC(3, 4, C2, C6, 2), F_ARCHEXT },
|
|
|
|
|
{ "vsttbr_el2", CPENC(3, 4, C2, C6, 0), F_ARCHEXT },
|
|
|
|
|
{ "cnthvs_tval_el2", CPENC(3, 4, C14, C4, 0), F_ARCHEXT },
|
|
|
|
|
{ "cnthvs_cval_el2", CPENC(3, 4, C14, C4, 2), F_ARCHEXT },
|
|
|
|
|
{ "cnthvs_ctl_el2", CPENC(3, 4, C14, C4, 1), F_ARCHEXT },
|
|
|
|
|
{ "cnthps_tval_el2", CPENC(3, 4, C14, C5, 0), F_ARCHEXT },
|
|
|
|
|
{ "cnthps_cval_el2", CPENC(3, 4, C14, C5, 2), F_ARCHEXT },
|
|
|
|
|
{ "cnthps_ctl_el2", CPENC(3, 4, C14, C5, 1), F_ARCHEXT },
|
|
|
|
|
{ "sder32_el2", CPENC(3, 4, C1, C3, 1), F_ARCHEXT },
|
|
|
|
|
{ "vncr_el2", CPENC(3, 4, C2, C2, 0), F_ARCHEXT },
|
2013-11-06 04:54:22 +08:00
|
|
|
|
{ 0, CPENC(0,0,0,0,0), 0 },
|
2012-08-13 22:52:54 +08:00
|
|
|
|
};
|
|
|
|
|
|
2013-11-06 04:54:22 +08:00
|
|
|
|
bfd_boolean
|
|
|
|
|
aarch64_sys_reg_deprecated_p (const aarch64_sys_reg *reg)
|
|
|
|
|
{
|
|
|
|
|
return (reg->flags & F_DEPRECATED) != 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-01 23:00:28 +08:00
|
|
|
|
bfd_boolean
|
|
|
|
|
aarch64_sys_reg_supported_p (const aarch64_feature_set features,
|
|
|
|
|
const aarch64_sys_reg *reg)
|
|
|
|
|
{
|
|
|
|
|
if (!(reg->flags & F_ARCHEXT))
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
/* PAN. Values are from aarch64_sys_regs. */
|
|
|
|
|
if (reg->value == CPEN_(0,C2,3)
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_PAN))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
[PATCH, BINUTILS, AARCH64, 8/9] Add SCXTNUM_ELx and ID_PFR2_EL1 system registers
This patch is part of the patch series to add support for ARMv8.5-A
extensions.
(https://developer.arm.com/products/architecture/cpu-architecture/a-profile/exploration-tools)
The encodings can be found in the System Register XML.
This patch adds the new system registers SCXTNUM_ELx and ID_PFR2_EL1.
*** include/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* opcode/aarch64.h (AARCH64_FEATURE_SCXTNUM): New.
(AARCH64_FEATURE_ID_PFR2): New.
(AARCH64_ARCH_V8_5): Add both by default.
*** opcodes/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for
scxtnum_el[0,1,2,3,12] and id_pfr2_el1.
(aarch64_sys_reg_supported_p): New checks for above.
*** gas/ChangeLog ***
2018-10-09 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test registers
scxtnum_el[0,1,2,3,12] and id_pfr2_el1.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-09-26 18:02:28 +08:00
|
|
|
|
/* SCXTNUM_ELx registers. */
|
|
|
|
|
if ((reg->value == CPENC (3, 3, C13, C0, 7)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C13, C0, 7)
|
|
|
|
|
|| reg->value == CPENC (3, 4, C13, C0, 7)
|
|
|
|
|
|| reg->value == CPENC (3, 6, C13, C0, 7)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C13, C0, 7))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_SCXTNUM))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* ID_PFR2_EL1 register. */
|
|
|
|
|
if (reg->value == CPENC(3, 0, C0, C3, 4)
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_ID_PFR2))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2018-09-26 18:04:32 +08:00
|
|
|
|
/* SSBS. Values are from aarch64_sys_regs. */
|
|
|
|
|
if (reg->value == CPEN_(3,C2,6)
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_SSBS))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
/* Virtualization host extensions: system registers. */
|
|
|
|
|
if ((reg->value == CPENC (3, 4, C2, C0, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 4, C13, C0, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 4, C14, C3, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 4, C14, C3, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 4, C14, C3, 2))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_1))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* Virtualization host extensions: *_el12 names of *_el1 registers. */
|
|
|
|
|
if ((reg->value == CPEN_ (5, C0, 0)
|
|
|
|
|
|| reg->value == CPEN_ (5, C0, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C1, C0, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C1, C0, 2)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C2, C0, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C2, C0, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C2, C0, 2)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C5, C1, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C5, C1, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C5, C2, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C6, C0, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C10, C2, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C10, C3, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C12, C0, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C13, C0, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C14, C1, 0))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_1))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* Virtualization host extensions: *_el02 names of *_el0 registers. */
|
|
|
|
|
if ((reg->value == CPENC (3, 5, C14, C2, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C14, C2, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C14, C2, 2)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C14, C3, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C14, C3, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C14, C3, 2))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_1))
|
[AArch64] Fix errors rebasing the ARMv8.2 AT and system registers patch
A mistake with rebasing the ARMv8.2 AT instruction patch left this part
+ /* AT S1E1RP, AT S1E1WP. Values are from aarch64_sys_regs_at. */
+ if ((reg->value == CPENS (0, C7, C9, 0)
+ || reg->value == CPENS (0, C7, C9, 1))
+ && !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_2))
+ return FALSE;
in aarch64_pstatefield_supported_p rather than in
aarch64_sys_ins_reg_supported_p, where it was supposed to be.
The patch adding support for id_aa64mmfr2_el1, also had the effect of
removing a conditional branch in aarch64_sys_reg_supported_p.
The effect of both of these is to suppress an error if some ARMv8.2
system registers are used with the wrong -march settings.
This patch fixes these mistakes.
opcodes/
2015-12-14 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_reg_supported_p): Add mistakenly
removed statement.
(aarch64_pstatefield_supported_p): Move feature checks for AT
registers ..
(aarch64_sys_ins_reg_supported_p): .. to here.
Change-Id: I48783d118eaaf0f3312e8b08a8340ef7af4e36a4
2015-12-15 00:28:46 +08:00
|
|
|
|
return FALSE;
|
2015-11-27 21:44:10 +08:00
|
|
|
|
|
|
|
|
|
/* ARMv8.2 features. */
|
2015-12-11 00:01:29 +08:00
|
|
|
|
|
|
|
|
|
/* ID_AA64MMFR2_EL1. */
|
2015-11-27 21:44:10 +08:00
|
|
|
|
if (reg->value == CPENC (3, 0, C0, C7, 2)
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_2))
|
[AArch64] Add support for ARMv8.1 Virtulization Host Extensions.
The ARMv8.1 architecture includes the Virtualization Host Extensions
which add a number of system registers. This patch adds support for
these system registers, making them available when -march=armv8.1-a is
selected.
include/opcode/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64.h (AARCH64_FEATURE_V8_1): New.
(AARCH64_ARCH_v8_1): Add AARCH64_FEATURE_V8_1.
opcodes/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add spsr_el12, elr_el12,
sctlr_el12, cpacr_el12, ttbr1_el2, ttbr0_el12, ttbr1_el12,
tcr_el12, afsr0_el12, afsr1_el12, esr_el12, far_el12, mair_el12,
amair_el12, vbar_el12, contextidr_el2, contextidr_el12,
cntkctl_el12, cntp_tval_el02, cntp_ctl_el02, cntp_cval_el02,
cntv_tval_el02, cntv_ctl_el02, cntv_cval_el02, cnthv_tval_el2,
cnthv_ctl_el2, cnthv_cval_el2.
(aarch64_sys_reg_supported_p): Update for the new system
registers.
gas/testsuite/
2015-11-20 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/virthostext-directive.d: New.
* gas/aarch64/virthostext.d: New.
* gas/aarch64/virthostext.s: New.
Change-Id: Iecb370591b1b6e9e00d81c8ccd9ae3b0f71794a2
2015-11-21 00:09:34 +08:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
2015-12-11 00:01:29 +08:00
|
|
|
|
/* PSTATE.UAO. */
|
|
|
|
|
if (reg->value == CPEN_ (0, C2, 4)
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_2))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
[AArch64][PATCH 2/2] Add RAS system registers.
The ARMv8.2 RAS extension adds a number of new registers. This patch
adds the registers and makes them available whenever the RAS extension
is enabled, as it is when -march=armv8.2-a is selected.
The new registers are:
erridr_el1, errselr_el1, erxfr_el1, erxctlr, erxaddr_el1,
erxmisc0_el1, erxmisc1_el1, vsesr_el2, disr_el1 and
vdisr_el2.
gas/testsuite/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.d: Add tests for new registers.
* gas/aarch64/sysreg-2.s: Likewise. Also replace some spaces with
tabs.
opcodes/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add "vsesr_el2", "erridr_el1",
"errselr_el1", "erxfr_el1", "erxctlr", "erxaddr_el1",
"erxmisc0_el1", "erxmisc1_el1", "disr_el1" and "vdisr_el2".
(aarch64_sys_reg_supported_p): Add architecture feature tests for
new registers.
Change-Id: I8a01a0f0ee7987f89eead32650f6afcc749b3c74
2015-12-10 22:09:03 +08:00
|
|
|
|
/* RAS extension. */
|
|
|
|
|
|
2016-01-14 18:55:11 +08:00
|
|
|
|
/* ERRIDR_EL1, ERRSELR_EL1, ERXFR_EL1, ERXCTLR_EL1, ERXSTATUS_EL, ERXADDR_EL1,
|
|
|
|
|
ERXMISC0_EL1 AND ERXMISC1_EL1. */
|
[AArch64][PATCH 2/2] Add RAS system registers.
The ARMv8.2 RAS extension adds a number of new registers. This patch
adds the registers and makes them available whenever the RAS extension
is enabled, as it is when -march=armv8.2-a is selected.
The new registers are:
erridr_el1, errselr_el1, erxfr_el1, erxctlr, erxaddr_el1,
erxmisc0_el1, erxmisc1_el1, vsesr_el2, disr_el1 and
vdisr_el2.
gas/testsuite/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.d: Add tests for new registers.
* gas/aarch64/sysreg-2.s: Likewise. Also replace some spaces with
tabs.
opcodes/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add "vsesr_el2", "erridr_el1",
"errselr_el1", "erxfr_el1", "erxctlr", "erxaddr_el1",
"erxmisc0_el1", "erxmisc1_el1", "disr_el1" and "vdisr_el2".
(aarch64_sys_reg_supported_p): Add architecture feature tests for
new registers.
Change-Id: I8a01a0f0ee7987f89eead32650f6afcc749b3c74
2015-12-10 22:09:03 +08:00
|
|
|
|
if ((reg->value == CPENC (3, 0, C5, C3, 0)
|
2016-01-14 18:55:11 +08:00
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C3, 1)
|
[AArch64][PATCH 2/2] Add RAS system registers.
The ARMv8.2 RAS extension adds a number of new registers. This patch
adds the registers and makes them available whenever the RAS extension
is enabled, as it is when -march=armv8.2-a is selected.
The new registers are:
erridr_el1, errselr_el1, erxfr_el1, erxctlr, erxaddr_el1,
erxmisc0_el1, erxmisc1_el1, vsesr_el2, disr_el1 and
vdisr_el2.
gas/testsuite/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.d: Add tests for new registers.
* gas/aarch64/sysreg-2.s: Likewise. Also replace some spaces with
tabs.
opcodes/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add "vsesr_el2", "erridr_el1",
"errselr_el1", "erxfr_el1", "erxctlr", "erxaddr_el1",
"erxmisc0_el1", "erxmisc1_el1", "disr_el1" and "vdisr_el2".
(aarch64_sys_reg_supported_p): Add architecture feature tests for
new registers.
Change-Id: I8a01a0f0ee7987f89eead32650f6afcc749b3c74
2015-12-10 22:09:03 +08:00
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C3, 2)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C3, 3)
|
2016-01-14 18:55:11 +08:00
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C4, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C4, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C4, 2)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C4, 3)
|
[AArch64][PATCH 2/2] Add RAS system registers.
The ARMv8.2 RAS extension adds a number of new registers. This patch
adds the registers and makes them available whenever the RAS extension
is enabled, as it is when -march=armv8.2-a is selected.
The new registers are:
erridr_el1, errselr_el1, erxfr_el1, erxctlr, erxaddr_el1,
erxmisc0_el1, erxmisc1_el1, vsesr_el2, disr_el1 and
vdisr_el2.
gas/testsuite/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.d: Add tests for new registers.
* gas/aarch64/sysreg-2.s: Likewise. Also replace some spaces with
tabs.
opcodes/
2015-12-10 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_regs): Add "vsesr_el2", "erridr_el1",
"errselr_el1", "erxfr_el1", "erxctlr", "erxaddr_el1",
"erxmisc0_el1", "erxmisc1_el1", "disr_el1" and "vdisr_el2".
(aarch64_sys_reg_supported_p): Add architecture feature tests for
new registers.
Change-Id: I8a01a0f0ee7987f89eead32650f6afcc749b3c74
2015-12-10 22:09:03 +08:00
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C5, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C5, 1))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_RAS))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* VSESR_EL2, DISR_EL1 and VDISR_EL2. */
|
|
|
|
|
if ((reg->value == CPENC (3, 4, C5, C2, 3)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C12, C1, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 4, C12, C1, 1))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_RAS))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
[AArch64][Patch 2/5] Add Statistical Profiling Extension system registers.
The Statistical Profile extension included in the ARMv8.2 architecture
adds a number of system registers. This patch adds the registers to
binutils, making them available when the architecture extension
"+profile" is enabled.
opcodes/
2015-12-11 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_reg): Add pbmlimitr_el1, pmbptr_el1,
pmbsr_el1, pmbidr_el1, pmscr_el1, pmsicr_el1, pmsirr_el1,
pmsfcr_el1, pmsevfr_el1, pmslatfr_el1, pmsidr_el1, pmscr_el2 and
pmscr_el2.
(aarch64_sys_reg_supported_p): Add architecture feature tests for
the new registers.
gas/testsuite/
2015-12-11 Matthew Wahab <matthew.wahab@arm.com>
* gas/aarch64/sysreg-2.s: Add tests for the statistical profiling
system registers.
* gas/aarch64/sysreg-2.d: Enable the statistical profiling
extension and update the expected output.
Change-Id: Ibf23ad34db7c33f0fcd30010b796748b38be6efb
2015-12-11 17:52:11 +08:00
|
|
|
|
/* Statistical Profiling extension. */
|
|
|
|
|
if ((reg->value == CPENC (3, 0, C9, C10, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C10, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C10, 3)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C10, 7)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C9, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C9, 2)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C9, 3)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C9, 4)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C9, 5)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C9, 6)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C9, C9, 7)
|
|
|
|
|
|| reg->value == CPENC (3, 4, C9, C9, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C9, C9, 0))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_PROFILE))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2016-11-11 18:33:30 +08:00
|
|
|
|
/* ARMv8.3 Pointer authentication keys. */
|
|
|
|
|
if ((reg->value == CPENC (3, 0, C2, C1, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C2, C1, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C2, C1, 2)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C2, C1, 3)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C2, C2, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C2, C2, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C2, C2, 2)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C2, C2, 3)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C2, C3, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C2, C3, 1))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_3))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2017-02-16 00:54:21 +08:00
|
|
|
|
/* SVE. */
|
|
|
|
|
if ((reg->value == CPENC (3, 0, C0, C4, 4)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C1, C2, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 4, C1, C2, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 6, C1, C2, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C1, C2, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C0, C0, 7))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_SVE))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
Add assembler and disassembler support for the new Armv8.4-a registers for AArch64.
Some of these instructions have been back-ported as optional extensions to
Armv8.2-a and higher, but others are only available for Armv8.4-a.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Add ARMv8.4-a registers;
dit, vstcr_el2, vsttbr_el2, cnthvs_tval_el2, cnthvs_cval_el2,
cnthvs_ctl_el2, cnthps_tval_el2, cnthps_cval_el2, cnthps_ctl_el2,
sder32_el2, vncr_el2.
(aarch64_sys_reg_supported_p): Likewise.
(aarch64_pstatefields): Add dit register.
(aarch64_pstatefield_supported_p): Likewise.
(aarch64_sys_regs_tlbi): Add vmalle1os, vae1os, aside1os, vaae1os,
vale1os, vaale1os, ipas2e1os, ipas2le1os, vae2os, vale2os, vmalls12e1os,
vae3os, vale3os, alle2os, alle1os, alle3os, rvae1, rvaae1, rvale1,
rvaale1, rvae1is, rvaae1is, rvale1is, rvaale1is, rvae1os, rvaae1os,
rvale1os, rvaale1os, ripas2e1is, ripas2le1is, ripas2e1, ripas2le1,
ripas2e1os, ripas2le1os, rvae2, rvale2, rvae2is, rvale2is, rvae2os,
rvale2os, rvae3, rvale3, rvae3is, rvale3is, rvae3os, rvale3os.
gas/testsuite
* gas/aarch64/armv8_4-a-registers-illegal.d: New.
* gas/aarch64/armv8_4-a-registers-illegal.l: New.
* gas/aarch64/armv8_4-a-registers-illegal.s: New.
* gas/aarch64/armv8_4-a-registers.d: New.
* gas/aarch64/armv8_4-a-registers.s: New.
2017-11-09 23:48:43 +08:00
|
|
|
|
/* ARMv8.4 features. */
|
|
|
|
|
|
|
|
|
|
/* PSTATE.DIT. */
|
|
|
|
|
if (reg->value == CPEN_ (3, C2, 5)
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_4))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* Virtualization extensions. */
|
|
|
|
|
if ((reg->value == CPENC(3, 4, C2, C6, 2)
|
|
|
|
|
|| reg->value == CPENC(3, 4, C2, C6, 0)
|
|
|
|
|
|| reg->value == CPENC(3, 4, C14, C4, 0)
|
|
|
|
|
|| reg->value == CPENC(3, 4, C14, C4, 2)
|
|
|
|
|
|| reg->value == CPENC(3, 4, C14, C4, 1)
|
|
|
|
|
|| reg->value == CPENC(3, 4, C14, C5, 0)
|
|
|
|
|
|| reg->value == CPENC(3, 4, C14, C5, 2)
|
|
|
|
|
|| reg->value == CPENC(3, 4, C14, C5, 1)
|
|
|
|
|
|| reg->value == CPENC(3, 4, C1, C3, 1)
|
|
|
|
|
|| reg->value == CPENC(3, 4, C2, C2, 0))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_4))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* ARMv8.4 TLB instructions. */
|
|
|
|
|
if ((reg->value == CPENS (0, C8, C1, 0)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C1, 1)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C1, 2)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C1, 3)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C1, 5)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C1, 7)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C4, 0)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C4, 4)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C1, 1)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C1, 5)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C1, 6)
|
|
|
|
|
|| reg->value == CPENS (6, C8, C1, 1)
|
|
|
|
|
|| reg->value == CPENS (6, C8, C1, 5)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C1, 0)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C1, 4)
|
|
|
|
|
|| reg->value == CPENS (6, C8, C1, 0)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C6, 1)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C6, 3)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C6, 5)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C6, 7)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C2, 1)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C2, 3)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C2, 5)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C2, 7)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C5, 1)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C5, 3)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C5, 5)
|
|
|
|
|
|| reg->value == CPENS (0, C8, C5, 7)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C0, 2)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C0, 6)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C4, 2)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C4, 6)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C4, 3)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C4, 7)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C6, 1)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C6, 5)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C2, 1)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C2, 5)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C5, 1)
|
|
|
|
|
|| reg->value == CPENS (4, C8, C5, 5)
|
|
|
|
|
|| reg->value == CPENS (6, C8, C6, 1)
|
|
|
|
|
|| reg->value == CPENS (6, C8, C6, 5)
|
|
|
|
|
|| reg->value == CPENS (6, C8, C2, 1)
|
|
|
|
|
|| reg->value == CPENS (6, C8, C2, 5)
|
|
|
|
|
|| reg->value == CPENS (6, C8, C5, 1)
|
|
|
|
|
|| reg->value == CPENS (6, C8, C5, 5))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_4))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2018-09-26 17:57:16 +08:00
|
|
|
|
/* Random Number Instructions. For now they are available
|
|
|
|
|
(and optional) only with ARMv8.5-A. */
|
|
|
|
|
if ((reg->value == CPENC (3, 3, C2, C4, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 3, C2, C4, 1))
|
|
|
|
|
&& !(AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_RNG)
|
|
|
|
|
&& AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_5)))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
[BINUTILS, AARCH64, 7/8] Add system registers for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the system registers that are part of this
extension and are accessible via the MRS/MSR instructions:
- TCO
- TFSRE0_SL1
- TFSR_EL1
- TFSR_EL2
- TFSR_EL3
- TFSR_EL12
- RGSR_EL1
- GCR_EL1
TCO is also accessible with the MSR(immediate) instruction.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for TCO,
TFSRE0_SL1, TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12,
RGSR_EL1 and GCR_EL1.
(aarch64_sys_reg_supported_p): New check for above.
(aarch64_pstatefields): New entry for TCO.
(aarch64_pstatefield_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test TCO, TFSRE0_SL1,
TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12, RGSR_EL1 and
GCR_EL1 MSR and MRS.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:26:01 +08:00
|
|
|
|
/* System Registers in ARMv8.5-A with AARCH64_FEATURE_MEMTAG. */
|
|
|
|
|
if ((reg->value == CPENC (3, 3, C4, C2, 7)
|
[AArch64][gas] Update MTE system register encodings
The MTE specification adjusted the encoding of the TFSRE0_EL1, TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12 system registers.
This patch brings binutils up to date.
The references for the encodings are at:
https://developer.arm.com/docs/ddi0595/latest/aarch64-system-registers/tfsre0_el1 (also contains TFSR_EL12 description)
https://developer.arm.com/docs/ddi0595/latest/aarch64-system-registers/tfsr_el1
https://developer.arm.com/docs/ddi0595/latest/aarch64-system-registers/tfsr_el2
https://developer.arm.com/docs/ddi0595/latest/aarch64-system-registers/tfsr_el3
Tested check-gas for aarch64-none-elf.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Update encoding of tfsre0_el1,
tfsr_el1, tfsr_el2, tfsr_el3, tfsr_el12.
(aarch64_sys_reg_supported_p): Update checks for the above.
gas/
* testsuite/gas/aarch64/sysreg-4.d: Update expected disassembly for
tfsre0_el1, tfsr_el1, tfsr_el2, tfsr_el3, tfsr_el12 system registers.
2019-08-22 17:20:01 +08:00
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C6, 1)
|
|
|
|
|
|| reg->value == CPENC (3, 0, C5, C6, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 4, C5, C6, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 6, C5, C6, 0)
|
|
|
|
|
|| reg->value == CPENC (3, 5, C5, C6, 0)
|
[BINUTILS, AARCH64, 7/8] Add system registers for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the system registers that are part of this
extension and are accessible via the MRS/MSR instructions:
- TCO
- TFSRE0_SL1
- TFSR_EL1
- TFSR_EL2
- TFSR_EL3
- TFSR_EL12
- RGSR_EL1
- GCR_EL1
TCO is also accessible with the MSR(immediate) instruction.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for TCO,
TFSRE0_SL1, TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12,
RGSR_EL1 and GCR_EL1.
(aarch64_sys_reg_supported_p): New check for above.
(aarch64_pstatefields): New entry for TCO.
(aarch64_pstatefield_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test TCO, TFSRE0_SL1,
TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12, RGSR_EL1 and
GCR_EL1 MSR and MRS.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:26:01 +08:00
|
|
|
|
|| reg->value == CPENC (3, 0, C1, C0, 5)
|
2019-07-23 22:54:54 +08:00
|
|
|
|
|| reg->value == CPENC (3, 0, C1, C0, 6)
|
|
|
|
|
|| reg->value == CPENC (3, 1, C0, C0, 4))
|
[BINUTILS, AARCH64, 7/8] Add system registers for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the system registers that are part of this
extension and are accessible via the MRS/MSR instructions:
- TCO
- TFSRE0_SL1
- TFSR_EL1
- TFSR_EL2
- TFSR_EL3
- TFSR_EL12
- RGSR_EL1
- GCR_EL1
TCO is also accessible with the MSR(immediate) instruction.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for TCO,
TFSRE0_SL1, TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12,
RGSR_EL1 and GCR_EL1.
(aarch64_sys_reg_supported_p): New check for above.
(aarch64_pstatefields): New entry for TCO.
(aarch64_pstatefield_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test TCO, TFSRE0_SL1,
TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12, RGSR_EL1 and
GCR_EL1 MSR and MRS.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:26:01 +08:00
|
|
|
|
&& !(AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_MEMTAG)))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2015-06-01 23:00:28 +08:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
Add assembler and disassembler support for the new Armv8.4-a registers for AArch64.
Some of these instructions have been back-ported as optional extensions to
Armv8.2-a and higher, but others are only available for Armv8.4-a.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Add ARMv8.4-a registers;
dit, vstcr_el2, vsttbr_el2, cnthvs_tval_el2, cnthvs_cval_el2,
cnthvs_ctl_el2, cnthps_tval_el2, cnthps_cval_el2, cnthps_ctl_el2,
sder32_el2, vncr_el2.
(aarch64_sys_reg_supported_p): Likewise.
(aarch64_pstatefields): Add dit register.
(aarch64_pstatefield_supported_p): Likewise.
(aarch64_sys_regs_tlbi): Add vmalle1os, vae1os, aside1os, vaae1os,
vale1os, vaale1os, ipas2e1os, ipas2le1os, vae2os, vale2os, vmalls12e1os,
vae3os, vale3os, alle2os, alle1os, alle3os, rvae1, rvaae1, rvale1,
rvaale1, rvae1is, rvaae1is, rvale1is, rvaale1is, rvae1os, rvaae1os,
rvale1os, rvaale1os, ripas2e1is, ripas2le1is, ripas2e1, ripas2le1,
ripas2e1os, ripas2le1os, rvae2, rvale2, rvae2is, rvale2is, rvae2os,
rvale2os, rvae3, rvale3, rvae3is, rvale3is, rvae3os, rvale3os.
gas/testsuite
* gas/aarch64/armv8_4-a-registers-illegal.d: New.
* gas/aarch64/armv8_4-a-registers-illegal.l: New.
* gas/aarch64/armv8_4-a-registers-illegal.s: New.
* gas/aarch64/armv8_4-a-registers.d: New.
* gas/aarch64/armv8_4-a-registers.s: New.
2017-11-09 23:48:43 +08:00
|
|
|
|
/* The CPENC below is fairly misleading, the fields
|
|
|
|
|
here are not in CPENC form. They are in op2op1 form. The fields are encoded
|
|
|
|
|
by ins_pstatefield, which just shifts the value by the width of the fields
|
|
|
|
|
in a loop. So if you CPENC them only the first value will be set, the rest
|
|
|
|
|
are masked out to 0. As an example. op2 = 3, op1=2. CPENC would produce a
|
|
|
|
|
value of 0b110000000001000000 (0x30040) while what you want is
|
|
|
|
|
0b011010 (0x1a). */
|
2013-11-20 19:22:40 +08:00
|
|
|
|
const aarch64_sys_reg aarch64_pstatefields [] =
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{
|
2013-11-20 19:22:40 +08:00
|
|
|
|
{ "spsel", 0x05, 0 },
|
|
|
|
|
{ "daifset", 0x1e, 0 },
|
|
|
|
|
{ "daifclr", 0x1f, 0 },
|
2015-06-01 23:00:28 +08:00
|
|
|
|
{ "pan", 0x04, F_ARCHEXT },
|
2015-12-11 00:01:29 +08:00
|
|
|
|
{ "uao", 0x03, F_ARCHEXT },
|
2018-09-26 18:04:32 +08:00
|
|
|
|
{ "ssbs", 0x19, F_ARCHEXT },
|
Add assembler and disassembler support for the new Armv8.4-a registers for AArch64.
Some of these instructions have been back-ported as optional extensions to
Armv8.2-a and higher, but others are only available for Armv8.4-a.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Add ARMv8.4-a registers;
dit, vstcr_el2, vsttbr_el2, cnthvs_tval_el2, cnthvs_cval_el2,
cnthvs_ctl_el2, cnthps_tval_el2, cnthps_cval_el2, cnthps_ctl_el2,
sder32_el2, vncr_el2.
(aarch64_sys_reg_supported_p): Likewise.
(aarch64_pstatefields): Add dit register.
(aarch64_pstatefield_supported_p): Likewise.
(aarch64_sys_regs_tlbi): Add vmalle1os, vae1os, aside1os, vaae1os,
vale1os, vaale1os, ipas2e1os, ipas2le1os, vae2os, vale2os, vmalls12e1os,
vae3os, vale3os, alle2os, alle1os, alle3os, rvae1, rvaae1, rvale1,
rvaale1, rvae1is, rvaae1is, rvale1is, rvaale1is, rvae1os, rvaae1os,
rvale1os, rvaale1os, ripas2e1is, ripas2le1is, ripas2e1, ripas2le1,
ripas2e1os, ripas2le1os, rvae2, rvale2, rvae2is, rvale2is, rvae2os,
rvale2os, rvae3, rvale3, rvae3is, rvale3is, rvae3os, rvale3os.
gas/testsuite
* gas/aarch64/armv8_4-a-registers-illegal.d: New.
* gas/aarch64/armv8_4-a-registers-illegal.l: New.
* gas/aarch64/armv8_4-a-registers-illegal.s: New.
* gas/aarch64/armv8_4-a-registers.d: New.
* gas/aarch64/armv8_4-a-registers.s: New.
2017-11-09 23:48:43 +08:00
|
|
|
|
{ "dit", 0x1a, F_ARCHEXT },
|
[BINUTILS, AARCH64, 7/8] Add system registers for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the system registers that are part of this
extension and are accessible via the MRS/MSR instructions:
- TCO
- TFSRE0_SL1
- TFSR_EL1
- TFSR_EL2
- TFSR_EL3
- TFSR_EL12
- RGSR_EL1
- GCR_EL1
TCO is also accessible with the MSR(immediate) instruction.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for TCO,
TFSRE0_SL1, TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12,
RGSR_EL1 and GCR_EL1.
(aarch64_sys_reg_supported_p): New check for above.
(aarch64_pstatefields): New entry for TCO.
(aarch64_pstatefield_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test TCO, TFSRE0_SL1,
TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12, RGSR_EL1 and
GCR_EL1 MSR and MRS.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:26:01 +08:00
|
|
|
|
{ "tco", 0x1c, F_ARCHEXT },
|
2013-11-20 19:22:40 +08:00
|
|
|
|
{ 0, CPENC(0,0,0,0,0), 0 },
|
2012-08-13 22:52:54 +08:00
|
|
|
|
};
|
|
|
|
|
|
2015-06-01 23:00:28 +08:00
|
|
|
|
bfd_boolean
|
|
|
|
|
aarch64_pstatefield_supported_p (const aarch64_feature_set features,
|
|
|
|
|
const aarch64_sys_reg *reg)
|
|
|
|
|
{
|
|
|
|
|
if (!(reg->flags & F_ARCHEXT))
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
/* PAN. Values are from aarch64_pstatefields. */
|
|
|
|
|
if (reg->value == 0x04
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_PAN))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2015-12-11 00:01:29 +08:00
|
|
|
|
/* UAO. Values are from aarch64_pstatefields. */
|
|
|
|
|
if (reg->value == 0x03
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_2))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2018-09-26 18:04:32 +08:00
|
|
|
|
/* SSBS. Values are from aarch64_pstatefields. */
|
|
|
|
|
if (reg->value == 0x19
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_SSBS))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
Add assembler and disassembler support for the new Armv8.4-a registers for AArch64.
Some of these instructions have been back-ported as optional extensions to
Armv8.2-a and higher, but others are only available for Armv8.4-a.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Add ARMv8.4-a registers;
dit, vstcr_el2, vsttbr_el2, cnthvs_tval_el2, cnthvs_cval_el2,
cnthvs_ctl_el2, cnthps_tval_el2, cnthps_cval_el2, cnthps_ctl_el2,
sder32_el2, vncr_el2.
(aarch64_sys_reg_supported_p): Likewise.
(aarch64_pstatefields): Add dit register.
(aarch64_pstatefield_supported_p): Likewise.
(aarch64_sys_regs_tlbi): Add vmalle1os, vae1os, aside1os, vaae1os,
vale1os, vaale1os, ipas2e1os, ipas2le1os, vae2os, vale2os, vmalls12e1os,
vae3os, vale3os, alle2os, alle1os, alle3os, rvae1, rvaae1, rvale1,
rvaale1, rvae1is, rvaae1is, rvale1is, rvaale1is, rvae1os, rvaae1os,
rvale1os, rvaale1os, ripas2e1is, ripas2le1is, ripas2e1, ripas2le1,
ripas2e1os, ripas2le1os, rvae2, rvale2, rvae2is, rvale2is, rvae2os,
rvale2os, rvae3, rvale3, rvae3is, rvale3is, rvae3os, rvale3os.
gas/testsuite
* gas/aarch64/armv8_4-a-registers-illegal.d: New.
* gas/aarch64/armv8_4-a-registers-illegal.l: New.
* gas/aarch64/armv8_4-a-registers-illegal.s: New.
* gas/aarch64/armv8_4-a-registers.d: New.
* gas/aarch64/armv8_4-a-registers.s: New.
2017-11-09 23:48:43 +08:00
|
|
|
|
/* DIT. Values are from aarch64_pstatefields. */
|
|
|
|
|
if (reg->value == 0x1a
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_4))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
[BINUTILS, AARCH64, 7/8] Add system registers for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the system registers that are part of this
extension and are accessible via the MRS/MSR instructions:
- TCO
- TFSRE0_SL1
- TFSR_EL1
- TFSR_EL2
- TFSR_EL3
- TFSR_EL12
- RGSR_EL1
- GCR_EL1
TCO is also accessible with the MSR(immediate) instruction.
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs): New entries for TCO,
TFSRE0_SL1, TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12,
RGSR_EL1 and GCR_EL1.
(aarch64_sys_reg_supported_p): New check for above.
(aarch64_pstatefields): New entry for TCO.
(aarch64_pstatefield_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test TCO, TFSRE0_SL1,
TFSR_EL1, TFSR_EL2, TFSR_EL3, TFSR_EL12, RGSR_EL1 and
GCR_EL1 MSR and MRS.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:26:01 +08:00
|
|
|
|
/* TCO. Values are from aarch64_pstatefields. */
|
|
|
|
|
if (reg->value == 0x1c
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_MEMTAG))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2015-06-01 23:00:28 +08:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
const aarch64_sys_ins_reg aarch64_sys_regs_ic[] =
|
|
|
|
|
{
|
|
|
|
|
{ "ialluis", CPENS(0,C7,C1,0), 0 },
|
|
|
|
|
{ "iallu", CPENS(0,C7,C5,0), 0 },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "ivau", CPENS (3, C7, C5, 1), F_HASXT },
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ 0, CPENS(0,0,0,0), 0 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const aarch64_sys_ins_reg aarch64_sys_regs_dc[] =
|
|
|
|
|
{
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "zva", CPENS (3, C7, C4, 1), F_HASXT },
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
{ "gva", CPENS (3, C7, C4, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "gzva", CPENS (3, C7, C4, 4), F_HASXT | F_ARCHEXT },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "ivac", CPENS (0, C7, C6, 1), F_HASXT },
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
{ "igvac", CPENS (0, C7, C6, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "igsw", CPENS (0, C7, C6, 4), F_HASXT | F_ARCHEXT },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "isw", CPENS (0, C7, C6, 2), F_HASXT },
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
{ "igdvac", CPENS (0, C7, C6, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "igdsw", CPENS (0, C7, C6, 6), F_HASXT | F_ARCHEXT },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "cvac", CPENS (3, C7, C10, 1), F_HASXT },
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
{ "cgvac", CPENS (3, C7, C10, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "cgdvac", CPENS (3, C7, C10, 5), F_HASXT | F_ARCHEXT },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "csw", CPENS (0, C7, C10, 2), F_HASXT },
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
{ "cgsw", CPENS (0, C7, C10, 4), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "cgdsw", CPENS (0, C7, C10, 6), F_HASXT | F_ARCHEXT },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "cvau", CPENS (3, C7, C11, 1), F_HASXT },
|
2015-12-11 00:38:44 +08:00
|
|
|
|
{ "cvap", CPENS (3, C7, C12, 1), F_HASXT | F_ARCHEXT },
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
{ "cgvap", CPENS (3, C7, C12, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "cgdvap", CPENS (3, C7, C12, 5), F_HASXT | F_ARCHEXT },
|
2018-09-26 17:54:07 +08:00
|
|
|
|
{ "cvadp", CPENS (3, C7, C13, 1), F_HASXT | F_ARCHEXT },
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
{ "cgvadp", CPENS (3, C7, C13, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "cgdvadp", CPENS (3, C7, C13, 5), F_HASXT | F_ARCHEXT },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "civac", CPENS (3, C7, C14, 1), F_HASXT },
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
{ "cigvac", CPENS (3, C7, C14, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "cigdvac", CPENS (3, C7, C14, 5), F_HASXT | F_ARCHEXT },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "cisw", CPENS (0, C7, C14, 2), F_HASXT },
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
{ "cigsw", CPENS (0, C7, C14, 4), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "cigdsw", CPENS (0, C7, C14, 6), F_HASXT | F_ARCHEXT },
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ 0, CPENS(0,0,0,0), 0 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const aarch64_sys_ins_reg aarch64_sys_regs_at[] =
|
|
|
|
|
{
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "s1e1r", CPENS (0, C7, C8, 0), F_HASXT },
|
|
|
|
|
{ "s1e1w", CPENS (0, C7, C8, 1), F_HASXT },
|
|
|
|
|
{ "s1e0r", CPENS (0, C7, C8, 2), F_HASXT },
|
|
|
|
|
{ "s1e0w", CPENS (0, C7, C8, 3), F_HASXT },
|
|
|
|
|
{ "s12e1r", CPENS (4, C7, C8, 4), F_HASXT },
|
|
|
|
|
{ "s12e1w", CPENS (4, C7, C8, 5), F_HASXT },
|
|
|
|
|
{ "s12e0r", CPENS (4, C7, C8, 6), F_HASXT },
|
|
|
|
|
{ "s12e0w", CPENS (4, C7, C8, 7), F_HASXT },
|
|
|
|
|
{ "s1e2r", CPENS (4, C7, C8, 0), F_HASXT },
|
|
|
|
|
{ "s1e2w", CPENS (4, C7, C8, 1), F_HASXT },
|
|
|
|
|
{ "s1e3r", CPENS (6, C7, C8, 0), F_HASXT },
|
|
|
|
|
{ "s1e3w", CPENS (6, C7, C8, 1), F_HASXT },
|
2015-12-11 00:58:51 +08:00
|
|
|
|
{ "s1e1rp", CPENS (0, C7, C9, 0), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "s1e1wp", CPENS (0, C7, C9, 1), F_HASXT | F_ARCHEXT },
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ 0, CPENS(0,0,0,0), 0 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const aarch64_sys_ins_reg aarch64_sys_regs_tlbi[] =
|
|
|
|
|
{
|
|
|
|
|
{ "vmalle1", CPENS(0,C8,C7,0), 0 },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "vae1", CPENS (0, C8, C7, 1), F_HASXT },
|
|
|
|
|
{ "aside1", CPENS (0, C8, C7, 2), F_HASXT },
|
|
|
|
|
{ "vaae1", CPENS (0, C8, C7, 3), F_HASXT },
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ "vmalle1is", CPENS(0,C8,C3,0), 0 },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "vae1is", CPENS (0, C8, C3, 1), F_HASXT },
|
|
|
|
|
{ "aside1is", CPENS (0, C8, C3, 2), F_HASXT },
|
|
|
|
|
{ "vaae1is", CPENS (0, C8, C3, 3), F_HASXT },
|
|
|
|
|
{ "ipas2e1is", CPENS (4, C8, C0, 1), F_HASXT },
|
|
|
|
|
{ "ipas2le1is",CPENS (4, C8, C0, 5), F_HASXT },
|
|
|
|
|
{ "ipas2e1", CPENS (4, C8, C4, 1), F_HASXT },
|
|
|
|
|
{ "ipas2le1", CPENS (4, C8, C4, 5), F_HASXT },
|
|
|
|
|
{ "vae2", CPENS (4, C8, C7, 1), F_HASXT },
|
|
|
|
|
{ "vae2is", CPENS (4, C8, C3, 1), F_HASXT },
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ "vmalls12e1",CPENS(4,C8,C7,6), 0 },
|
|
|
|
|
{ "vmalls12e1is",CPENS(4,C8,C3,6), 0 },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "vae3", CPENS (6, C8, C7, 1), F_HASXT },
|
|
|
|
|
{ "vae3is", CPENS (6, C8, C3, 1), F_HASXT },
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ "alle2", CPENS(4,C8,C7,0), 0 },
|
|
|
|
|
{ "alle2is", CPENS(4,C8,C3,0), 0 },
|
|
|
|
|
{ "alle1", CPENS(4,C8,C7,4), 0 },
|
|
|
|
|
{ "alle1is", CPENS(4,C8,C3,4), 0 },
|
|
|
|
|
{ "alle3", CPENS(6,C8,C7,0), 0 },
|
|
|
|
|
{ "alle3is", CPENS(6,C8,C3,0), 0 },
|
2015-12-11 00:31:35 +08:00
|
|
|
|
{ "vale1is", CPENS (0, C8, C3, 5), F_HASXT },
|
|
|
|
|
{ "vale2is", CPENS (4, C8, C3, 5), F_HASXT },
|
|
|
|
|
{ "vale3is", CPENS (6, C8, C3, 5), F_HASXT },
|
|
|
|
|
{ "vaale1is", CPENS (0, C8, C3, 7), F_HASXT },
|
|
|
|
|
{ "vale1", CPENS (0, C8, C7, 5), F_HASXT },
|
|
|
|
|
{ "vale2", CPENS (4, C8, C7, 5), F_HASXT },
|
|
|
|
|
{ "vale3", CPENS (6, C8, C7, 5), F_HASXT },
|
|
|
|
|
{ "vaale1", CPENS (0, C8, C7, 7), F_HASXT },
|
Add assembler and disassembler support for the new Armv8.4-a registers for AArch64.
Some of these instructions have been back-ported as optional extensions to
Armv8.2-a and higher, but others are only available for Armv8.4-a.
opcodes/
* aarch64-opc.c (aarch64_sys_regs): Add ARMv8.4-a registers;
dit, vstcr_el2, vsttbr_el2, cnthvs_tval_el2, cnthvs_cval_el2,
cnthvs_ctl_el2, cnthps_tval_el2, cnthps_cval_el2, cnthps_ctl_el2,
sder32_el2, vncr_el2.
(aarch64_sys_reg_supported_p): Likewise.
(aarch64_pstatefields): Add dit register.
(aarch64_pstatefield_supported_p): Likewise.
(aarch64_sys_regs_tlbi): Add vmalle1os, vae1os, aside1os, vaae1os,
vale1os, vaale1os, ipas2e1os, ipas2le1os, vae2os, vale2os, vmalls12e1os,
vae3os, vale3os, alle2os, alle1os, alle3os, rvae1, rvaae1, rvale1,
rvaale1, rvae1is, rvaae1is, rvale1is, rvaale1is, rvae1os, rvaae1os,
rvale1os, rvaale1os, ripas2e1is, ripas2le1is, ripas2e1, ripas2le1,
ripas2e1os, ripas2le1os, rvae2, rvale2, rvae2is, rvale2is, rvae2os,
rvale2os, rvae3, rvale3, rvae3is, rvale3is, rvae3os, rvale3os.
gas/testsuite
* gas/aarch64/armv8_4-a-registers-illegal.d: New.
* gas/aarch64/armv8_4-a-registers-illegal.l: New.
* gas/aarch64/armv8_4-a-registers-illegal.s: New.
* gas/aarch64/armv8_4-a-registers.d: New.
* gas/aarch64/armv8_4-a-registers.s: New.
2017-11-09 23:48:43 +08:00
|
|
|
|
|
|
|
|
|
{ "vmalle1os", CPENS (0, C8, C1, 0), F_ARCHEXT },
|
|
|
|
|
{ "vae1os", CPENS (0, C8, C1, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "aside1os", CPENS (0, C8, C1, 2), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "vaae1os", CPENS (0, C8, C1, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "vale1os", CPENS (0, C8, C1, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "vaale1os", CPENS (0, C8, C1, 7), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "ipas2e1os", CPENS (4, C8, C4, 0), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "ipas2le1os", CPENS (4, C8, C4, 4), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "vae2os", CPENS (4, C8, C1, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "vale2os", CPENS (4, C8, C1, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "vmalls12e1os", CPENS (4, C8, C1, 6), F_ARCHEXT },
|
|
|
|
|
{ "vae3os", CPENS (6, C8, C1, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "vale3os", CPENS (6, C8, C1, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "alle2os", CPENS (4, C8, C1, 0), F_ARCHEXT },
|
|
|
|
|
{ "alle1os", CPENS (4, C8, C1, 4), F_ARCHEXT },
|
|
|
|
|
{ "alle3os", CPENS (6, C8, C1, 0), F_ARCHEXT },
|
|
|
|
|
|
|
|
|
|
{ "rvae1", CPENS (0, C8, C6, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvaae1", CPENS (0, C8, C6, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvale1", CPENS (0, C8, C6, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvaale1", CPENS (0, C8, C6, 7), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvae1is", CPENS (0, C8, C2, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvaae1is", CPENS (0, C8, C2, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvale1is", CPENS (0, C8, C2, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvaale1is", CPENS (0, C8, C2, 7), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvae1os", CPENS (0, C8, C5, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvaae1os", CPENS (0, C8, C5, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvale1os", CPENS (0, C8, C5, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvaale1os", CPENS (0, C8, C5, 7), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "ripas2e1is", CPENS (4, C8, C0, 2), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "ripas2le1is",CPENS (4, C8, C0, 6), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "ripas2e1", CPENS (4, C8, C4, 2), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "ripas2le1", CPENS (4, C8, C4, 6), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "ripas2e1os", CPENS (4, C8, C4, 3), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "ripas2le1os",CPENS (4, C8, C4, 7), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvae2", CPENS (4, C8, C6, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvale2", CPENS (4, C8, C6, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvae2is", CPENS (4, C8, C2, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvale2is", CPENS (4, C8, C2, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvae2os", CPENS (4, C8, C5, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvale2os", CPENS (4, C8, C5, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvae3", CPENS (6, C8, C6, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvale3", CPENS (6, C8, C6, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvae3is", CPENS (6, C8, C2, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvale3is", CPENS (6, C8, C2, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvae3os", CPENS (6, C8, C5, 1), F_HASXT | F_ARCHEXT },
|
|
|
|
|
{ "rvale3os", CPENS (6, C8, C5, 5), F_HASXT | F_ARCHEXT },
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
{ 0, CPENS(0,0,0,0), 0 }
|
|
|
|
|
};
|
|
|
|
|
|
2018-09-26 17:52:51 +08:00
|
|
|
|
const aarch64_sys_ins_reg aarch64_sys_regs_sr[] =
|
|
|
|
|
{
|
|
|
|
|
/* RCTX is somewhat unique in a way that it has different values
|
|
|
|
|
(op2) based on the instruction in which it is used (cfp/dvp/cpp).
|
|
|
|
|
Thus op2 is masked out and instead encoded directly in the
|
|
|
|
|
aarch64_opcode_table entries for the respective instructions. */
|
|
|
|
|
{ "rctx", CPENS(3,C7,C3,0), F_HASXT | F_ARCHEXT | F_REG_WRITE}, /* WO */
|
|
|
|
|
|
|
|
|
|
{ 0, CPENS(0,0,0,0), 0 }
|
|
|
|
|
};
|
|
|
|
|
|
2015-12-11 00:31:35 +08:00
|
|
|
|
bfd_boolean
|
|
|
|
|
aarch64_sys_ins_reg_has_xt (const aarch64_sys_ins_reg *sys_ins_reg)
|
|
|
|
|
{
|
|
|
|
|
return (sys_ins_reg->flags & F_HASXT) != 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-11 00:38:44 +08:00
|
|
|
|
extern bfd_boolean
|
|
|
|
|
aarch64_sys_ins_reg_supported_p (const aarch64_feature_set features,
|
|
|
|
|
const aarch64_sys_ins_reg *reg)
|
|
|
|
|
{
|
|
|
|
|
if (!(reg->flags & F_ARCHEXT))
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
/* DC CVAP. Values are from aarch64_sys_regs_dc. */
|
|
|
|
|
if (reg->value == CPENS (3, C7, C12, 1)
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_2))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2018-09-26 17:54:07 +08:00
|
|
|
|
/* DC CVADP. Values are from aarch64_sys_regs_dc. */
|
|
|
|
|
if (reg->value == CPENS (3, C7, C13, 1)
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_CVADP))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
[BINUTILS, AARCH64, 8/8] Add data cache instructions for Memory Tagging Extension
This patch is part of the patch series to add support for ARMv8.5-A
Memory Tagging Extensions which is an optional extension to
ARMv8.5-A and is enabled using the +memtag command line option.
This patch adds all the data cache instructions that are part of this
extension:
- DC IGVAC, Xt
- DC IGSW, Xt
- DC CGSW, Xt
- DC CIGSW, Xt
- DC CGVAC, Xt
- DC CGVAP, Xt
- DC CGVADP, Xt
- DC CIGVAC, Xt
- DC GVA, Xt
- DC IGDVAC, Xt
- DC IGDSW, Xt
- DC CGDSW, Xt
- DC CIGDSW, Xt
- DC CGDVAC, Xt
- DC CGDVAP, Xt
- DC CGDVADP, Xt
- DC CIGDVAC, Xt
- DC GZVA, Xt
*** opcodes/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-opc.c (aarch64_sys_regs_dc): New entries for
IGVAC, IGSW, CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA.
(aarch64_sys_ins_reg_supported_p): New check for above.
*** gas/ChangeLog ***
2018-11-12 Sudakshina Das <sudi.das@arm.com>
* testsuite/gas/aarch64/sysreg-4.s: Test IGVAC, IGSW,
CGSW, CIGSW, CGVAC, CGVAP, CGVADP, CIGVAC, GVA,
IGDVAC, IGDSW, CGDSW, CIGDSW, CGDVAC, CGDVAP, CGDVADP,
CIGDVAC and GZVA with DC.
* testsuite/gas/aarch64/sysreg-4.d: Likewise.
* testsuite/gas/aarch64/illegal-sysreg-4.l: Likewise.
2018-11-12 21:29:38 +08:00
|
|
|
|
/* DC <dc_op> for ARMv8.5-A Memory Tagging Extension. */
|
|
|
|
|
if ((reg->value == CPENS (0, C7, C6, 3)
|
|
|
|
|
|| reg->value == CPENS (0, C7, C6, 4)
|
|
|
|
|
|| reg->value == CPENS (0, C7, C10, 4)
|
|
|
|
|
|| reg->value == CPENS (0, C7, C14, 4)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C10, 3)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C12, 3)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C13, 3)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C14, 3)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C4, 3)
|
|
|
|
|
|| reg->value == CPENS (0, C7, C6, 5)
|
|
|
|
|
|| reg->value == CPENS (0, C7, C6, 6)
|
|
|
|
|
|| reg->value == CPENS (0, C7, C10, 6)
|
|
|
|
|
|| reg->value == CPENS (0, C7, C14, 6)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C10, 5)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C12, 5)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C13, 5)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C14, 5)
|
|
|
|
|
|| reg->value == CPENS (3, C7, C4, 4))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_MEMTAG))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
[AArch64] Fix errors rebasing the ARMv8.2 AT and system registers patch
A mistake with rebasing the ARMv8.2 AT instruction patch left this part
+ /* AT S1E1RP, AT S1E1WP. Values are from aarch64_sys_regs_at. */
+ if ((reg->value == CPENS (0, C7, C9, 0)
+ || reg->value == CPENS (0, C7, C9, 1))
+ && !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_2))
+ return FALSE;
in aarch64_pstatefield_supported_p rather than in
aarch64_sys_ins_reg_supported_p, where it was supposed to be.
The patch adding support for id_aa64mmfr2_el1, also had the effect of
removing a conditional branch in aarch64_sys_reg_supported_p.
The effect of both of these is to suppress an error if some ARMv8.2
system registers are used with the wrong -march settings.
This patch fixes these mistakes.
opcodes/
2015-12-14 Matthew Wahab <matthew.wahab@arm.com>
* aarch64-opc.c (aarch64_sys_reg_supported_p): Add mistakenly
removed statement.
(aarch64_pstatefield_supported_p): Move feature checks for AT
registers ..
(aarch64_sys_ins_reg_supported_p): .. to here.
Change-Id: I48783d118eaaf0f3312e8b08a8340ef7af4e36a4
2015-12-15 00:28:46 +08:00
|
|
|
|
/* AT S1E1RP, AT S1E1WP. Values are from aarch64_sys_regs_at. */
|
|
|
|
|
if ((reg->value == CPENS (0, C7, C9, 0)
|
|
|
|
|
|| reg->value == CPENS (0, C7, C9, 1))
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_V8_2))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2018-09-26 17:52:51 +08:00
|
|
|
|
/* CFP/DVP/CPP RCTX : Value are from aarch64_sys_regs_sr. */
|
|
|
|
|
if (reg->value == CPENS (3, C7, C3, 0)
|
|
|
|
|
&& !AARCH64_CPU_HAS_FEATURE (features, AARCH64_FEATURE_PREDRES))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2015-12-11 00:38:44 +08:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
#undef C0
|
|
|
|
|
#undef C1
|
|
|
|
|
#undef C2
|
|
|
|
|
#undef C3
|
|
|
|
|
#undef C4
|
|
|
|
|
#undef C5
|
|
|
|
|
#undef C6
|
|
|
|
|
#undef C7
|
|
|
|
|
#undef C8
|
|
|
|
|
#undef C9
|
|
|
|
|
#undef C10
|
|
|
|
|
#undef C11
|
|
|
|
|
#undef C12
|
|
|
|
|
#undef C13
|
|
|
|
|
#undef C14
|
|
|
|
|
#undef C15
|
|
|
|
|
|
2016-04-28 16:11:03 +08:00
|
|
|
|
#define BIT(INSN,BT) (((INSN) >> (BT)) & 1)
|
|
|
|
|
#define BITS(INSN,HI,LO) (((INSN) >> (LO)) & ((1 << (((HI) - (LO)) + 1)) - 1))
|
|
|
|
|
|
2018-10-04 01:37:07 +08:00
|
|
|
|
static enum err_type
|
|
|
|
|
verify_ldpsw (const struct aarch64_inst *inst ATTRIBUTE_UNUSED,
|
|
|
|
|
const aarch64_insn insn, bfd_vma pc ATTRIBUTE_UNUSED,
|
|
|
|
|
bfd_boolean encoding ATTRIBUTE_UNUSED,
|
|
|
|
|
aarch64_operand_error *mismatch_detail ATTRIBUTE_UNUSED,
|
2018-10-04 01:38:42 +08:00
|
|
|
|
aarch64_instr_sequence *insn_sequence ATTRIBUTE_UNUSED)
|
2016-04-28 16:11:03 +08:00
|
|
|
|
{
|
|
|
|
|
int t = BITS (insn, 4, 0);
|
|
|
|
|
int n = BITS (insn, 9, 5);
|
|
|
|
|
int t2 = BITS (insn, 14, 10);
|
|
|
|
|
|
|
|
|
|
if (BIT (insn, 23))
|
|
|
|
|
{
|
|
|
|
|
/* Write back enabled. */
|
|
|
|
|
if ((t == n || t2 == n) && n != 31)
|
2018-10-04 01:37:07 +08:00
|
|
|
|
return ERR_UND;
|
2016-04-28 16:11:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (BIT (insn, 22))
|
|
|
|
|
{
|
|
|
|
|
/* Load */
|
|
|
|
|
if (t == t2)
|
2018-10-04 01:37:07 +08:00
|
|
|
|
return ERR_UND;
|
2016-04-28 16:11:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-04 01:37:07 +08:00
|
|
|
|
return ERR_OK;
|
2016-04-28 16:11:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-08 00:55:23 +08:00
|
|
|
|
/* Verifier for vector by element 3 operands functions where the
|
|
|
|
|
conditions `if sz:L == 11 then UNDEFINED` holds. */
|
|
|
|
|
|
|
|
|
|
static enum err_type
|
|
|
|
|
verify_elem_sd (const struct aarch64_inst *inst, const aarch64_insn insn,
|
|
|
|
|
bfd_vma pc ATTRIBUTE_UNUSED, bfd_boolean encoding,
|
|
|
|
|
aarch64_operand_error *mismatch_detail ATTRIBUTE_UNUSED,
|
|
|
|
|
aarch64_instr_sequence *insn_sequence ATTRIBUTE_UNUSED)
|
|
|
|
|
{
|
|
|
|
|
const aarch64_insn undef_pattern = 0x3;
|
|
|
|
|
aarch64_insn value;
|
|
|
|
|
|
|
|
|
|
assert (inst->opcode);
|
|
|
|
|
assert (inst->opcode->operands[2] == AARCH64_OPND_Em);
|
|
|
|
|
value = encoding ? inst->value : insn;
|
|
|
|
|
assert (value);
|
|
|
|
|
|
|
|
|
|
if (undef_pattern == extract_fields (value, 0, 2, FLD_sz, FLD_L))
|
|
|
|
|
return ERR_UND;
|
|
|
|
|
|
|
|
|
|
return ERR_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-04 01:38:42 +08:00
|
|
|
|
/* Initialize an instruction sequence insn_sequence with the instruction INST.
|
|
|
|
|
If INST is NULL the given insn_sequence is cleared and the sequence is left
|
|
|
|
|
uninitialized. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
init_insn_sequence (const struct aarch64_inst *inst,
|
|
|
|
|
aarch64_instr_sequence *insn_sequence)
|
|
|
|
|
{
|
|
|
|
|
int num_req_entries = 0;
|
|
|
|
|
insn_sequence->next_insn = 0;
|
|
|
|
|
insn_sequence->num_insns = num_req_entries;
|
|
|
|
|
if (insn_sequence->instr)
|
|
|
|
|
XDELETE (insn_sequence->instr);
|
|
|
|
|
insn_sequence->instr = NULL;
|
|
|
|
|
|
|
|
|
|
if (inst)
|
|
|
|
|
{
|
|
|
|
|
insn_sequence->instr = XNEW (aarch64_inst);
|
|
|
|
|
memcpy (insn_sequence->instr, inst, sizeof (aarch64_inst));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle all the cases here. May need to think of something smarter than
|
|
|
|
|
a giant if/else chain if this grows. At that time, a lookup table may be
|
|
|
|
|
best. */
|
|
|
|
|
if (inst && inst->opcode->constraints & C_SCAN_MOVPRFX)
|
|
|
|
|
num_req_entries = 1;
|
|
|
|
|
|
|
|
|
|
if (insn_sequence->current_insns)
|
|
|
|
|
XDELETEVEC (insn_sequence->current_insns);
|
|
|
|
|
insn_sequence->current_insns = NULL;
|
|
|
|
|
|
|
|
|
|
if (num_req_entries != 0)
|
|
|
|
|
{
|
|
|
|
|
size_t size = num_req_entries * sizeof (aarch64_inst);
|
|
|
|
|
insn_sequence->current_insns
|
|
|
|
|
= (aarch64_inst**) XNEWVEC (aarch64_inst, num_req_entries);
|
|
|
|
|
memset (insn_sequence->current_insns, 0, size);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This function verifies that the instruction INST adheres to its specified
|
|
|
|
|
constraints. If it does then ERR_OK is returned, if not then ERR_VFI is
|
|
|
|
|
returned and MISMATCH_DETAIL contains the reason why verification failed.
|
|
|
|
|
|
|
|
|
|
The function is called both during assembly and disassembly. If assembling
|
|
|
|
|
then ENCODING will be TRUE, else FALSE. If dissassembling PC will be set
|
|
|
|
|
and will contain the PC of the current instruction w.r.t to the section.
|
|
|
|
|
|
|
|
|
|
If ENCODING and PC=0 then you are at a start of a section. The constraints
|
|
|
|
|
are verified against the given state insn_sequence which is updated as it
|
|
|
|
|
transitions through the verification. */
|
|
|
|
|
|
|
|
|
|
enum err_type
|
|
|
|
|
verify_constraints (const struct aarch64_inst *inst,
|
|
|
|
|
const aarch64_insn insn ATTRIBUTE_UNUSED,
|
|
|
|
|
bfd_vma pc,
|
|
|
|
|
bfd_boolean encoding,
|
|
|
|
|
aarch64_operand_error *mismatch_detail,
|
|
|
|
|
aarch64_instr_sequence *insn_sequence)
|
|
|
|
|
{
|
|
|
|
|
assert (inst);
|
|
|
|
|
assert (inst->opcode);
|
|
|
|
|
|
|
|
|
|
const struct aarch64_opcode *opcode = inst->opcode;
|
|
|
|
|
if (!opcode->constraints && !insn_sequence->instr)
|
|
|
|
|
return ERR_OK;
|
|
|
|
|
|
|
|
|
|
assert (insn_sequence);
|
|
|
|
|
|
|
|
|
|
enum err_type res = ERR_OK;
|
|
|
|
|
|
|
|
|
|
/* This instruction puts a constraint on the insn_sequence. */
|
|
|
|
|
if (opcode->flags & F_SCAN)
|
|
|
|
|
{
|
|
|
|
|
if (insn_sequence->instr)
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("instruction opens new dependency "
|
|
|
|
|
"sequence without ending previous one");
|
|
|
|
|
mismatch_detail->index = -1;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
init_insn_sequence (inst, insn_sequence);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Verify constraints on an existing sequence. */
|
|
|
|
|
if (insn_sequence->instr)
|
|
|
|
|
{
|
|
|
|
|
const struct aarch64_opcode* inst_opcode = insn_sequence->instr->opcode;
|
|
|
|
|
/* If we're decoding and we hit PC=0 with an open sequence then we haven't
|
|
|
|
|
closed a previous one that we should have. */
|
|
|
|
|
if (!encoding && pc == 0)
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("previous `movprfx' sequence not closed");
|
|
|
|
|
mismatch_detail->index = -1;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
/* Reset the sequence. */
|
|
|
|
|
init_insn_sequence (NULL, insn_sequence);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Validate C_SCAN_MOVPRFX constraints. Move this to a lookup table. */
|
|
|
|
|
if (inst_opcode->constraints & C_SCAN_MOVPRFX)
|
|
|
|
|
{
|
|
|
|
|
/* Check to see if the MOVPRFX SVE instruction is followed by an SVE
|
|
|
|
|
instruction for better error messages. */
|
2019-05-09 17:29:13 +08:00
|
|
|
|
if (!opcode->avariant
|
|
|
|
|
|| !(*opcode->avariant &
|
|
|
|
|
(AARCH64_FEATURE_SVE | AARCH64_FEATURE_SVE2)))
|
2018-10-04 01:38:42 +08:00
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("SVE instruction expected after "
|
|
|
|
|
"`movprfx'");
|
|
|
|
|
mismatch_detail->index = -1;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check to see if the MOVPRFX SVE instruction is followed by an SVE
|
|
|
|
|
instruction that is allowed to be used with a MOVPRFX. */
|
|
|
|
|
if (!(opcode->constraints & C_SCAN_MOVPRFX))
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("SVE `movprfx' compatible instruction "
|
|
|
|
|
"expected");
|
|
|
|
|
mismatch_detail->index = -1;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Next check for usage of the predicate register. */
|
|
|
|
|
aarch64_opnd_info blk_dest = insn_sequence->instr->operands[0];
|
2018-10-08 20:33:42 +08:00
|
|
|
|
aarch64_opnd_info blk_pred, inst_pred;
|
|
|
|
|
memset (&blk_pred, 0, sizeof (aarch64_opnd_info));
|
|
|
|
|
memset (&inst_pred, 0, sizeof (aarch64_opnd_info));
|
2018-10-04 01:38:42 +08:00
|
|
|
|
bfd_boolean predicated = FALSE;
|
|
|
|
|
assert (blk_dest.type == AARCH64_OPND_SVE_Zd);
|
|
|
|
|
|
|
|
|
|
/* Determine if the movprfx instruction used is predicated or not. */
|
|
|
|
|
if (insn_sequence->instr->operands[1].type == AARCH64_OPND_SVE_Pg3)
|
|
|
|
|
{
|
|
|
|
|
predicated = TRUE;
|
|
|
|
|
blk_pred = insn_sequence->instr->operands[1];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned char max_elem_size = 0;
|
|
|
|
|
unsigned char current_elem_size;
|
|
|
|
|
int num_op_used = 0, last_op_usage = 0;
|
|
|
|
|
int i, inst_pred_idx = -1;
|
|
|
|
|
int num_ops = aarch64_num_of_operands (opcode);
|
|
|
|
|
for (i = 0; i < num_ops; i++)
|
|
|
|
|
{
|
|
|
|
|
aarch64_opnd_info inst_op = inst->operands[i];
|
|
|
|
|
switch (inst_op.type)
|
|
|
|
|
{
|
|
|
|
|
case AARCH64_OPND_SVE_Zd:
|
|
|
|
|
case AARCH64_OPND_SVE_Zm_5:
|
|
|
|
|
case AARCH64_OPND_SVE_Zm_16:
|
|
|
|
|
case AARCH64_OPND_SVE_Zn:
|
|
|
|
|
case AARCH64_OPND_SVE_Zt:
|
|
|
|
|
case AARCH64_OPND_SVE_Vm:
|
|
|
|
|
case AARCH64_OPND_SVE_Vn:
|
|
|
|
|
case AARCH64_OPND_Va:
|
|
|
|
|
case AARCH64_OPND_Vn:
|
|
|
|
|
case AARCH64_OPND_Vm:
|
|
|
|
|
case AARCH64_OPND_Sn:
|
|
|
|
|
case AARCH64_OPND_Sm:
|
|
|
|
|
if (inst_op.reg.regno == blk_dest.reg.regno)
|
|
|
|
|
{
|
|
|
|
|
num_op_used++;
|
|
|
|
|
last_op_usage = i;
|
|
|
|
|
}
|
|
|
|
|
current_elem_size
|
|
|
|
|
= aarch64_get_qualifier_esize (inst_op.qualifier);
|
|
|
|
|
if (current_elem_size > max_elem_size)
|
|
|
|
|
max_elem_size = current_elem_size;
|
|
|
|
|
break;
|
|
|
|
|
case AARCH64_OPND_SVE_Pd:
|
|
|
|
|
case AARCH64_OPND_SVE_Pg3:
|
|
|
|
|
case AARCH64_OPND_SVE_Pg4_5:
|
|
|
|
|
case AARCH64_OPND_SVE_Pg4_10:
|
|
|
|
|
case AARCH64_OPND_SVE_Pg4_16:
|
|
|
|
|
case AARCH64_OPND_SVE_Pm:
|
|
|
|
|
case AARCH64_OPND_SVE_Pn:
|
|
|
|
|
case AARCH64_OPND_SVE_Pt:
|
|
|
|
|
inst_pred = inst_op;
|
|
|
|
|
inst_pred_idx = i;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert (max_elem_size != 0);
|
|
|
|
|
aarch64_opnd_info inst_dest = inst->operands[0];
|
|
|
|
|
/* Determine the size that should be used to compare against the
|
|
|
|
|
movprfx size. */
|
|
|
|
|
current_elem_size
|
|
|
|
|
= opcode->constraints & C_MAX_ELEM
|
|
|
|
|
? max_elem_size
|
|
|
|
|
: aarch64_get_qualifier_esize (inst_dest.qualifier);
|
|
|
|
|
|
|
|
|
|
/* If movprfx is predicated do some extra checks. */
|
|
|
|
|
if (predicated)
|
|
|
|
|
{
|
|
|
|
|
/* The instruction must be predicated. */
|
|
|
|
|
if (inst_pred_idx < 0)
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("predicated instruction expected "
|
|
|
|
|
"after `movprfx'");
|
|
|
|
|
mismatch_detail->index = -1;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The instruction must have a merging predicate. */
|
|
|
|
|
if (inst_pred.qualifier != AARCH64_OPND_QLF_P_M)
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("merging predicate expected due "
|
|
|
|
|
"to preceding `movprfx'");
|
|
|
|
|
mismatch_detail->index = inst_pred_idx;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The same register must be used in instruction. */
|
|
|
|
|
if (blk_pred.reg.regno != inst_pred.reg.regno)
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("predicate register differs "
|
|
|
|
|
"from that in preceding "
|
|
|
|
|
"`movprfx'");
|
|
|
|
|
mismatch_detail->index = inst_pred_idx;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Destructive operations by definition must allow one usage of the
|
|
|
|
|
same register. */
|
|
|
|
|
int allowed_usage
|
|
|
|
|
= aarch64_is_destructive_by_operands (opcode) ? 2 : 1;
|
|
|
|
|
|
|
|
|
|
/* Operand is not used at all. */
|
|
|
|
|
if (num_op_used == 0)
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("output register of preceding "
|
|
|
|
|
"`movprfx' not used in current "
|
|
|
|
|
"instruction");
|
|
|
|
|
mismatch_detail->index = 0;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We now know it's used, now determine exactly where it's used. */
|
|
|
|
|
if (blk_dest.reg.regno != inst_dest.reg.regno)
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("output register of preceding "
|
|
|
|
|
"`movprfx' expected as output");
|
|
|
|
|
mismatch_detail->index = 0;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Operand used more than allowed for the specific opcode type. */
|
|
|
|
|
if (num_op_used > allowed_usage)
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("output register of preceding "
|
|
|
|
|
"`movprfx' used as input");
|
|
|
|
|
mismatch_detail->index = last_op_usage;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now the only thing left is the qualifiers checks. The register
|
|
|
|
|
must have the same maximum element size. */
|
|
|
|
|
if (inst_dest.qualifier
|
|
|
|
|
&& blk_dest.qualifier
|
|
|
|
|
&& current_elem_size
|
|
|
|
|
!= aarch64_get_qualifier_esize (blk_dest.qualifier))
|
|
|
|
|
{
|
|
|
|
|
mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR;
|
|
|
|
|
mismatch_detail->error = _("register size not compatible with "
|
|
|
|
|
"previous `movprfx'");
|
|
|
|
|
mismatch_detail->index = 0;
|
|
|
|
|
mismatch_detail->non_fatal = TRUE;
|
|
|
|
|
res = ERR_VFI;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
/* Add the new instruction to the sequence. */
|
|
|
|
|
memcpy (insn_sequence->current_insns + insn_sequence->next_insn++,
|
|
|
|
|
inst, sizeof (aarch64_inst));
|
|
|
|
|
|
|
|
|
|
/* Check if sequence is now full. */
|
|
|
|
|
if (insn_sequence->next_insn >= insn_sequence->num_insns)
|
|
|
|
|
{
|
|
|
|
|
/* Sequence is full, but we don't have anything special to do for now,
|
|
|
|
|
so clear and reset it. */
|
|
|
|
|
init_insn_sequence (NULL, insn_sequence);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
[AArch64][SVE 27/32] Add SVE integer immediate operands
This patch adds the new SVE integer immediate operands. There are
three kinds:
- simple signed and unsigned ranges, but with new widths and positions.
- 13-bit logical immediates. These have the same form as in base AArch64,
but at a different bit position.
In the case of the "MOV Zn.<T>, #<limm>" alias of DUPM, the logical
immediate <limm> is not allowed to be a valid DUP immediate, since DUP
is preferred over DUPM for constants that both instructions can handle.
- a new 9-bit arithmetic immediate, of the form "<imm8>{, LSL #8}".
In some contexts the operand is signed and in others it's unsigned.
As an extension, we allow shifted immediates to be written as a single
integer, e.g. "#256" is equivalent to "#1, LSL #8". We also use the
shiftless form as the preferred disassembly, except for the special
case of "#0, LSL #8" (a redundant encoding of 0).
include/
* opcode/aarch64.h (AARCH64_OPND_SIMM5): New aarch64_opnd.
(AARCH64_OPND_SVE_AIMM, AARCH64_OPND_SVE_ASIMM)
(AARCH64_OPND_SVE_INV_LIMM, AARCH64_OPND_SVE_LIMM)
(AARCH64_OPND_SVE_LIMM_MOV, AARCH64_OPND_SVE_SHLIMM_PRED)
(AARCH64_OPND_SVE_SHLIMM_UNPRED, AARCH64_OPND_SVE_SHRIMM_PRED)
(AARCH64_OPND_SVE_SHRIMM_UNPRED, AARCH64_OPND_SVE_SIMM5)
(AARCH64_OPND_SVE_SIMM5B, AARCH64_OPND_SVE_SIMM6)
(AARCH64_OPND_SVE_SIMM8, AARCH64_OPND_SVE_UIMM3)
(AARCH64_OPND_SVE_UIMM7, AARCH64_OPND_SVE_UIMM8)
(AARCH64_OPND_SVE_UIMM8_53): Likewise.
(aarch64_sve_dupm_mov_immediate_p): Declare.
opcodes/
* aarch64-tbl.h (AARCH64_OPERANDS): Add entries for the new SVE
integer immediate operands.
* aarch64-opc.h (FLD_SVE_immN, FLD_SVE_imm3, FLD_SVE_imm5)
(FLD_SVE_imm5b, FLD_SVE_imm7, FLD_SVE_imm8, FLD_SVE_imm9)
(FLD_SVE_immr, FLD_SVE_imms, FLD_SVE_tszh): New aarch64_field_kinds.
* aarch64-opc.c (fields): Add corresponding entries.
(operand_general_constraint_met_p): Handle the new SVE integer
immediate operands.
(aarch64_print_operand): Likewise.
(aarch64_sve_dupm_mov_immediate_p): New function.
* aarch64-opc-2.c: Regenerate.
* aarch64-asm.h (ins_inv_limm, ins_sve_aimm, ins_sve_asimm)
(ins_sve_limm_mov, ins_sve_shlimm, ins_sve_shrimm): New inserters.
* aarch64-asm.c (aarch64_ins_limm_1): New function, split out from...
(aarch64_ins_limm): ...here.
(aarch64_ins_inv_limm): New function.
(aarch64_ins_sve_aimm): Likewise.
(aarch64_ins_sve_asimm): Likewise.
(aarch64_ins_sve_limm_mov): Likewise.
(aarch64_ins_sve_shlimm): Likewise.
(aarch64_ins_sve_shrimm): Likewise.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis.h (ext_inv_limm, ext_sve_aimm, ext_sve_asimm)
(ext_sve_limm_mov, ext_sve_shlimm, ext_sve_shrimm): New extractors.
* aarch64-dis.c (decode_limm): New function, split out from...
(aarch64_ext_limm): ...here.
(aarch64_ext_inv_limm): New function.
(decode_sve_aimm): Likewise.
(aarch64_ext_sve_aimm): Likewise.
(aarch64_ext_sve_asimm): Likewise.
(aarch64_ext_sve_limm_mov): Likewise.
(aarch64_top_bit): Likewise.
(aarch64_ext_sve_shlimm): Likewise.
(aarch64_ext_sve_shrimm): Likewise.
* aarch64-dis-2.c: Regenerate.
gas/
* config/tc-aarch64.c (parse_operands): Handle the new SVE integer
immediate operands.
2016-09-21 23:56:57 +08:00
|
|
|
|
/* Return true if VALUE cannot be moved into an SVE register using DUP
|
|
|
|
|
(with any element size, not just ESIZE) and if using DUPM would
|
|
|
|
|
therefore be OK. ESIZE is the number of bytes in the immediate. */
|
|
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
|
aarch64_sve_dupm_mov_immediate_p (uint64_t uvalue, int esize)
|
|
|
|
|
{
|
|
|
|
|
int64_t svalue = uvalue;
|
|
|
|
|
uint64_t upper = (uint64_t) -1 << (esize * 4) << (esize * 4);
|
|
|
|
|
|
|
|
|
|
if ((uvalue & ~upper) != uvalue && (uvalue | upper) != uvalue)
|
|
|
|
|
return FALSE;
|
|
|
|
|
if (esize <= 4 || (uint32_t) uvalue == (uint32_t) (uvalue >> 32))
|
|
|
|
|
{
|
|
|
|
|
svalue = (int32_t) uvalue;
|
|
|
|
|
if (esize <= 2 || (uint16_t) uvalue == (uint16_t) (uvalue >> 16))
|
|
|
|
|
{
|
|
|
|
|
svalue = (int16_t) uvalue;
|
|
|
|
|
if (esize == 1 || (uint8_t) uvalue == (uint8_t) (uvalue >> 8))
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ((svalue & 0xff) == 0)
|
|
|
|
|
svalue /= 256;
|
|
|
|
|
return svalue < -128 || svalue >= 128;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:52:54 +08:00
|
|
|
|
/* Include the opcode description table as well as the operand description
|
|
|
|
|
table. */
|
2016-05-03 18:48:56 +08:00
|
|
|
|
#define VERIFIER(x) verify_##x
|
2012-08-13 22:52:54 +08:00
|
|
|
|
#include "aarch64-tbl.h"
|