1# RUN: llvm-mc -triple=riscv64 -show-encoding --mattr=+experimental-v %s \
2# RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
3# RUN: not llvm-mc -triple=riscv64 -show-encoding %s 2>&1 \
4# RUN:        | FileCheck %s --check-prefix=CHECK-ERROR
5# RUN: llvm-mc -triple=riscv64 -filetype=obj --mattr=+experimental-v %s \
6# RUN:        | llvm-objdump -d --mattr=+experimental-v - \
7# RUN:        | FileCheck %s --check-prefix=CHECK-INST
8# RUN: llvm-mc -triple=riscv64 -filetype=obj --mattr=+experimental-v %s \
9# RUN:        | llvm-objdump -d - | FileCheck %s --check-prefix=CHECK-UNKNOWN
10
11vxor.vv v8, v4, v20, v0.t
12# CHECK-INST: vxor.vv v8, v4, v20, v0.t
13# CHECK-ENCODING: [0x57,0x04,0x4a,0x2c]
14# CHECK-ERROR: instruction requires the following: 'V' (Vector Instructions)
15# CHECK-UNKNOWN: 57 04 4a 2c <unknown>
16
17vxor.vv v8, v4, v20
18# CHECK-INST: vxor.vv v8, v4, v20
19# CHECK-ENCODING: [0x57,0x04,0x4a,0x2e]
20# CHECK-ERROR: instruction requires the following: 'V' (Vector Instructions)
21# CHECK-UNKNOWN: 57 04 4a 2e <unknown>
22
23vxor.vx v8, v4, a0, v0.t
24# CHECK-INST: vxor.vx v8, v4, a0, v0.t
25# CHECK-ENCODING: [0x57,0x44,0x45,0x2c]
26# CHECK-ERROR: instruction requires the following: 'V' (Vector Instructions)
27# CHECK-UNKNOWN: 57 44 45 2c <unknown>
28
29vxor.vx v8, v4, a0
30# CHECK-INST: vxor.vx v8, v4, a0
31# CHECK-ENCODING: [0x57,0x44,0x45,0x2e]
32# CHECK-ERROR: instruction requires the following: 'V' (Vector Instructions)
33# CHECK-UNKNOWN: 57 44 45 2e <unknown>
34
35vxor.vi v8, v4, 15, v0.t
36# CHECK-INST: vxor.vi v8, v4, 15, v0.t
37# CHECK-ENCODING: [0x57,0xb4,0x47,0x2c]
38# CHECK-ERROR: instruction requires the following: 'V' (Vector Instructions)
39# CHECK-UNKNOWN: 57 b4 47 2c <unknown>
40
41vxor.vi v8, v4, 15
42# CHECK-INST: vxor.vi v8, v4, 15
43# CHECK-ENCODING: [0x57,0xb4,0x47,0x2e]
44# CHECK-ERROR: instruction requires the following: 'V' (Vector Instructions)
45# CHECK-UNKNOWN: 57 b4 47 2e <unknown>
46
47vnot.v v8, v4, v0.t
48# CHECK-INST: vnot.v v8, v4, v0.t
49# CHECK-ENCODING: [0x57,0xb4,0x4f,0x2c]
50# CHECK-ERROR: instruction requires the following: 'V' (Vector Instructions)
51# CHECK-UNKNOWN: 57 b4 4f 2c <unknown>
52
53vnot.v v8, v4
54# CHECK-INST: vxor.vi v8, v4, -1
55# CHECK-ENCODING: [0x57,0xb4,0x4f,0x2e]
56# CHECK-ERROR: instruction requires the following: 'V' (Vector Instructions)
57# CHECK-UNKNOWN: 57 b4 4f 2e <unknown>
58