let Inst{19-16} = Rn;
let Inst{15-0} = regs;
}
-class AXI4ld<dag oops, dag iops, IndexMode im, Format f, InstrItinClass itin,
- string asm, string cstr, list<dag> pattern>
- : XI<oops, iops, AddrMode4, Size4Bytes, im, f, itin,
- asm, cstr, pattern> {
- bits<4> p;
- bits<16> dsts;
- bits<4> Rn;
- bits<2> amode;
- let Inst{31-28} = p;
- let Inst{27-25} = 0b100;
- let Inst{24-23} = amode;
- 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,
- string asm, string cstr, list<dag> pattern>
- : XI<oops, iops, AddrMode4, Size4Bytes, im, f, itin,
- asm, cstr, pattern> {
- bits<4> p;
- bits<16> srcs;
- bits<4> Rn;
- bits<2> amode;
- let Inst{31-28} = p;
- let Inst{27-25} = 0b100;
- let Inst{24-23} = amode;
- let Inst{22} = 0; // S bit
- let Inst{20} = 0; // L bit
- let Inst{19-16} = Rn;
- let Inst{15-0} = srcs;
-}
// Unsigned multiply, multiply-accumulate instructions.
class AMul1I<bits<7> opcod, dag oops, dag iops, InstrItinClass itin,
// FIXME: Should pc be an implicit operand like PICADD, etc?
let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
hasExtraDefRegAllocReq = 1, isCodeGenOnly = 1 in
-def LDMIA_RET : AXI4ld<(outs GPR:$wb), (ins GPR:$Rn, pred:$p,
- reglist:$dsts, variable_ops),
- IndexModeUpd, LdStMulFrm, IIC_iLoad_mBr,
- "ldmia${p}\t$Rn!, $dsts",
- "$Rn = $wb", []> {
- let Inst{24-23} = 0b01; // Increment After
- let Inst{21} = 1; // Writeback
+def LDMIA_RET : AXI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p,
+ reglist:$dsts, variable_ops),
+ IndexModeUpd, LdStMulFrm, IIC_iLoad_mBr,
+ "ldmia${p}\t$Rn!, $dsts",
+ "$Rn = $wb", []> {
+ let Inst{24-23} = 0b01; // Increment After
+ let Inst{21} = 1; // Writeback
+ let Inst{20} = 1; // Load
}
-
//===----------------------------------------------------------------------===//
// Move Instructions.
//
IIC_iLoad_mBr,
"ldmia${p}.w\t$Rn!, $dsts",
"$Rn = $wb", []> {
- let Inst{24-23} = 0b01; // IA: '01', DB: '10'
- let Inst{21} = 1; // The W bit.
- let Inst{20} = 1; // Load
+ bits<4> Rn;
+ bits<16> regs;
+
+ let Inst{31-27} = 0b11101;
+ let Inst{26-25} = 0b00;
+ let Inst{24-23} = 0b01; // Increment After
+ let Inst{22} = 0;
+ let Inst{21} = 1; // Writeback
+ let Inst{20} = L_bit;
+ let Inst{19-16} = Rn;
+ let Inst{15-0} = regs;
}
let isBranch = 1, isTerminator = 1, isBarrier = 1 in {