forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrint32x.s
More file actions
49 lines (44 loc) · 2.38 KB
/
frint32x.s
File metadata and controls
49 lines (44 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2p2 < %s \
// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2p2 < %s \
// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
// RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \
// RUN: | FileCheck %s --check-prefix=CHECK-ERROR
// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2p2 < %s \
// RUN: | llvm-objdump -d --mattr=+sve2p2 - | FileCheck %s --check-prefix=CHECK-INST
// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2p2 < %s \
// RUN: | llvm-objdump -d --mattr=-sme2 - | FileCheck %s --check-prefix=CHECK-UNKNOWN
// Disassemble encoding and check the re-encoding (-show-encoding) matches.
// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2p2 < %s \
// RUN: | sed '/.text/d' | sed 's/.*encoding: //g' \
// RUN: | llvm-mc -triple=aarch64 -mattr=+sve2p2 -disassemble -show-encoding \
// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
movprfx z23.d, p3/m, z31.d
frint32x z23.d, p3/m, z13.d // 01100101-00010011-10101101-10110111
// CHECK-INST: movprfx z23.d, p3/m, z31.d
// CHECK-INST: frint32x z23.d, p3/m, z13.d
// CHECK-ENCODING: [0xb7,0xad,0x13,0x65]
// CHECK-ERROR: instruction requires: sme2p2 or sve2p2
// CHECK-UNKNOWN: 6513adb7 <unknown>
movprfx z23, z31
frint32x z23.s, p3/m, z13.s // 01100101-00010001-10101101-10110111
// CHECK-INST: movprfx z23, z31
// CHECK-INST: frint32x z23.s, p3/m, z13.s
// CHECK-ENCODING: [0xb7,0xad,0x11,0x65]
// CHECK-ERROR: instruction requires: sme2p2 or sve2p2
// CHECK-UNKNOWN: 6511adb7 <unknown>
frint32x z0.s, p0/m, z0.s // 01100101-00010001-10100000-00000000
// CHECK-INST: frint32x z0.s, p0/m, z0.s
// CHECK-ENCODING: [0x00,0xa0,0x11,0x65]
// CHECK-ERROR: instruction requires: sme2p2 or sve2p2
// CHECK-UNKNOWN: 6511a000 <unknown>
frint32x z21.d, p5/m, z10.d // 01100101-00010011-10110101-01010101
// CHECK-INST: frint32x z21.d, p5/m, z10.d
// CHECK-ENCODING: [0x55,0xb5,0x13,0x65]
// CHECK-ERROR: instruction requires: sme2p2 or sve2p2
// CHECK-UNKNOWN: 6513b555 <unknown>
frint32x z31.d, p7/m, z31.d // 01100101-00010011-10111111-11111111
// CHECK-INST: frint32x z31.d, p7/m, z31.d
// CHECK-ENCODING: [0xff,0xbf,0x13,0x65]
// CHECK-ERROR: instruction requires: sme2p2 or sve2p2
// CHECK-UNKNOWN: 6513bfff <unknown>