mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-30 20:24:32 +00:00
Add comments to the handling of opcode CPS3p to reject invalid instruction encoding,
a test case of invalid CPS3p encoding and one for invalid VLDMSDB due to regs out of range. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128220 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -2946,6 +2946,8 @@ static bool DisassembleMiscFrm(MCInst &MI, unsigned Opcode, uint32_t insn,
|
||||
// of optional arguments is implemented.
|
||||
if (Opcode == ARM::CPS3p) {
|
||||
// Let's reject impossible imod values by returning false.
|
||||
// AsmPrinter cannot handle imod=0b00, plus (imod=0b00,M=1,iflags!=0) is an
|
||||
// invalid combination, so we just check for imod=0b00 here.
|
||||
if (slice(insn, 19, 18) == 0 || slice(insn, 19, 18) == 1)
|
||||
return false;
|
||||
MI.addOperand(MCOperand::CreateImm(slice(insn, 19, 18))); // imod
|
||||
|
Reference in New Issue
Block a user