mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-20 10:24:12 +00:00
ARM NEON VST2 assembly parsing and encoding.
Work in progress. Parsing for non-writeback, single spaced register lists works now. The rest have the representations better factored, but still need more to be able to parse properly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146579 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -2281,18 +2281,6 @@ static DecodeStatus DecodeVSTInstruction(llvm::MCInst &Inst, unsigned Insn,
|
||||
|
||||
// Second input register
|
||||
switch (Inst.getOpcode()) {
|
||||
case ARM::VST2d8:
|
||||
case ARM::VST2d16:
|
||||
case ARM::VST2d32:
|
||||
case ARM::VST2d8_UPD:
|
||||
case ARM::VST2d16_UPD:
|
||||
case ARM::VST2d32_UPD:
|
||||
case ARM::VST2q8:
|
||||
case ARM::VST2q16:
|
||||
case ARM::VST2q32:
|
||||
case ARM::VST2q8_UPD:
|
||||
case ARM::VST2q16_UPD:
|
||||
case ARM::VST2q32_UPD:
|
||||
case ARM::VST3d8:
|
||||
case ARM::VST3d16:
|
||||
case ARM::VST3d32:
|
||||
@ -2308,12 +2296,6 @@ static DecodeStatus DecodeVSTInstruction(llvm::MCInst &Inst, unsigned Insn,
|
||||
if (!Check(S, DecodeDPRRegisterClass(Inst, (Rd+1)%32, Address, Decoder)))
|
||||
return MCDisassembler::Fail;
|
||||
break;
|
||||
case ARM::VST2b8:
|
||||
case ARM::VST2b16:
|
||||
case ARM::VST2b32:
|
||||
case ARM::VST2b8_UPD:
|
||||
case ARM::VST2b16_UPD:
|
||||
case ARM::VST2b32_UPD:
|
||||
case ARM::VST3q8:
|
||||
case ARM::VST3q16:
|
||||
case ARM::VST3q32:
|
||||
@ -2335,12 +2317,6 @@ static DecodeStatus DecodeVSTInstruction(llvm::MCInst &Inst, unsigned Insn,
|
||||
|
||||
// Third input register
|
||||
switch (Inst.getOpcode()) {
|
||||
case ARM::VST2q8:
|
||||
case ARM::VST2q16:
|
||||
case ARM::VST2q32:
|
||||
case ARM::VST2q8_UPD:
|
||||
case ARM::VST2q16_UPD:
|
||||
case ARM::VST2q32_UPD:
|
||||
case ARM::VST3d8:
|
||||
case ARM::VST3d16:
|
||||
case ARM::VST3d32:
|
||||
@ -2377,12 +2353,6 @@ static DecodeStatus DecodeVSTInstruction(llvm::MCInst &Inst, unsigned Insn,
|
||||
|
||||
// Fourth input register
|
||||
switch (Inst.getOpcode()) {
|
||||
case ARM::VST2q8:
|
||||
case ARM::VST2q16:
|
||||
case ARM::VST2q32:
|
||||
case ARM::VST2q8_UPD:
|
||||
case ARM::VST2q16_UPD:
|
||||
case ARM::VST2q32_UPD:
|
||||
case ARM::VST4d8:
|
||||
case ARM::VST4d16:
|
||||
case ARM::VST4d32:
|
||||
|
Reference in New Issue
Block a user