2022-04-07 18:03:55 +08:00
|
|
|
// RUN: %clang_cc1 -no-opaque-pointers -triple spir-unknown-unknown -cl-std=CL2.0 -emit-llvm %s -O0 -o - | FileCheck %s
|
2016-10-11 23:53:28 +08:00
|
|
|
|
|
|
|
typedef __attribute__(( ext_vector_type(2) )) int int2;
|
|
|
|
typedef __attribute__(( ext_vector_type(4) )) int int4;
|
|
|
|
|
|
|
|
// CHECK: %struct.StrucTy = type { i32, i32, i32 }
|
|
|
|
|
2020-12-31 16:27:11 +08:00
|
|
|
// CHECK: @GA ={{.*}} addrspace(1) global [6 x [6 x float]] {{[[][[]}}6 x float] [float 1.000000e+00, float 2.000000e+00, float 0.000000e+00, float 0.000000e+00, float 0.000000e+00, float 0.000000e+00],
|
2016-10-11 23:53:28 +08:00
|
|
|
// CHECK: [6 x float] zeroinitializer, [6 x float] zeroinitializer, [6 x float] zeroinitializer, [6 x float] zeroinitializer, [6 x float] zeroinitializer], align 4
|
|
|
|
float GA[6][6] = {1.0f, 2.0f};
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int z;
|
|
|
|
} StrucTy;
|
|
|
|
|
2020-12-31 16:27:11 +08:00
|
|
|
// CHECK: @GS ={{.*}} addrspace(1) global %struct.StrucTy { i32 1, i32 2, i32 0 }, align 4
|
2016-10-11 23:53:28 +08:00
|
|
|
StrucTy GS = {1, 2};
|
|
|
|
|
2020-12-31 16:27:11 +08:00
|
|
|
// CHECK: @GV1 ={{.*}} addrspace(1) global <4 x i32> <i32 1, i32 2, i32 3, i32 4>, align 16
|
2016-10-11 23:53:28 +08:00
|
|
|
int4 GV1 = (int4)((int2)(1,2),3,4);
|
|
|
|
|
2020-12-31 16:27:11 +08:00
|
|
|
// CHECK: @GV2 ={{.*}} addrspace(1) global <4 x i32> <i32 1, i32 1, i32 1, i32 1>, align 16
|
2016-10-11 23:53:28 +08:00
|
|
|
int4 GV2 = (int4)(1);
|
|
|
|
|
2018-11-15 08:19:18 +08:00
|
|
|
// CHECK: @__const.f.S = private unnamed_addr addrspace(2) constant %struct.StrucTy { i32 1, i32 2, i32 0 }, align 4
|
2016-10-11 23:53:28 +08:00
|
|
|
|
2020-12-31 16:27:11 +08:00
|
|
|
// CHECK-LABEL: define{{.*}} spir_func void @f()
|
2016-10-11 23:53:28 +08:00
|
|
|
void f(void) {
|
|
|
|
// CHECK: %[[A:.*]] = alloca [6 x [6 x float]], align 4
|
|
|
|
// CHECK: %[[S:.*]] = alloca %struct.StrucTy, align 4
|
|
|
|
// CHECK: %[[V1:.*]] = alloca <4 x i32>, align 16
|
|
|
|
// CHECK: %[[compoundliteral:.*]] = alloca <4 x i32>, align 16
|
|
|
|
// CHECK: %[[compoundliteral1:.*]] = alloca <2 x i32>, align 8
|
|
|
|
// CHECK: %[[V2:.*]] = alloca <4 x i32>, align 16
|
|
|
|
|
|
|
|
// CHECK: %[[v0:.*]] = bitcast [6 x [6 x float]]* %A to i8*
|
Change memcpy/memove/memset to have dest and source alignment attributes (Step 1).
Summary:
Upstream LLVM is changing the the prototypes of the @llvm.memcpy/memmove/memset
intrinsics. This change updates the Clang tests for this change.
The @llvm.memcpy/memmove/memset intrinsics currently have an explicit argument
which is required to be a constant integer. It represents the alignment of the
dest (and source), and so must be the minimum of the actual alignment of the
two.
This change removes the alignment argument in favour of placing the alignment
attribute on the source and destination pointers of the memory intrinsic call.
For example, code which used to read:
call void @llvm.memcpy.p0i8.p0i8.i32(i8* %dest, i8* %src, i32 100, i32 4, i1 false)
will now read
call void @llvm.memcpy.p0i8.p0i8.i32(i8* align 4 %dest, i8* align 4 %src, i32 100, i1 false)
At this time the source and destination alignments must be the same (Step 1).
Step 2 of the change, to be landed shortly, will relax that contraint and allow
the source and destination to have different alignments.
llvm-svn: 322964
2018-01-20 01:12:54 +08:00
|
|
|
// CHECK: call void @llvm.memset.p0i8.i32(i8* align 4 %[[v0]], i8 0, i32 144, i1 false)
|
2016-10-11 23:53:28 +08:00
|
|
|
// CHECK: %[[v1:.*]] = bitcast i8* %[[v0]] to [6 x [6 x float]]*
|
2018-07-14 04:33:23 +08:00
|
|
|
// CHECK: %[[v2:.*]] = getelementptr inbounds [6 x [6 x float]], [6 x [6 x float]]* %[[v1]], i32 0, i32 0
|
|
|
|
// CHECK: %[[v3:.*]] = getelementptr inbounds [6 x float], [6 x float]* %[[v2]], i32 0, i32 0
|
|
|
|
// CHECK: store float 1.000000e+00, float* %[[v3]], align 4
|
|
|
|
// CHECK: %[[v4:.*]] = getelementptr inbounds [6 x float], [6 x float]* %[[v2]], i32 0, i32 1
|
|
|
|
// CHECK: store float 2.000000e+00, float* %[[v4]], align 4
|
2016-10-11 23:53:28 +08:00
|
|
|
float A[6][6] = {1.0f, 2.0f};
|
|
|
|
|
|
|
|
// CHECK: %[[v5:.*]] = bitcast %struct.StrucTy* %S to i8*
|
2018-11-15 08:19:18 +08:00
|
|
|
// CHECK: call void @llvm.memcpy.p0i8.p2i8.i32(i8* align 4 %[[v5]], i8 addrspace(2)* align 4 bitcast (%struct.StrucTy addrspace(2)* @__const.f.S to i8 addrspace(2)*), i32 12, i1 false)
|
2016-10-11 23:53:28 +08:00
|
|
|
StrucTy S = {1, 2};
|
|
|
|
|
|
|
|
// CHECK: store <2 x i32> <i32 1, i32 2>, <2 x i32>* %[[compoundliteral1]], align 8
|
|
|
|
// CHECK: %[[v6:.*]] = load <2 x i32>, <2 x i32>* %[[compoundliteral1]], align 8
|
2020-12-30 06:28:17 +08:00
|
|
|
// CHECK: %[[vext:.*]] = shufflevector <2 x i32> %[[v6]], <2 x i32> poison, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
|
2016-10-11 23:53:28 +08:00
|
|
|
// CHECK: %[[vecinit:.*]] = shufflevector <4 x i32> %[[vext]], <4 x i32> undef, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
|
|
|
|
// CHECK: %[[vecinit2:.*]] = insertelement <4 x i32> %[[vecinit]], i32 3, i32 2
|
|
|
|
// CHECK: %[[vecinit3:.*]] = insertelement <4 x i32> %[[vecinit2]], i32 4, i32 3
|
|
|
|
// CHECK: store <4 x i32> %[[vecinit3]], <4 x i32>* %[[compoundliteral]], align 16
|
|
|
|
// CHECK: %[[v7:.*]] = load <4 x i32>, <4 x i32>* %[[compoundliteral]], align 16
|
|
|
|
// CHECK: store <4 x i32> %[[v7]], <4 x i32>* %[[V1]], align 16
|
|
|
|
int4 V1 = (int4)((int2)(1,2),3,4);
|
|
|
|
|
|
|
|
// CHECK: store <4 x i32> <i32 1, i32 1, i32 1, i32 1>, <4 x i32>* %[[V2]], align 16
|
|
|
|
int4 V2 = (int4)(1);
|
|
|
|
}
|
|
|
|
|