[binutils, Arm] Add support for shift instructions in MVE
authorSudakshina Das <sudi.das@arm.com>
Tue, 21 May 2019 17:11:08 +0000 (18:11 +0100)
committerSudakshina Das <sudi.das@arm.com>
Tue, 21 May 2019 17:11:08 +0000 (18:11 +0100)
commit23d00a419fe67801afc02a87f7ab9c5374b0238e
treecba7cb850ffd1f9e5a741ebbf0c40bb9031c89e8
parentcd4797ee054654160fe6c4b6fbecd636b7961e19
[binutils, Arm] Add support for shift instructions in MVE

This patch adds the following instructions which are part of
Armv8.1-M MVE:
ASRL (imm)
ASRL (reg)
LSLL (imm)
LSLL (reg)
LSRL
SQRSHRL
SRQSHR
SQSHLL
SQSHL
SRSHRL
SRSHR
UQRSHLL
UQRSHL
UQSHLL
UQSHL
URSHLL
URSHL

*** gas/ChangeLog ***

2019-05-21  Sudakshina Das  <sudi.das@arm.com>

* config/tc-arm.c (operand_parse_code): New entries for
OP_RRnpcsp_I32 (register or integer operands).
(do_mve_scalar_shift): New.
(insns): New instructions for asrl, lsll, lsrl, sqrshrl, sqrshr, sqshl
sqshll, srshr, srshrl, uqrshll, uqrshl, uqshll, uqshl, urshrl and urshr.
* testsuite/gas/arm/mve-shift.d: New.
* testsuite/gas/arm/mve-shift.s: New.
* testsuite/gas/arm/mve-shift-bad.d: New.
* testsuite/gas/arm/mve-shift-bad.s: New.
* testsuite/gas/arm/mve-shift-bad.l: New.

*** opcodes/ChangeLog ***

2019-05-21  Sudakshina Das  <sudi.das@arm.com>

* arm-dis.c (emun mve_instructions): Updated for new instructions.
(mve_opcodes): New instructions for asrl, lsll, lsrl, sqrshrl,
sqrshr, sqshl, sqshll, srshr, srshrl, uqrshll, uqrshl, uqshll,
uqshl, urshrl and urshr.
(is_mve_okay_in_it): Add new instructions to TRUE list.
(is_mve_unpredictable): Add cases for UNPRED_R13 and UNPRED_R15.
(print_insn_mve): Updated to accept new %j,
%<bitfield>m and %<bitfield>n patterns.
gas/ChangeLog
gas/config/tc-arm.c
gas/testsuite/gas/arm/mve-shift-bad.d [new file with mode: 0644]
gas/testsuite/gas/arm/mve-shift-bad.l [new file with mode: 0644]
gas/testsuite/gas/arm/mve-shift-bad.s [new file with mode: 0644]
gas/testsuite/gas/arm/mve-shift.d [new file with mode: 0644]
gas/testsuite/gas/arm/mve-shift.s [new file with mode: 0644]
opcodes/ChangeLog
opcodes/arm-dis.c
This page took 0.025981 seconds and 4 git commands to generate.