diff options
author | Kevin Qin <Kevin.Qin@arm.com> | 2013-09-17 02:21:02 +0000 |
---|---|---|
committer | Kevin Qin <Kevin.Qin@arm.com> | 2013-09-17 02:21:02 +0000 |
commit | e54360be01d1eaccd5ef27f510634927aaa887a4 (patch) | |
tree | de8361fd5b80233388e09af2757d380623f52f59 /test/MC/AArch64 | |
parent | 24e1b39a24ca7b8866a636498173f3959b561058 (diff) | |
download | external_llvm-e54360be01d1eaccd5ef27f510634927aaa887a4.zip external_llvm-e54360be01d1eaccd5ef27f510634927aaa887a4.tar.gz external_llvm-e54360be01d1eaccd5ef27f510634927aaa887a4.tar.bz2 |
Implement 3 AArch64 neon instructions : umov smov ins.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/AArch64')
-rw-r--r-- | test/MC/AArch64/neon-simd-copy.s | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/test/MC/AArch64/neon-simd-copy.s b/test/MC/AArch64/neon-simd-copy.s new file mode 100644 index 0000000..44b5027 --- /dev/null +++ b/test/MC/AArch64/neon-simd-copy.s @@ -0,0 +1,71 @@ +// RUN: llvm-mc -triple=aarch64 -mattr=+neon -show-encoding < %s | FileCheck %s + +// Check that the assembler can handle the documented syntax for AArch64 + + +//------------------------------------------------------------------------------ +// Insert element (vector, from main) +//------------------------------------------------------------------------------ + ins v2.b[2], w1 + ins v7.h[7], w14 + ins v20.s[0], w30 + ins v1.d[1], x7 + +// CHECK: ins v2.b[2], w1 // encoding: [0x22,0x1c,0x05,0x4e] +// CHECK: ins v7.h[7], w14 // encoding: [0xc7,0x1d,0x1e,0x4e] +// CHECK: ins v20.s[0], w30 // encoding: [0xd4,0x1f,0x04,0x4e] +// CHECK: ins v1.d[1], x7 // encoding: [0xe1,0x1c,0x18,0x4e] + + +//------------------------------------------------------------------------------ +// Signed integer move (main, from element) +//------------------------------------------------------------------------------ + smov w1, v0.b[15] + smov w14, v6.h[4] + smov x1, v0.b[15] + smov x14, v6.h[4] + smov x20, v9.s[2] + +// CHECK: smov w1, v0.b[15] // encoding: [0x01,0x2c,0x1f,0x0e] +// CHECK: smov w14, v6.h[4] // encoding: [0xce,0x2c,0x12,0x0e] +// CHECK: smov x1, v0.b[15] // encoding: [0x01,0x2c,0x1f,0x4e] +// CHECK: smov x14, v6.h[4] // encoding: [0xce,0x2c,0x12,0x4e] +// CHECK: smov x20, v9.s[2] // encoding: [0x34,0x2d,0x14,0x4e] + + +//------------------------------------------------------------------------------ +// Unsigned integer move (main, from element) +//------------------------------------------------------------------------------ + umov w1, v0.b[15] + umov w14, v6.h[4] + umov w20, v9.s[2] + umov x7, v18.d[1] + +// CHECK: umov w1, v0.b[15] // encoding: [0x01,0x3c,0x1f,0x0e] +// CHECK: umov w14, v6.h[4] // encoding: [0xce,0x3c,0x12,0x0e] +// CHECK: umov w20, v9.s[2] // encoding: [0x34,0x3d,0x14,0x0e] +// CHECK: umov x7, v18.d[1] // encoding: [0x47,0x3e,0x18,0x4e] + +//------------------------------------------------------------------------------ +// Insert element (vector, from element) +//------------------------------------------------------------------------------ + + Ins v1.b[14], v3.b[6] + Ins v6.h[7], v7.h[5] + Ins v15.s[3], v22.s[2] + Ins v0.d[0], v4.d[1] + +// CHECK: ins v1.b[14], v3.b[6] // encoding: [0x61,0x34,0x1d,0x6e] +// CHECK: ins v6.h[7], v7.h[5] // encoding: [0xe6,0x54,0x1e,0x6e] +// CHECK: ins v15.s[3], v22.s[2] // encoding: [0xcf,0x5e,0x1c,0x6e] +// CHECK: ins v0.d[0], v4.d[1] // encoding: [0x80,0x44,0x08,0x6e] + + + + + + + + + + |