Fix ARM encoding of LDM+Return instruction.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118730 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach 2010-11-10 23:12:48 +00:00
parent 2365f08c7d
commit 866aa394ca
2 changed files with 10 additions and 3 deletions

View File

@ -941,9 +941,11 @@ class AXI4ld<dag oops, dag iops, IndexMode im, Format f, InstrItinClass itin,
: XI<oops, iops, AddrMode4, Size4Bytes, im, f, itin,
asm, cstr, pattern> {
bits<16> dsts;
let Inst{20} = 1; // L bit
let Inst{22} = 0; // S bit
bits<4> Rn;
let Inst{27-25} = 0b100;
let Inst{22} = 0; // S bit
let Inst{20} = 1; // L bit
let Inst{19-16} = Rn;
let Inst{15-0} = dsts;
}
class AXI4st<dag oops, dag iops, IndexMode im, Format f, InstrItinClass itin,

View File

@ -1183,7 +1183,12 @@ let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
reglist:$dsts, variable_ops),
IndexModeUpd, LdStMulFrm, IIC_iLoad_mBr,
"ldm${mode}${p}\t$Rn!, $dsts",
"$Rn = $wb", []>;
"$Rn = $wb", []> {
bits<4> p;
let Inst{31-28} = p;
let Inst{24-23} = 0b01;
let Inst{21} = 1;
}
// On non-Darwin platforms R9 is callee-saved.
let isCall = 1,