diff options
author | Oliver Stannard <oliver.stannard@arm.com> | 2018-02-08 13:06:08 +0000 |
---|---|---|
committer | Oliver Stannard <oliver.stannard@arm.com> | 2018-02-08 13:06:08 +0000 |
commit | db982b25ff719ad4e161a66e1978c6357dcb2b8b (patch) | |
tree | d08fbcc26faf083164b715e5eae2d56046d8adb9 | |
parent | 7aca05102c8dcf1cdfd0bb128c35be357afaf014 (diff) | |
download | bcm5719-llvm-db982b25ff719ad4e161a66e1978c6357dcb2b8b.tar.gz bcm5719-llvm-db982b25ff719ad4e161a66e1978c6357dcb2b8b.zip |
[ARM] Fix disassembly of invalid banked register moves
When disassembling banked register move instructions, we don't have an
assembly syntax for the unallocated register numbers, so we have to
return Fail rather than SoftFail. Previously we were returning SoftFail,
then crashing in the InstPrinter as we have no way to represent these
encodings in an assembly string.
This also switches the decoder to use the table-generated list of banked
registers, removing the duplicated list of encodings.
Differential revision: https://reviews.llvm.org/D43066
llvm-svn: 324600
-rw-r--r-- | llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp | 11 | ||||
-rw-r--r-- | llvm/test/MC/Disassembler/ARM/invalid-armv7.txt | 18 | ||||
-rw-r--r-- | llvm/test/MC/Disassembler/ARM/invalid-thumbv7.txt | 17 |
3 files changed, 35 insertions, 11 deletions
diff --git a/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp b/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp index 658a67511ff..f9a0a74bf8b 100644 --- a/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp +++ b/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp @@ -4205,15 +4205,8 @@ static DecodeStatus DecodeBankedReg(MCInst &Inst, unsigned Val, // The table of encodings for these banked registers comes from B9.2.3 of the // ARM ARM. There are patterns, but nothing regular enough to make this logic // neater. So by fiat, these values are UNPREDICTABLE: - if (!R) { - if (SysM == 0x7 || SysM == 0xf || SysM == 0x18 || SysM == 0x19 || - SysM == 0x1a || SysM == 0x1b) - return MCDisassembler::SoftFail; - } else { - if (SysM != 0xe && SysM != 0x10 && SysM != 0x12 && SysM != 0x14 && - SysM != 0x16 && SysM != 0x1c && SysM != 0x1e) - return MCDisassembler::SoftFail; - } + if (!ARMBankedReg::lookupBankedRegByEncoding((R << 5) | SysM)) + return MCDisassembler::Fail; Inst.addOperand(MCOperand::createImm(Val)); return MCDisassembler::Success; diff --git a/llvm/test/MC/Disassembler/ARM/invalid-armv7.txt b/llvm/test/MC/Disassembler/ARM/invalid-armv7.txt index 550173f7823..fa7bba611ab 100644 --- a/llvm/test/MC/Disassembler/ARM/invalid-armv7.txt +++ b/llvm/test/MC/Disassembler/ARM/invalid-armv7.txt @@ -1,4 +1,4 @@ -# RUN: not llvm-mc -disassemble %s -mcpu cortex-a8 -triple armv7 2>&1 | FileCheck %s +# RUN: not llvm-mc -disassemble %s -mcpu cortex-a15 -triple armv7 2>&1 | FileCheck %s # This file is checking ARMv7 encodings which are globally invalid, usually due # to the constraints of the instructions not being met. For example invalid @@ -500,3 +500,19 @@ [0x3d 0x3c 0xa0 0xf4] # CHECK: invalid instruction encoding # CHECK-NEXT: [0x3d 0x3c 0xa0 0xf4] + + +#------------------------------------------------------------------------------ +# Undefined encodings for MSR/MRS (banked register) +#------------------------------------------------------------------------------ +# These have a banked register encoding of 0b111111, which is unallocated. + +# msr <invalid>, r0 +[0x00,0xf3,0x6f,0xe1] +# CHECK: invalid instruction encoding +# CHECK-NEXT: [0x00,0xf3,0x6f,0xe1] + +# mrs r0, <invalid> +[0x00,0x03,0x4f,0xe1] +# CHECK: invalid instruction encoding +# CHECK-NEXT: [0x00,0x03,0x4f,0xe1] diff --git a/llvm/test/MC/Disassembler/ARM/invalid-thumbv7.txt b/llvm/test/MC/Disassembler/ARM/invalid-thumbv7.txt index 512fc5d237e..e295ed30c31 100644 --- a/llvm/test/MC/Disassembler/ARM/invalid-thumbv7.txt +++ b/llvm/test/MC/Disassembler/ARM/invalid-thumbv7.txt @@ -1,4 +1,4 @@ -# RUN: not llvm-mc -disassemble %s -mcpu cortex-a8 -triple thumbv7 2>&1 | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-V7 +# RUN: not llvm-mc -disassemble %s -mcpu cortex-a15 -triple thumbv7 2>&1 | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-V7 # RUN: not llvm-mc -disassemble %s -mcpu cortex-a53 -triple thumbv8 2>&1 | FileCheck %s # This file is checking Thumbv7 encodings which are globally invalid, usually due @@ -379,3 +379,18 @@ [0x63 0xeb 0x2d 0x46] # CHECK-V7: warning: potentially undefined instruction encoding # CHECK-V7-NEXT: [0x63 0xeb 0x2d 0x46] + +#------------------------------------------------------------------------------ +# Undefined encodings for MSR/MRS (banked register) +#------------------------------------------------------------------------------ +# These have a banked register encoding of 0b111111, which is unallocated. + +# msr <invalid>, r0 +[0x90,0xf3,0x30,0x8f] +# CHECK: invalid instruction encoding +# CHECK-NEXT: [0x90,0xf3,0x30,0x8f] + +# mrs r0, <invalid> +[0xff,0xf3,0x30,0x80] +# CHECK: invalid instruction encoding +# CHECK-NEXT: [0xff,0xf3,0x30,0x80] |