mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Fix the encoding of the armv7m (MClass) for MSR registers other than aspr,
iaspr, espr and xpsr which also needed to have 0b10 in their mask encoding bits. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158560 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -671,16 +671,26 @@ void ARMInstPrinter::printMSRMaskOperand(const MCInst *MI, unsigned OpNum,
|
||||
case 0x803: O << "xpsr"; return; // with _nzcvq bits is an alias for xpsr
|
||||
case 0x403: O << "xpsr_g"; return;
|
||||
case 0xc03: O << "xpsr_nzcvqg"; return;
|
||||
case 5: O << "ipsr"; return;
|
||||
case 6: O << "epsr"; return;
|
||||
case 7: O << "iepsr"; return;
|
||||
case 8: O << "msp"; return;
|
||||
case 9: O << "psp"; return;
|
||||
case 16: O << "primask"; return;
|
||||
case 17: O << "basepri"; return;
|
||||
case 18: O << "basepri_max"; return;
|
||||
case 19: O << "faultmask"; return;
|
||||
case 20: O << "control"; return;
|
||||
case 5:
|
||||
case 0x805: O << "ipsr"; return;
|
||||
case 6:
|
||||
case 0x806: O << "epsr"; return;
|
||||
case 7:
|
||||
case 0x807: O << "iepsr"; return;
|
||||
case 8:
|
||||
case 0x808: O << "msp"; return;
|
||||
case 9:
|
||||
case 0x809: O << "psp"; return;
|
||||
case 0x10:
|
||||
case 0x810: O << "primask"; return;
|
||||
case 0x11:
|
||||
case 0x811: O << "basepri"; return;
|
||||
case 0x12:
|
||||
case 0x812: O << "basepri_max"; return;
|
||||
case 0x13:
|
||||
case 0x813: O << "faultmask"; return;
|
||||
case 0x14:
|
||||
case 0x814: O << "control"; return;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user