mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 16:17:17 +00:00
ARM: enforce SRS decoding constraints
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183611 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1768,6 +1768,7 @@ static DecodeStatus DecodeMemMultipleWritebackInstruction(MCInst &Inst,
|
||||
unsigned reglist = fieldFromInstruction(Insn, 0, 16);
|
||||
|
||||
if (pred == 0xF) {
|
||||
// Ambiguous with RFE and SRS
|
||||
switch (Inst.getOpcode()) {
|
||||
case ARM::LDMDA:
|
||||
Inst.setOpcode(ARM::RFEDA);
|
||||
@@ -1818,11 +1819,16 @@ static DecodeStatus DecodeMemMultipleWritebackInstruction(MCInst &Inst,
|
||||
Inst.setOpcode(ARM::SRSIB_UPD);
|
||||
break;
|
||||
default:
|
||||
if (!Check(S, MCDisassembler::Fail)) return MCDisassembler::Fail;
|
||||
return MCDisassembler::Fail;
|
||||
}
|
||||
|
||||
// For stores (which become SRS's, the only operand is the mode.
|
||||
if (fieldFromInstruction(Insn, 20, 1) == 0) {
|
||||
// Check SRS encoding constraints
|
||||
if (!(fieldFromInstruction(Insn, 22, 1) == 1 &&
|
||||
fieldFromInstruction(Insn, 20, 1) == 0))
|
||||
return MCDisassembler::Fail;
|
||||
|
||||
Inst.addOperand(
|
||||
MCOperand::CreateImm(fieldFromInstruction(Insn, 0, 4)));
|
||||
return S;
|
||||
|
Reference in New Issue
Block a user