diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64.td | 4 | ||||
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64InstrFormats.td | 4 | ||||
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64InstrInfo.td | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64.td b/llvm/lib/Target/AArch64/AArch64.td index d0f9bd46002..e49afd60c8e 100644 --- a/llvm/lib/Target/AArch64/AArch64.td +++ b/llvm/lib/Target/AArch64/AArch64.td @@ -70,7 +70,9 @@ include "AArch64CallingConv.td" include "AArch64InstrInfo.td" -def AArch64InstrInfo : InstrInfo; +def AArch64InstrInfo : InstrInfo { + let noNamedPositionallyEncodedOperands = 1; +} //===----------------------------------------------------------------------===// // Declare the target which we are implementing diff --git a/llvm/lib/Target/AArch64/AArch64InstrFormats.td b/llvm/lib/Target/AArch64/AArch64InstrFormats.td index 34f917caabe..4cc3813203c 100644 --- a/llvm/lib/Target/AArch64/AArch64InstrFormats.td +++ b/llvm/lib/Target/AArch64/AArch64InstrFormats.td @@ -346,15 +346,13 @@ class A64I_dp3<bit sf, bits<6> opcode, dag outs, dag ins, string asmstr, list<dag> patterns, InstrItinClass itin> : A64InstRdnm<outs, ins, asmstr, patterns, itin> { - bits<5> Ra; - let Inst{31} = sf; let Inst{30-29} = opcode{5-4}; let Inst{28-24} = 0b11011; let Inst{23-21} = opcode{3-1}; // Inherits Rm in 20-16 let Inst{15} = opcode{0}; - let Inst{14-10} = Ra; + // {14-10} mostly Ra, but unspecified for SMULH/UMULH // Inherits Rn in 9-5 // Inherits Rd in 4-0 } diff --git a/llvm/lib/Target/AArch64/AArch64InstrInfo.td b/llvm/lib/Target/AArch64/AArch64InstrInfo.td index 4588eb73c5d..3dc66a1f238 100644 --- a/llvm/lib/Target/AArch64/AArch64InstrInfo.td +++ b/llvm/lib/Target/AArch64/AArch64InstrInfo.td @@ -1881,6 +1881,9 @@ class A64I_dp3_4operand<bit sf, bits<6> opcode, RegisterClass AccReg, !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Ra"), [(set AccTy:$Rd, pattern)], NoItinerary>, Sched<[WriteMAC, ReadMAC, ReadMAC, ReadMAC]> { + bits<5> Ra; + let Inst{14-10} = Ra; + RegisterClass AccGPR = AccReg; RegisterClass SrcGPR = SrcReg; } |