[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Verifier / matrix-intrinsics-opaque-ptrs.ll
blob60b9518bb11727221109f208c5c1b855bbddd89e
1 ; RUN: not llvm-as -opaque-pointers < %s -o /dev/null 2>&1 | FileCheck %s
3 define <4 x float> @transpose(<4 x float> %m, i32 %arg) {
4 ; CHECK: assembly parsed, but does not verify as correct!
5 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
6 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
7 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
8 ; CHECK-NEXT: immarg operand has non-immediate parameter
9 ; CHECK-NEXT: i32 %arg
10 ; CHECK-NEXT:   %result.3 = call <4 x float> @llvm.matrix.transpose.v4f32(<4 x float> %result.2, i32 %arg, i32 2)
11 ; CHECK-NEXT: immarg operand has non-immediate parameter
12 ; CHECK-NEXT: i32 %arg
13 ; CHECK-NEXT:   %result.4 = call <4 x float> @llvm.matrix.transpose.v4f32(<4 x float> %result.3, i32 2, i32 %arg)
14   %result.0 = call <4 x float> @llvm.matrix.transpose.v4f32(<4 x float> %m, i32 0, i32 0)
15   %result.1 = call <4 x float> @llvm.matrix.transpose.v4f32(<4 x float> %result.0, i32 3, i32 2)
16   %result.2 = call <4 x float> @llvm.matrix.transpose.v4f32(<4 x float> %result.1, i32 2, i32 1)
17   %result.3 = call <4 x float> @llvm.matrix.transpose.v4f32(<4 x float> %result.2, i32 %arg, i32 2)
18   %result.4 = call <4 x float> @llvm.matrix.transpose.v4f32(<4 x float> %result.3, i32 2, i32 %arg)
19   ret <4 x float> %result.4
22 define <4 x float> @multiply(<4 x float> %m, i32 %arg) {
23 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
24 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
25 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
26 ; CHECK-NEXT: immarg operand has non-immediate parameter
27 ; CHECK-NEXT: i32 %arg
28 ; CHECK-NEXT:   %result.3 = call <4 x float> @llvm.matrix.multiply.v4f32.v4f32.v4f32(<4 x float> %result.2, <4 x float> %m, i32 %arg, i32 2, i32 1)
29   %result.0 = call <4 x float> @llvm.matrix.multiply.v4f32.v4f32.v4f32(<4 x float> %m, <4 x float> %m, i32 0, i32 0, i32 0)
30   %result.1 = call <4 x float> @llvm.matrix.multiply.v4f32.v4f32.v4f32(<4 x float> %result.0, <4 x float> %m, i32 3, i32 2, i32 2)
31   %result.2 = call <4 x float> @llvm.matrix.multiply.v4f32.v4f32.v4f32(<4 x float> %result.1, <4 x float> %m, i32 2, i32 2, i32 1)
32   %result.3 = call <4 x float> @llvm.matrix.multiply.v4f32.v4f32.v4f32(<4 x float> %result.2, <4 x float> %m, i32 %arg, i32 2, i32 1)
33   ret <4 x float> %result.3
36 define <4 x float> @column.major_load(ptr %m, ptr %n, i32 %arg) {
37 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
38 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
39 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
40 ; CHECK-NEXT: immarg operand has non-immediate parameter
41 ; CHECK-NEXT: i32 %arg
42 ; CHECK-NEXT:   %result.3 = call <6 x float> @llvm.matrix.column.major.load.v6f32.i64(ptr %n, i64 2, i1 true, i32 3, i32 %arg)
43   %result.0 = call <4 x float> @llvm.matrix.column.major.load.v4f32.i64(ptr %m, i64 0, i1 false, i32 0, i32 0)
44   %result.1 = call <4 x float> @llvm.matrix.column.major.load.v4f32.i64(ptr %m, i64 2, i1 false, i32 1, i32 2)
45   %result.2 = call <6 x float> @llvm.matrix.column.major.load.v6f32.i64(ptr %n, i64 2, i1 true, i32 3, i32 3)
46   %result.3 = call <6 x float> @llvm.matrix.column.major.load.v6f32.i64(ptr %n, i64 2, i1 true, i32 3, i32 %arg)
47   ret <4 x float> %result.1
50 define void @column.major_store(ptr %m, ptr %n, i64 %arg) {
51 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
52 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
53 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
54 ; CHECK-NEXT: Result of a matrix operation does not fit in the returned vector!
55   call void @llvm.matrix.column.major.store.v4f32.i64(<4 x float> zeroinitializer, ptr %m, i64 0, i1 false, i32 0, i32 0)
56   call void @llvm.matrix.column.major.store.v4f32.i64(<4 x float> zeroinitializer, ptr %m, i64 2, i1 false, i32 1, i32 2)
57   call void @llvm.matrix.column.major.store.v6f32.i64(<6 x float> zeroinitializer, ptr %n, i64 2, i1 false, i32 3, i32 3)
58   call void @llvm.matrix.column.major.store.v6f32.i64(<6 x float> zeroinitializer, ptr %n, i64 %arg, i1 false, i32 3, i32 3)
59   ret void
62 define <4 x float> @transpose_mixed_types(<4 x float> %fvec, <4 x i32> %ivec, i32 %arg) {
64 ; CHECK-NEXT: Intrinsic has incorrect argument type!
65 ; CHECK-NEXT: ptr @llvm.matrix.transpose.v4f32.v4i32
66 ; CHECK-NEXT: Intrinsic has incorrect argument type!
67 ; CHECK-NEXT: ptr @llvm.matrix.transpose.v4i32.v4f32
69   %result.0 = call <4 x float> @llvm.matrix.transpose.v4f32.v4i32(<4 x i32> %ivec, i32 0, i32 0)
70   %result.1 = call <4 x i32> @llvm.matrix.transpose.v4i32.v4f32(<4 x float> %result.0, i32 3, i32 2)
71   ret <4 x float> %result.0
74 define <4 x float> @multiply_mixed_types(<4 x i32> %ivec, <4 x float> %fvec, i32 %arg) {
76 ; CHECK-NEXT: Vector element type mismatch of the result and first operand vector!
77 ; CHECK-NEXT: ptr @llvm.matrix.multiply.v4i32.v4f32.v4f32
78 ; CHECK-NEXT: Vector element type mismatch of the result and first operand vector!
79 ; CHECK-NEXT: ptr @llvm.matrix.multiply.v4f32.v4i32.v4f32
80 ; CHECK-NEXT: Vector element type mismatch of the result and second operand vector!
81 ; CHECK-NEXT: ptr @llvm.matrix.multiply.v4f32.v4f32.v4i32
82 ; CHECK-NEXT: Vector element type mismatch of the result and first operand vector!
83 ; CHECK-NEXT: ptr @llvm.matrix.multiply.v4f32.v4i32.v4i32
85   %result.0 = call <4 x i32> @llvm.matrix.multiply.v4i32.v4f32.v4f32(<4 x float> %fvec, <4 x float> %fvec, i32 2, i32 2, i32 2)
86   %result.1 = call <4 x float> @llvm.matrix.multiply.v4f32.v4i32.v4f32(<4 x i32> %result.0, <4 x float> %fvec, i32 2, i32 2, i32 2)
87   %result.2 = call <4 x float> @llvm.matrix.multiply.v4f32.v4f32.v4i32(<4 x float> %fvec, <4 x i32> %ivec, i32 2, i32 2, i32 2)
88   %result.3 = call <4 x float> @llvm.matrix.multiply.v4f32.v4i32.v4i32(<4 x i32> %ivec, <4 x i32> %ivec, i32 2, i32 2, i32 2)
89   ret <4 x float> %result.3
92 define void @column.major_store_non_int_float_type(ptr %m, ptr %n, i64 %arg) {
94 ; CHECK-NEXT: Result type must be an integer or floating-point type!
95 ; CHECK-NEXT: ptr @llvm.matrix.column.major.store.v4p0.i64
97   call void @llvm.matrix.column.major.store.v4p0.i64(<4 x ptr> zeroinitializer, ptr %n, i64 2, i1 false, i32 2, i32 2)
98   ret void
101 define <4 x float> @column.major_load_stride_too_small(ptr %m, i32 %arg) {
103 ; CHECK-NEXT: Stride must be greater or equal than the number of rows!
104 ; CHECK-NEXT: ptr @llvm.matrix.column.major.load.v4f32.i64
106   %result.1 = call <4 x float> @llvm.matrix.column.major.load.v4f32.i64(ptr %m, i64 1, i1 false, i32 2, i32 2)
107   ret <4 x float> %result.1
110 define void @column.major_store_stride_too_small(ptr %m, i64 %arg) {
112 ; CHECK-NEXT: Stride must be greater or equal than the number of rows!
113 ; CHECK-NEXT: ptr @llvm.matrix.column.major.store.v4f32.i64
115   call void @llvm.matrix.column.major.store.v4f32.i64(<4 x float> zeroinitializer, ptr %m, i64 1, i1 false, i32 2, i32 2)
116   ret void
119 declare <4 x i32>   @llvm.matrix.column.major.load.v4i32.i64(ptr, i64, i1, i32, i32)
120 declare <4 x float> @llvm.matrix.column.major.load.v4f32.p0(ptr, i64, i1, i32, i32)
121 declare <4 x float> @llvm.matrix.column.major.load.v4f32.i64(ptr, i64, i1, i32, i32)
122 declare <6 x float> @llvm.matrix.column.major.load.v6f32.i64(ptr, i64, i1, i32, i32)
124 declare void @llvm.matrix.column.major.store.v4f32.i64(<4 x float>, ptr, i64, i1, i32, i32)
125 declare void @llvm.matrix.column.major.store.v6f32.i64(<6 x float>, ptr, i64, i1, i32, i32)
126 declare void @llvm.matrix.column.major.store.v4i32.vi32(<4 x i32>, ptr, i64, i1, i32, i32)
127 declare void @llvm.matrix.column.major.store.v4f32.p0(<4 x float>, ptr, i64, i1, i32, i32)
128 declare void @llvm.matrix.column.major.store.v4p0.i64(<4 x ptr>, ptr, i64, i1, i32, i32)
130 declare <4 x i32>   @llvm.matrix.transpose.v4i32.v4f32(<4 x float>, i32, i32)
131 declare <4 x float> @llvm.matrix.transpose.v4f32(<4 x float>, i32, i32)
132 declare <4 x float> @llvm.matrix.transpose.v4f32.v4i32(<4 x i32>, i32, i32)
134 declare <4 x i32>   @llvm.matrix.multiply.v4i32.v4f32.v4f32(<4 x float>, <4 x float>, i32, i32, i32)
135 declare <4 x float> @llvm.matrix.multiply.v4f32.v4i32.v4f32(<4 x i32>, <4 x float>, i32, i32, i32)
136 declare <4 x float> @llvm.matrix.multiply.v4f32.v4f32.v4i32(<4 x float>, <4 x i32>, i32, i32, i32)
137 declare <4 x float> @llvm.matrix.multiply.v4f32.v4i32.v4i32(<4 x i32>, <4 x i32>, i32, i32, i32)
138 declare <4 x float> @llvm.matrix.multiply.v4f32.v4f32.v4f32(<4 x float>, <4 x float>, i32, i32, i32)