mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Added the missing bit definition for the 4th bit of the STR (post reg) instruction. It is now set to 0. The patch also sets the unpredictable mask for SEL and SXTB-type instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156609 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ca3cd419a5
commit
169e9ba2b2
@ -827,6 +827,8 @@ class AExtI<bits<8> opcod, dag oops, dag iops, InstrItinClass itin,
|
||||
let Inst{7-4} = 0b0111;
|
||||
let Inst{9-8} = 0b00;
|
||||
let Inst{27-20} = opcod;
|
||||
|
||||
let Unpredictable{9-8} = 0b11;
|
||||
}
|
||||
|
||||
// Misc Arithmetic instructions.
|
||||
|
@ -1614,6 +1614,8 @@ def SEL : AI<(outs GPR:$Rd), (ins GPR:$Rn, GPR:$Rm), DPFrm, NoItinerary, "sel",
|
||||
let Inst{27-20} = 0b01101000;
|
||||
let Inst{7-4} = 0b1011;
|
||||
let Inst{11-8} = 0b1111;
|
||||
|
||||
let Unpredictable{11-8} = 0b1111;
|
||||
}
|
||||
|
||||
def SEV : AI<(outs), (ins), MiscFrm, NoItinerary, "sev", "",
|
||||
@ -2429,6 +2431,7 @@ multiclass AI2_stridx<bit isByte, string opc,
|
||||
let Inst{23} = offset{12};
|
||||
let Inst{19-16} = addr;
|
||||
let Inst{11-0} = offset{11-0};
|
||||
let Inst{4} = 0;
|
||||
|
||||
let DecoderMethod = "DecodeAddrMode2IdxInstruction";
|
||||
}
|
||||
|
62
test/MC/Disassembler/ARM/unpredictable-AExtI-arm.txt
Normal file
62
test/MC/Disassembler/ARM/unpredictable-AExtI-arm.txt
Normal file
@ -0,0 +1,62 @@
|
||||
# RUN: llvm-mc --disassemble %s -triple=armv7-linux-gnueabi |& FileCheck %s -check-prefix=CHECK-WARN
|
||||
# RUN: llvm-mc --disassemble %s -triple=armv7-linux-gnueabi |& FileCheck %s
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x03 0xaf 0x06
|
||||
# CHECK: sxtb
|
||||
0x74 0x03 0xaf 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0xbf 0x06
|
||||
# CHECK: sxth
|
||||
0x74 0x3f 0xbf 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0xa6 0x06
|
||||
# CHECK: sxtab
|
||||
0x74 0x3f 0xa6 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0xb7 0x06
|
||||
# CHECK: sxtah
|
||||
0x74 0x3f 0xb7 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0x8f 0x06
|
||||
# CHECK: sxtb16
|
||||
0x74 0x3f 0x8f 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0x86 0x06
|
||||
# CHECK: sxtab16
|
||||
0x74 0x3f 0x86 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0xef 0x06
|
||||
# CHECK: uxtb
|
||||
0x74 0x3f 0xef 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0xff 0x06
|
||||
# CHECK: uxth
|
||||
0x74 0x3f 0xff 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0xcf 0x06
|
||||
# CHECK: uxtb16
|
||||
0x74 0x3f 0xcf 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0xe4 0x06
|
||||
# CHECK: uxtab
|
||||
0x74 0x3f 0xe4 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0xf2 0x06
|
||||
# CHECK: uxtah
|
||||
0x74 0x3f 0xf2 0x06
|
||||
|
||||
# CHECK-WARN: potentially undefined
|
||||
# CHECK-WARN: 0x74 0x3f 0xc4 0x06
|
||||
# CHECK: uxtab16
|
||||
0x74 0x3f 0xc4 0x06
|
5
test/MC/Disassembler/ARM/unpredictable-SEL-arm.txt
Normal file
5
test/MC/Disassembler/ARM/unpredictable-SEL-arm.txt
Normal file
@ -0,0 +1,5 @@
|
||||
# RUN: llvm-mc --disassemble %s -triple=armv7-linux-gnueabi |& FileCheck %s
|
||||
|
||||
# CHECK: potentially undefined
|
||||
# CHECK: 0xb4 0x38 0x80 0x06
|
||||
0xb4 0x38 0x80 0x06
|
Loading…
x
Reference in New Issue
Block a user