diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-11-01 16:59:54 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-11-01 16:59:54 +0000 |
commit | 833c93c7958dbbd9d648f331091fbfbeabf342e6 (patch) | |
tree | dc06b77d91e07523a746228ec1de5ae8d237d230 /test | |
parent | d4462a5a4feae0293ca14376ff25d8bb72dd12a9 (diff) | |
download | external_llvm-833c93c7958dbbd9d648f331091fbfbeabf342e6.zip external_llvm-833c93c7958dbbd9d648f331091fbfbeabf342e6.tar.gz external_llvm-833c93c7958dbbd9d648f331091fbfbeabf342e6.tar.bz2 |
Mark ARM subtarget features that are available for the assembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117929 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/ARM/arm_instructions.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/arm_word_directive.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-abs-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-absdiff-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-add-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-bitcount-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-bitwise-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-cmp-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-convert-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-dup-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-minmax-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-mov-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-mul-accum-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-mul-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-neg-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-pairwise-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-reciprocal-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-reverse-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-satshift-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-shift-encoding.s | 2 | ||||
-rw-r--r-- | test/MC/ARM/simple-fp-encoding.s | 2 |
21 files changed, 21 insertions, 21 deletions
diff --git a/test/MC/ARM/arm_instructions.s b/test/MC/ARM/arm_instructions.s index 18a8cfa..b82b36a 100644 --- a/test/MC/ARM/arm_instructions.s +++ b/test/MC/ARM/arm_instructions.s @@ -1,4 +1,4 @@ -@ RUN: llvm-mc -triple arm-unknown-unknown -show-encoding %s | FileCheck %s +@ RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unknown -show-encoding %s | FileCheck %s @ CHECK: nop @ CHECK: encoding: [0x00,0xf0,0x20,0xe3] diff --git a/test/MC/ARM/arm_word_directive.s b/test/MC/ARM/arm_word_directive.s index 7833691..e782479 100644 --- a/test/MC/ARM/arm_word_directive.s +++ b/test/MC/ARM/arm_word_directive.s @@ -1,4 +1,4 @@ -@ RUN: llvm-mc -triple arm-unknown-unknown %s | FileCheck %s +@ RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unknown %s | FileCheck %s @ CHECK: TEST0: @ CHECK: .long 3 diff --git a/test/MC/ARM/neon-abs-encoding.s b/test/MC/ARM/neon-abs-encoding.s index b895a75..9a6284d 100644 --- a/test/MC/ARM/neon-abs-encoding.s +++ b/test/MC/ARM/neon-abs-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vabs.s8 d16, d16 @ encoding: [0x20,0x03,0xf1,0xf3] vabs.s8 d16, d16 diff --git a/test/MC/ARM/neon-absdiff-encoding.s b/test/MC/ARM/neon-absdiff-encoding.s index 314fc63..005a7f5 100644 --- a/test/MC/ARM/neon-absdiff-encoding.s +++ b/test/MC/ARM/neon-absdiff-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // XFAIL: * // NOTE: This currently fails because the ASM parser doesn't parse vabal. diff --git a/test/MC/ARM/neon-add-encoding.s b/test/MC/ARM/neon-add-encoding.s index 6211a3e..632657a 100644 --- a/test/MC/ARM/neon-add-encoding.s +++ b/test/MC/ARM/neon-add-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple armv7-apple-darwin -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple armv7-apple-darwin -show-encoding < %s | FileCheck %s // CHECK: vadd.i8 d16, d17, d16 @ encoding: [0xa0,0x08,0x41,0xf2] diff --git a/test/MC/ARM/neon-bitcount-encoding.s b/test/MC/ARM/neon-bitcount-encoding.s index 1693711..85ebcc0 100644 --- a/test/MC/ARM/neon-bitcount-encoding.s +++ b/test/MC/ARM/neon-bitcount-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // XFAIL: * // CHECK: vcnt.8 d16, d16 @ encoding: [0x20,0x05,0xf0,0xf3] diff --git a/test/MC/ARM/neon-bitwise-encoding.s b/test/MC/ARM/neon-bitwise-encoding.s index da7ae64..9db5cda 100644 --- a/test/MC/ARM/neon-bitwise-encoding.s +++ b/test/MC/ARM/neon-bitwise-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vand d16, d17, d16 @ encoding: [0xb0,0x01,0x41,0xf2] vand d16, d17, d16 diff --git a/test/MC/ARM/neon-cmp-encoding.s b/test/MC/ARM/neon-cmp-encoding.s index 1838587..bb4ef94 100644 --- a/test/MC/ARM/neon-cmp-encoding.s +++ b/test/MC/ARM/neon-cmp-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // XFAIL: * // FIXME: We cannot currently test the following instructions, which are diff --git a/test/MC/ARM/neon-convert-encoding.s b/test/MC/ARM/neon-convert-encoding.s index c60024a..a0d6688 100644 --- a/test/MC/ARM/neon-convert-encoding.s +++ b/test/MC/ARM/neon-convert-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vcvt.s32.f32 d16, d16 @ encoding: [0x20,0x07,0xfb,0xf3] vcvt.s32.f32 d16, d16 diff --git a/test/MC/ARM/neon-dup-encoding.s b/test/MC/ARM/neon-dup-encoding.s index 05380ca..557df2c 100644 --- a/test/MC/ARM/neon-dup-encoding.s +++ b/test/MC/ARM/neon-dup-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // XFAIL: * // CHECK: vdup.8 d16, r0 @ encoding: [0x90,0x0b,0xc0,0xee] diff --git a/test/MC/ARM/neon-minmax-encoding.s b/test/MC/ARM/neon-minmax-encoding.s index f7200f0..cd8d5af 100644 --- a/test/MC/ARM/neon-minmax-encoding.s +++ b/test/MC/ARM/neon-minmax-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vmin.s8 d16, d16, d17 @ encoding: [0xb1,0x06,0x40,0xf2] vmin.s8 d16, d16, d17 diff --git a/test/MC/ARM/neon-mov-encoding.s b/test/MC/ARM/neon-mov-encoding.s index 2aaad9e..5cd6d8f 100644 --- a/test/MC/ARM/neon-mov-encoding.s +++ b/test/MC/ARM/neon-mov-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // XFAIL: * // CHECK: vmov.i8 d16, #0x8 @ encoding: [0x18,0x0e,0xc0,0xf2] diff --git a/test/MC/ARM/neon-mul-accum-encoding.s b/test/MC/ARM/neon-mul-accum-encoding.s index e76ad24..2b11c51 100644 --- a/test/MC/ARM/neon-mul-accum-encoding.s +++ b/test/MC/ARM/neon-mul-accum-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // XFAIL: * // CHECK: vmla.i8 d16, d18, d17 @ encoding: [0xa1,0x09,0x42,0xf2] diff --git a/test/MC/ARM/neon-mul-encoding.s b/test/MC/ARM/neon-mul-encoding.s index 80c19ba..8afc8db 100644 --- a/test/MC/ARM/neon-mul-encoding.s +++ b/test/MC/ARM/neon-mul-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vmul.i8 d16, d16, d17 @ encoding: [0xb1,0x09,0x40,0xf2] vmul.i8 d16, d16, d17 diff --git a/test/MC/ARM/neon-neg-encoding.s b/test/MC/ARM/neon-neg-encoding.s index b81f49b..38c49ca 100644 --- a/test/MC/ARM/neon-neg-encoding.s +++ b/test/MC/ARM/neon-neg-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vneg.s8 d16, d16 @ encoding: [0xa0,0x03,0xf1,0xf3] vneg.s8 d16, d16 diff --git a/test/MC/ARM/neon-pairwise-encoding.s b/test/MC/ARM/neon-pairwise-encoding.s index b00e606..683dd96 100644 --- a/test/MC/ARM/neon-pairwise-encoding.s +++ b/test/MC/ARM/neon-pairwise-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // XFAIL: * // CHECK: vpadd.i8 d16, d17, d16 @ encoding: [0xb0,0x0b,0x41,0xf2] diff --git a/test/MC/ARM/neon-reciprocal-encoding.s b/test/MC/ARM/neon-reciprocal-encoding.s index 762d107..0e25197 100644 --- a/test/MC/ARM/neon-reciprocal-encoding.s +++ b/test/MC/ARM/neon-reciprocal-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vrecpe.u32 d16, d16 @ encoding: [0x20,0x04,0xfb,0xf3] vrecpe.u32 d16, d16 diff --git a/test/MC/ARM/neon-reverse-encoding.s b/test/MC/ARM/neon-reverse-encoding.s index a4c713d..1b538b8 100644 --- a/test/MC/ARM/neon-reverse-encoding.s +++ b/test/MC/ARM/neon-reverse-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vrev64.8 d16, d16 @ encoding: [0x20,0x00,0xf0,0xf3] vrev64.8 d16, d16 diff --git a/test/MC/ARM/neon-satshift-encoding.s b/test/MC/ARM/neon-satshift-encoding.s index 81fe70a..64ec3e6 100644 --- a/test/MC/ARM/neon-satshift-encoding.s +++ b/test/MC/ARM/neon-satshift-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vqshl.s8 d16, d16, d17 @ encoding: [0xb0,0x04,0x41,0xf2] vqshl.s8 d16, d16, d17 diff --git a/test/MC/ARM/neon-shift-encoding.s b/test/MC/ARM/neon-shift-encoding.s index f03af41..b3fd135 100644 --- a/test/MC/ARM/neon-shift-encoding.s +++ b/test/MC/ARM/neon-shift-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple arm-unknown-unkown -show-encoding < %s | FileCheck %s // CHECK: vshl.u8 d16, d17, d16 @ encoding: [0xa1,0x04,0x40,0xf3] vshl.u8 d16, d17, d16 diff --git a/test/MC/ARM/simple-fp-encoding.s b/test/MC/ARM/simple-fp-encoding.s index 61dd9b3..0df7ccd 100644 --- a/test/MC/ARM/simple-fp-encoding.s +++ b/test/MC/ARM/simple-fp-encoding.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple armv7-apple-darwin -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -mcpu=cortex-a8 -triple armv7-apple-darwin -show-encoding < %s | FileCheck %s // CHECK: vadd.f64 d16, d17, d16 @ encoding: [0xa0,0x0b,0x71,0xee] vadd.f64 d16, d17, d16 |