summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM
diff options
context:
space:
mode:
authorMikhail Maltsev <mikhail.maltsev@arm.com>2019-07-08 09:44:52 +0000
committerMikhail Maltsev <mikhail.maltsev@arm.com>2019-07-08 09:44:52 +0000
commitee81051fc96a6e1fe1c4efba75db8e368f918aa4 (patch)
treea4d5ca4238f6709e2f9da9dcab3ca73d8b6d92bf /llvm/lib/Target/ARM
parent77d4a8f9f7c99172105f184cbb71f052081ccf02 (diff)
downloadbcm5719-llvm-ee81051fc96a6e1fe1c4efba75db8e368f918aa4.tar.gz
bcm5719-llvm-ee81051fc96a6e1fe1c4efba75db8e368f918aa4.zip
[ARM] Relax constraints on operands of VQxDMLxDH instructions
Summary: According to a recently updated Armv8-M spec (https://static.docs.arm.com/ddi0553/bh/DDI0553B_h_armv8m_arm.pdf) the 32-bit width versions of the following instructions: * VQDMLADH * VQDMLADHX * VQRDMLADH * VQRDMLADHX * VQDMLSDH * VQDMLSDHX * VQRDMLSDH * VQRDMLSDHX are no longer unpredictable when their output register is the same as one of the input registers. This patch updates the assembler parser and the corresponding tests and also removes @earlyclobber from the instruction constraints. Reviewers: simon_tatham, ostannard, dmgreen, SjoerdMeijer, samparker Reviewed By: simon_tatham Subscribers: javed.absar, kristof.beyls, hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D64250 llvm-svn: 365306
Diffstat (limited to 'llvm/lib/Target/ARM')
-rw-r--r--llvm/lib/Target/ARM/ARMInstrMVE.td13
-rw-r--r--llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp10
2 files changed, 6 insertions, 17 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrMVE.td b/llvm/lib/Target/ARM/ARMInstrMVE.td
index e1882635c8b..06f8b18320c 100644
--- a/llvm/lib/Target/ARM/ARMInstrMVE.td
+++ b/llvm/lib/Target/ARM/ARMInstrMVE.td
@@ -2834,13 +2834,10 @@ class MVE_qDest_qSrc<string iname, string suffix, dag oops, dag iops,
}
class MVE_VQxDMLxDH<string iname, bit exch, bit round, bit subtract,
- string suffix, bits<2> size, bit earlyclobber,
- list<dag> pattern=[]>
+ string suffix, bits<2> size, list<dag> pattern=[]>
: MVE_qDest_qSrc<iname, suffix, (outs MQPR:$Qd),
(ins MQPR:$Qd_src, MQPR:$Qn, MQPR:$Qm), "$Qd, $Qn, $Qm",
- vpred_n,
- !if(earlyclobber, "@earlyclobber $Qd,", "") # "$Qd = $Qd_src",
- pattern> {
+ vpred_n, "$Qd = $Qd_src", pattern> {
bits<4> Qn;
let Inst{28} = subtract;
@@ -2855,9 +2852,9 @@ class MVE_VQxDMLxDH<string iname, bit exch, bit round, bit subtract,
multiclass MVE_VQxDMLxDH_multi<string iname, bit exch,
bit round, bit subtract> {
- def s8 : MVE_VQxDMLxDH<iname, exch, round, subtract, "s8", 0b00, 0b0>;
- def s16 : MVE_VQxDMLxDH<iname, exch, round, subtract, "s16", 0b01, 0b0>;
- def s32 : MVE_VQxDMLxDH<iname, exch, round, subtract, "s32", 0b10, 0b1>;
+ def s8 : MVE_VQxDMLxDH<iname, exch, round, subtract, "s8", 0b00>;
+ def s16 : MVE_VQxDMLxDH<iname, exch, round, subtract, "s16", 0b01>;
+ def s32 : MVE_VQxDMLxDH<iname, exch, round, subtract, "s32", 0b10>;
}
defm MVE_VQDMLADH : MVE_VQxDMLxDH_multi<"vqdmladh", 0b0, 0b0, 0b0>;
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index 3ff3af9dd58..1da9452f1d2 100644
--- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
@@ -7865,15 +7865,7 @@ bool ARMAsmParser::validateInstruction(MCInst &Inst,
case ARM::MVE_VMULLs32bh:
case ARM::MVE_VMULLs32th:
case ARM::MVE_VMULLu32bh:
- case ARM::MVE_VMULLu32th:
- case ARM::MVE_VQDMLADHs32:
- case ARM::MVE_VQDMLADHXs32:
- case ARM::MVE_VQRDMLADHs32:
- case ARM::MVE_VQRDMLADHXs32:
- case ARM::MVE_VQDMLSDHs32:
- case ARM::MVE_VQDMLSDHXs32:
- case ARM::MVE_VQRDMLSDHs32:
- case ARM::MVE_VQRDMLSDHXs32: {
+ case ARM::MVE_VMULLu32th: {
if (Operands[3]->getReg() == Operands[4]->getReg()) {
return Error (Operands[3]->getStartLoc(),
"Qd register and Qn register can't be identical");
OpenPOWER on IntegriCloud