[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / MC / AArch64 / SVE / ld4w-diagnostics.s
blob44f799173ec8caa70037f93269e2c0207edc4033
1 // RUN: not llvm-mc -triple=aarch64 -show-encoding -mattr=+sve 2>&1 < %s| FileCheck %s
4 // --------------------------------------------------------------------------//
5 // Immediate out of lower bound [-32, 28].
7 ld4w {z12.s, z13.s, z14.s, z15.s}, p4/z, [x12, #-36, MUL VL]
8 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be a multiple of 4 in range [-32, 28].
9 // CHECK-NEXT: ld4w {z12.s, z13.s, z14.s, z15.s}, p4/z, [x12, #-36, MUL VL]
10 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
12 ld4w {z7.s, z8.s, z9.s, z10.s}, p3/z, [x1, #32, MUL VL]
13 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be a multiple of 4 in range [-32, 28].
14 // CHECK-NEXT: ld4w {z7.s, z8.s, z9.s, z10.s}, p3/z, [x1, #32, MUL VL]
15 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
18 // --------------------------------------------------------------------------//
19 // Immediate not a multiple of four.
21 ld4w {z12.s, z13.s, z14.s, z15.s}, p4/z, [x12, #-7, MUL VL]
22 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be a multiple of 4 in range [-32, 28].
23 // CHECK-NEXT: ld4w {z12.s, z13.s, z14.s, z15.s}, p4/z, [x12, #-7, MUL VL]
24 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
26 ld4w {z7.s, z8.s, z9.s, z10.s}, p3/z, [x1, #5, MUL VL]
27 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be a multiple of 4 in range [-32, 28].
28 // CHECK-NEXT: ld4w {z7.s, z8.s, z9.s, z10.s}, p3/z, [x1, #5, MUL VL]
29 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
32 // --------------------------------------------------------------------------//
33 // Invalid scalar + scalar addressing modes
35 ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, x0]
36 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: register must be x0..x30 with required shift 'lsl #2'
37 // CHECK-NEXT: ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, x0]
38 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
40 ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, xzr]
41 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: register must be x0..x30 with required shift 'lsl #2'
42 // CHECK-NEXT: ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, xzr]
43 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
45 ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, x0, lsl #3]
46 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: register must be x0..x30 with required shift 'lsl #2'
47 // CHECK-NEXT: ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, x0, lsl #3]
48 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
50 ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, w0]
51 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: register must be x0..x30 with required shift 'lsl #2'
52 // CHECK-NEXT: ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, w0]
53 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
55 ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, w0, uxtw]
56 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: register must be x0..x30 with required shift 'lsl #2'
57 // CHECK-NEXT: ld4w { z0.s, z1.s, z2.s, z3.s }, p0/z, [x0, w0, uxtw]
58 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
61 // --------------------------------------------------------------------------//
62 // error: invalid restricted predicate register, expected p0..p7 (without element suffix)
64 ld4w {z2.s, z3.s, z4.s, z5.s}, p8/z, [x15, #10, MUL VL]
65 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: invalid restricted predicate register, expected p0..p7 (without element suffix)
66 // CHECK-NEXT: ld4w {z2.s, z3.s, z4.s, z5.s}, p8/z, [x15, #10, MUL VL]
67 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
70 // --------------------------------------------------------------------------//
71 // Invalid vector list.
73 ld4w { }, p0/z, [x0]
74 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: vector register expected
75 // CHECK-NEXT: ld4w { }, p0/z, [x0]
76 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
78 ld4w { z0.s, z1.s, z2.s, z3.s, z4.s }, p0/z, [x0]
79 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: invalid number of vectors
80 // CHECK-NEXT: ld4w { z0.s, z1.s, z2.s, z3.s, z4.s }, p0/z, [x0]
81 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
83 ld4w { z0.s, z1.s, z2.s, z3.d }, p0/z, [x0]
84 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: mismatched register size suffix
85 // CHECK-NEXT: ld4w { z0.s, z1.s, z2.s, z3.d }, p0/z, [x0]
86 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
88 ld4w { z0.s, z1.s, z3.s, z5.s }, p0/z, [x0]
89 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: registers must be sequential
90 // CHECK-NEXT: ld4w { z0.s, z1.s, z3.s, z5.s }, p0/z, [x0]
91 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
93 ld4w { v0.4s, v1.4s, v2.4s }, p0/z, [x0]
94 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: invalid operand
95 // CHECK-NEXT: ld4w { v0.4s, v1.4s, v2.4s }, p0/z, [x0]
96 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
99 // --------------------------------------------------------------------------//
100 // Negative tests for instructions that are incompatible with movprfx
102 movprfx z21.s, p5/z, z28.s
103 ld4w { z21.s, z22.s, z23.s, z24.s }, p5/z, [x10, #20, mul vl]
104 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: instruction is unpredictable when following a movprfx, suggest replacing movprfx with mov
105 // CHECK-NEXT: ld4w { z21.s, z22.s, z23.s, z24.s }, p5/z, [x10, #20, mul vl]
106 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
108 movprfx z21, z28
109 ld4w { z21.s, z22.s, z23.s, z24.s }, p5/z, [x10, #20, mul vl]
110 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: instruction is unpredictable when following a movprfx, suggest replacing movprfx with mov
111 // CHECK-NEXT: ld4w { z21.s, z22.s, z23.s, z24.s }, p5/z, [x10, #20, mul vl]
112 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}: