mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Thumb2 assembly parsing of 'mov rd, rn, rrx'.
Maps to the RRX instruction. Missed this case earlier. rdar://10615373 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147096 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5c0d761d63
commit
520dc78d92
@ -5802,6 +5802,7 @@ processInstruction(MCInst &Inst,
|
||||
case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRri : ARM::t2LSRri; break;
|
||||
case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLri : ARM::t2LSLri; break;
|
||||
case ARM_AM::ror: newOpc = ARM::t2RORri; isNarrow = false; break;
|
||||
case ARM_AM::rrx: isNarrow = false; newOpc = ARM::t2RRX; break;
|
||||
}
|
||||
unsigned Ammount = ARM_AM::getSORegOffset(Inst.getOperand(2).getImm());
|
||||
if (Ammount == 32) Ammount = 0;
|
||||
@ -5811,7 +5812,8 @@ processInstruction(MCInst &Inst,
|
||||
TmpInst.addOperand(MCOperand::CreateReg(
|
||||
Inst.getOpcode() == ARM::t2MOVSsi ? ARM::CPSR : 0));
|
||||
TmpInst.addOperand(Inst.getOperand(1)); // Rn
|
||||
TmpInst.addOperand(MCOperand::CreateImm(Ammount));
|
||||
if (newOpc != ARM::t2RRX)
|
||||
TmpInst.addOperand(MCOperand::CreateImm(Ammount));
|
||||
TmpInst.addOperand(Inst.getOperand(3)); // CondCode
|
||||
TmpInst.addOperand(Inst.getOperand(4));
|
||||
if (!isNarrow)
|
||||
|
@ -1167,6 +1167,7 @@ _func:
|
||||
moveq r4, r4, lsr r5
|
||||
moveq r4, r4, asr r5
|
||||
moveq r4, r4, ror r5
|
||||
mov r4, r4, rrx
|
||||
|
||||
@ CHECK: lsl.w r6, r2, #16 @ encoding: [0x4f,0xea,0x02,0x46]
|
||||
@ CHECK: lsr.w r6, r2, #16 @ encoding: [0x4f,0xea,0x12,0x46]
|
||||
@ -1184,7 +1185,7 @@ _func:
|
||||
@ CHECK: lsreq r4, r5 @ encoding: [0xec,0x40]
|
||||
@ CHECK: asreq r4, r5 @ encoding: [0x2c,0x41]
|
||||
@ CHECK: roreq r4, r5 @ encoding: [0xec,0x41]
|
||||
|
||||
@ CHECK: rrx r4, r4 @ encoding: [0x4f,0xea,0x34,0x04]
|
||||
|
||||
|
||||
@------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user