]> granicus.if.org Git - llvm/commit
[ARM] Add <saturate> operand to SQRSHRL and UQRSHLL
authorMikhail Maltsev <mikhail.maltsev@arm.com>
Fri, 19 Jul 2019 09:46:28 +0000 (09:46 +0000)
committerMikhail Maltsev <mikhail.maltsev@arm.com>
Fri, 19 Jul 2019 09:46:28 +0000 (09:46 +0000)
commitf043afb4341fbcc1d51f644a4129ea38981ddb68
tree9a9151791cc66755301f04a3c5154660ffb2aca6
parentd874e85ddbd45ab09e24d7271326ea69a2a44850
[ARM] Add <saturate> operand to SQRSHRL and UQRSHLL

Summary:
According to the new Armv8-M specification
https://static.docs.arm.com/ddi0553/bh/DDI0553B_h_armv8m_arm.pdf the
instructions SQRSHRL and UQRSHLL now have an additional immediate
operand <saturate>. The new assembly syntax is:

SQRSHRL<c> RdaLo, RdaHi, #<saturate>, Rm
UQRSHLL<c> RdaLo, RdaHi, #<saturate>, Rm

where <saturate> can be either 64 (the existing behavior) or 48, in
that case the result is saturated to 48 bits.

The new operand is encoded as follows:
  #64 Encoded as sat = 0
  #48 Encoded as sat = 1
sat is bit 7 of the instruction bit pattern.

This patch adds a new assembler operand class MveSaturateOperand which
implements parsing and encoding. Decoding is implemented in
DecodeMVEOverlappingLongShift.

Reviewers: ostannard, simon_tatham, t.p.northover, samparker, dmgreen, SjoerdMeijer

Reviewed By: simon_tatham

Subscribers: javed.absar, kristof.beyls, hiraditya, pbarrio, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D64810

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@366555 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/ARM/ARMInstrFormats.td
lib/Target/ARM/ARMInstrMVE.td
lib/Target/ARM/AsmParser/ARMAsmParser.cpp
lib/Target/ARM/Disassembler/ARMDisassembler.cpp
lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
lib/Target/ARM/MCTargetDesc/ARMInstPrinter.h
test/MC/ARM/mve-scalar-shift.s
test/MC/Disassembler/ARM/mve-scalar-shift.txt