diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2016-09-21 16:51:09 +0100 |
---|---|---|
committer | Richard Sandiford <richard.sandiford@arm.com> | 2016-09-21 16:51:09 +0100 |
commit | 42408347b86745fdbd4bec9ee3a6a3fee31c4dee (patch) | |
tree | 5134e249ebca1ba93871174da6773e65965ae96d /opcodes/ChangeLog | |
parent | 4989adac848eb8f2fee8b98d9615d2fded22623b (diff) | |
download | gdb-42408347b86745fdbd4bec9ee3a6a3fee31c4dee.zip gdb-42408347b86745fdbd4bec9ee3a6a3fee31c4dee.tar.gz gdb-42408347b86745fdbd4bec9ee3a6a3fee31c4dee.tar.bz2 |
[AArch64][SVE 14/32] Make aarch64_logical_immediate_p take an element size
SVE supports logical immediate operations on 8-bit, 16-bit and 32-bit
elements, treating them as aliases of operations on 64-bit elements in
which the immediate is replicated. This patch therefore replaces the
"32-bit/64-bit" input to aarch64_logical_immediate_p with a more
general "number of bytes" input.
opcodes/
* aarch64-opc.c (aarch64_logical_immediate_p): Replace is32
with an esize parameter.
(operand_general_constraint_met_p): Update accordingly.
Fix misindented code.
* aarch64-asm.c (aarch64_ins_limm): Update call to
aarch64_logical_immediate_p.
Diffstat (limited to 'opcodes/ChangeLog')
-rw-r--r-- | opcodes/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index c12ea3a..9f44e97 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,14 @@ 2016-09-21 Richard Sandiford <richard.sandiford@arm.com> + * aarch64-opc.c (aarch64_logical_immediate_p): Replace is32 + with an esize parameter. + (operand_general_constraint_met_p): Update accordingly. + Fix misindented code. + * aarch64-asm.c (aarch64_ins_limm): Update call to + aarch64_logical_immediate_p. + +2016-09-21 Richard Sandiford <richard.sandiford@arm.com> + * aarch64-opc.c (match_operands_qualifier): Handle F_STRICT. 2016-09-21 Richard Sandiford <richard.sandiford@arm.com> |