mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 17:32:36 +00:00
Assembly parsing for 3-register variant of VLD1.
llvm-svn: 142675
This commit is contained in:
parent
806a1e5c78
commit
2c1ca90ac9
@ -144,8 +144,8 @@ static const NEONLdStTableEntry NEONLdStTable[] = {
|
||||
|
||||
{ ARM::VLD1d64QPseudo, ARM::VLD1d64Q, true, false, SingleSpc, 4, 1 ,true},
|
||||
{ ARM::VLD1d64QPseudo_UPD, ARM::VLD1d64Q_UPD, true, true, SingleSpc, 4, 1 ,true},
|
||||
{ ARM::VLD1d64TPseudo, ARM::VLD1d64T, true, false, SingleSpc, 3, 1 ,true},
|
||||
{ ARM::VLD1d64TPseudo_UPD, ARM::VLD1d64T_UPD, true, true, SingleSpc, 3, 1 ,true},
|
||||
{ ARM::VLD1d64TPseudo, ARM::VLD1d64T, true, false, SingleSpc, 3, 1 ,false},
|
||||
{ ARM::VLD1d64TPseudo_UPD, ARM::VLD1d64T_UPD, true, true, SingleSpc, 3, 1 ,false},
|
||||
|
||||
{ ARM::VLD1q16Pseudo, ARM::VLD1q16, true, false, SingleSpc, 2, 4 ,false},
|
||||
{ ARM::VLD1q16Pseudo_UPD, ARM::VLD1q16_UPD, true, true, SingleSpc, 2, 4 ,false},
|
||||
|
@ -85,6 +85,14 @@ def VecListTwoDAsmOperand : AsmOperandClass {
|
||||
def VecListTwoD : RegisterOperand<DPR, "printVectorListTwo"> {
|
||||
let ParserMatchClass = VecListTwoDAsmOperand;
|
||||
}
|
||||
// Register list of three sequential D registers.
|
||||
def VecListThreeDAsmOperand : AsmOperandClass {
|
||||
let Name = "VecListThreeD";
|
||||
let ParserMethod = "parseVectorList";
|
||||
}
|
||||
def VecListThreeD : RegisterOperand<DPR, "printVectorListThree"> {
|
||||
let ParserMatchClass = VecListThreeDAsmOperand;
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// NEON-specific DAG Nodes.
|
||||
@ -319,17 +327,17 @@ def VLD1q64Pseudo_UPD : VLDQWBPseudo<IIC_VLD1x2u>;
|
||||
|
||||
// ...with 3 registers
|
||||
class VLD1D3<bits<4> op7_4, string Dt>
|
||||
: NLdSt<0,0b10,0b0110,op7_4, (outs DPR:$Vd, DPR:$dst2, DPR:$dst3),
|
||||
: NLdSt<0,0b10,0b0110,op7_4, (outs VecListThreeD:$Vd),
|
||||
(ins addrmode6:$Rn), IIC_VLD1x3, "vld1", Dt,
|
||||
"\\{$Vd, $dst2, $dst3\\}, $Rn", "", []> {
|
||||
"$Vd, $Rn", "", []> {
|
||||
let Rm = 0b1111;
|
||||
let Inst{4} = Rn{4};
|
||||
let DecoderMethod = "DecodeVLDInstruction";
|
||||
}
|
||||
class VLD1D3WB<bits<4> op7_4, string Dt>
|
||||
: NLdSt<0,0b10,0b0110,op7_4, (outs DPR:$Vd, DPR:$dst2, DPR:$dst3, GPR:$wb),
|
||||
: NLdSt<0,0b10,0b0110,op7_4, (outs VecListThreeD:$Vd, GPR:$wb),
|
||||
(ins addrmode6:$Rn, am6offset:$Rm), IIC_VLD1x3u, "vld1", Dt,
|
||||
"\\{$Vd, $dst2, $dst3\\}, $Rn$Rm", "$Rn.addr = $wb", []> {
|
||||
"$Vd, $Rn$Rm", "$Rn.addr = $wb", []> {
|
||||
let Inst{4} = Rn{4};
|
||||
let DecoderMethod = "DecodeVLDInstruction";
|
||||
}
|
||||
|
@ -920,6 +920,11 @@ public:
|
||||
return VectorList.Count == 2;
|
||||
}
|
||||
|
||||
bool isVecListThreeD() const {
|
||||
if (Kind != k_VectorList) return false;
|
||||
return VectorList.Count == 3;
|
||||
}
|
||||
|
||||
bool isVectorIndex8() const {
|
||||
if (Kind != k_VectorIndex) return false;
|
||||
return VectorIndex.Val < 8;
|
||||
@ -1519,6 +1524,13 @@ public:
|
||||
Inst.addOperand(MCOperand::CreateReg(VectorList.RegNum));
|
||||
}
|
||||
|
||||
void addVecListThreeDOperands(MCInst &Inst, unsigned N) const {
|
||||
assert(N == 1 && "Invalid number of operands!");
|
||||
// Only the first register actually goes on the instruction. The rest
|
||||
// are implied by the opcode.
|
||||
Inst.addOperand(MCOperand::CreateReg(VectorList.RegNum));
|
||||
}
|
||||
|
||||
void addVectorIndex8Operands(MCInst &Inst, unsigned N) const {
|
||||
assert(N == 1 && "Invalid number of operands!");
|
||||
Inst.addOperand(MCOperand::CreateImm(getVectorIndex()));
|
||||
|
@ -1959,14 +1959,6 @@ static DecodeStatus DecodeVLDInstruction(llvm::MCInst &Inst, unsigned Insn,
|
||||
|
||||
// Second output register
|
||||
switch (Inst.getOpcode()) {
|
||||
case ARM::VLD1d8T:
|
||||
case ARM::VLD1d16T:
|
||||
case ARM::VLD1d32T:
|
||||
case ARM::VLD1d64T:
|
||||
case ARM::VLD1d8T_UPD:
|
||||
case ARM::VLD1d16T_UPD:
|
||||
case ARM::VLD1d32T_UPD:
|
||||
case ARM::VLD1d64T_UPD:
|
||||
case ARM::VLD1d8Q:
|
||||
case ARM::VLD1d16Q:
|
||||
case ARM::VLD1d32Q:
|
||||
@ -2028,14 +2020,6 @@ static DecodeStatus DecodeVLDInstruction(llvm::MCInst &Inst, unsigned Insn,
|
||||
|
||||
// Third output register
|
||||
switch(Inst.getOpcode()) {
|
||||
case ARM::VLD1d8T:
|
||||
case ARM::VLD1d16T:
|
||||
case ARM::VLD1d32T:
|
||||
case ARM::VLD1d64T:
|
||||
case ARM::VLD1d8T_UPD:
|
||||
case ARM::VLD1d16T_UPD:
|
||||
case ARM::VLD1d32T_UPD:
|
||||
case ARM::VLD1d64T_UPD:
|
||||
case ARM::VLD1d8Q:
|
||||
case ARM::VLD1d16Q:
|
||||
case ARM::VLD1d32Q:
|
||||
|
@ -1004,3 +1004,13 @@ void ARMInstPrinter::printVectorListTwo(const MCInst *MI, unsigned OpNum,
|
||||
O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << ", "
|
||||
<< getRegisterName(MI->getOperand(OpNum).getReg() + 1) << "}";
|
||||
}
|
||||
|
||||
void ARMInstPrinter::printVectorListThree(const MCInst *MI, unsigned OpNum,
|
||||
raw_ostream &O) {
|
||||
// Normally, it's not safe to use register enum values directly with
|
||||
// addition to get the next register, but for VFP registers, the
|
||||
// sort order is guaranteed because they're all of the form D<n>.
|
||||
O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << ", "
|
||||
<< getRegisterName(MI->getOperand(OpNum).getReg() + 1) << ", "
|
||||
<< getRegisterName(MI->getOperand(OpNum).getReg() + 2) << "}";
|
||||
}
|
||||
|
@ -131,6 +131,7 @@ public:
|
||||
void printVectorIndex(const MCInst *MI, unsigned OpNum, raw_ostream &O);
|
||||
void printVectorListOne(const MCInst *MI, unsigned OpNum, raw_ostream &O);
|
||||
void printVectorListTwo(const MCInst *MI, unsigned OpNum, raw_ostream &O);
|
||||
void printVectorListThree(const MCInst *MI, unsigned OpNum, raw_ostream &O);
|
||||
};
|
||||
|
||||
} // end namespace llvm
|
||||
|
@ -8,6 +8,10 @@
|
||||
vld1.16 {d16, d17}, [r0, :128]
|
||||
vld1.32 {d16, d17}, [r0]
|
||||
vld1.64 {d16, d17}, [r0]
|
||||
vld1.8 {d1, d2, d3}, [r3]
|
||||
vld1.16 {d4, d5, d6}, [r3, :64]
|
||||
vld1.32 {d5, d6, d7}, [r3]
|
||||
vld1.64 {d6, d7, d8}, [r3, :64]
|
||||
|
||||
@ CHECK: vld1.8 {d16}, [r0, :64] @ encoding: [0x1f,0x07,0x60,0xf4]
|
||||
@ CHECK: vld1.16 {d16}, [r0] @ encoding: [0x4f,0x07,0x60,0xf4]
|
||||
@ -17,7 +21,10 @@
|
||||
@ CHECK: vld1.16 {d16, d17}, [r0, :128] @ encoding: [0x6f,0x0a,0x60,0xf4]
|
||||
@ CHECK: vld1.32 {d16, d17}, [r0] @ encoding: [0x8f,0x0a,0x60,0xf4]
|
||||
@ CHECK: vld1.64 {d16, d17}, [r0] @ encoding: [0xcf,0x0a,0x60,0xf4]
|
||||
|
||||
@ CHECK: vld1.8 {d1, d2, d3}, [r3] @ encoding: [0x0f,0x16,0x23,0xf4]
|
||||
@ CHECK: vld1.16 {d4, d5, d6}, [r3, :64] @ encoding: [0x5f,0x46,0x23,0xf4]
|
||||
@ CHECK: vld1.32 {d5, d6, d7}, [r3] @ encoding: [0x8f,0x56,0x23,0xf4]
|
||||
@ CHECK: vld1.64 {d6, d7, d8}, [r3, :64] @ encoding: [0xdf,0x66,0x23,0xf4]
|
||||
|
||||
@ vld2.8 {d16, d17}, [r0, :64]
|
||||
@ vld2.16 {d16, d17}, [r0, :128]
|
||||
|
@ -573,6 +573,7 @@ static int ARMFlagFromOpName(LiteralConstantEmitter *type,
|
||||
REG("QQQQPR");
|
||||
REG("VecListOneD");
|
||||
REG("VecListTwoD");
|
||||
REG("VecListThreeD");
|
||||
|
||||
IMM("i32imm");
|
||||
IMM("i32imm_hilo16");
|
||||
|
Loading…
x
Reference in New Issue
Block a user