mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Tighten operand decoding of addrmode2 instruction. The offset register cannot be PC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137323 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3dac0bec7e
commit
2b7b238e84
@ -625,7 +625,7 @@ def ldst_so_reg : Operand<i32>,
|
||||
let PrintMethod = "printAddrMode2Operand";
|
||||
let DecoderMethod = "DecodeSORegMemOperand";
|
||||
let ParserMatchClass = MemRegOffsetAsmOperand;
|
||||
let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$shift);
|
||||
let MIOperandInfo = (ops GPR:$base, GPRnopc:$offsreg, i32imm:$shift);
|
||||
}
|
||||
|
||||
// postidx_imm8 := +/- [0,255]
|
||||
|
@ -979,7 +979,7 @@ static bool DecodeAddrMode2IdxInstruction(llvm::MCInst &Inst, unsigned Insn,
|
||||
idx_mode = ARMII::IndexModePost;
|
||||
|
||||
if (reg) {
|
||||
if (!DecodeGPRRegisterClass(Inst, Rm, Address, Decoder)) return false;
|
||||
if (!DecodeGPRnopcRegisterClass(Inst, Rm, Address, Decoder)) return false;
|
||||
ARM_AM::ShiftOpc Opc = ARM_AM::lsl;
|
||||
switch( fieldFromInstruction32(Insn, 5, 2)) {
|
||||
case 0:
|
||||
|
@ -1,11 +1,10 @@
|
||||
# RUN: llvm-mc --disassemble %s -triple=arm-apple-darwin9 |& grep {invalid instruction encoding}
|
||||
# XFAIL: *
|
||||
|
||||
# Opcode=165 Name=LDR_PRE Format=ARM_FORMAT_LDFRM(6)
|
||||
# 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
|
||||
# 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
|
||||
# -------------------------------------------------------------------------------------------------
|
||||
# | 1: 1: 1: 0| 0: 1: 1: 1| 1: 0: 1: 1| 0: 1: 1: 1| 0: 1: 1: 0| 0: 0: 0: 0| 1: 0: 0: 0| 1: 1: 1: 1|
|
||||
# -------------------------------------------------------------------------------------------------
|
||||
#
|
||||
#
|
||||
# if m == 15 then UNPREDICTABLE
|
||||
0x8f 0x60 0xb7 0xe7
|
||||
|
Loading…
Reference in New Issue
Block a user