blob: 04405b5cd159e880021c3676852b46ed1009a63c [file] [log] [blame]
Eli Friedman87b9c032012-04-05 21:48:40 +00001// RUN: %clang -emit-llvm -S -o - %s | FileCheck %s
2
3typedef float float4 __attribute__((ext_vector_type(4)));
4typedef unsigned int uint4 __attribute__((ext_vector_type(4)));
5
Stephen Lin93ab6bf2013-08-15 06:47:53 +00006// CHECK-LABEL: define void @clang_shufflevector_v_v(
Eli Friedman87b9c032012-04-05 21:48:40 +00007void clang_shufflevector_v_v( float4* A, float4 x, uint4 mask ) {
8// CHECK: [[MASK:%.*]] = and <4 x i32> {{%.*}}, <i32 3, i32 3, i32 3, i32 3>
9// CHECK: [[I:%.*]] = extractelement <4 x i32> [[MASK]], i32 0
10// CHECK: [[E:%.*]] = extractelement <4 x float> [[X:%.*]], i32 [[I]]
11//
12// Here is where ToT Clang code generation makes a mistake.
13// It uses [[I]] as the insertion index instead of 0.
14// Similarly on the remaining insertelement.
15// CHECK: [[V:%[a-zA-Z0-9._]+]] = insertelement <4 x float> undef, float [[E]], i32 0
16
17// CHECK: [[I:%.*]] = extractelement <4 x i32> [[MASK]], i32 1
18// CHECK: [[E:%.*]] = extractelement <4 x float> [[X]], i32 [[I]]
Eli Benderskyac558652012-12-01 13:50:51 +000019// CHECK: [[V2:%.*]] = insertelement <4 x float> [[V]], float [[E]], i32 1
Eli Friedman87b9c032012-04-05 21:48:40 +000020// CHECK: [[I:%.*]] = extractelement <4 x i32> [[MASK]], i32 2
21// CHECK: [[E:%.*]] = extractelement <4 x float> [[X]], i32 [[I]]
Eli Benderskyac558652012-12-01 13:50:51 +000022// CHECK: [[V3:%.*]] = insertelement <4 x float> [[V2]], float [[E]], i32 2
Eli Friedman87b9c032012-04-05 21:48:40 +000023// CHECK: [[I:%.*]] = extractelement <4 x i32> [[MASK]], i32 3
24// CHECK: [[E:%.*]] = extractelement <4 x float> [[X]], i32 [[I]]
Eli Benderskyac558652012-12-01 13:50:51 +000025// CHECK: [[V4:%.*]] = insertelement <4 x float> [[V3]], float [[E]], i32 3
26// CHECK: store <4 x float> [[V4]], <4 x float>* {{%.*}},
Eli Friedman87b9c032012-04-05 21:48:40 +000027 *A = __builtin_shufflevector( x, mask );
28}
29
Stephen Lin93ab6bf2013-08-15 06:47:53 +000030// CHECK-LABEL: define void @clang_shufflevector_v_v_c(
Craig Topper6f4f8082013-08-03 17:40:38 +000031void clang_shufflevector_v_v_c( float4* A, float4 x, float4 y) {
Eli Friedman87b9c032012-04-05 21:48:40 +000032// CHECK: [[V:%.*]] = shufflevector <4 x float> {{%.*}}, <4 x float> {{%.*}}, <4 x i32> <i32 0, i32 4, i32 1, i32 5>
33// CHECK: store <4 x float> [[V]], <4 x float>* {{%.*}}
34 *A = __builtin_shufflevector( x, y, 0, 4, 1, 5 );
35}
Craig Topper6f4f8082013-08-03 17:40:38 +000036
Stephen Lin93ab6bf2013-08-15 06:47:53 +000037// CHECK-LABEL: define void @clang_shufflevector_v_v_undef(
Craig Topper6f4f8082013-08-03 17:40:38 +000038void clang_shufflevector_v_v_undef( float4* A, float4 x, float4 y) {
39// CHECK: [[V:%.*]] = shufflevector <4 x float> {{%.*}}, <4 x float> {{%.*}}, <4 x i32> <i32 0, i32 4, i32 undef, i32 5>
40// CHECK: store <4 x float> [[V]], <4 x float>* {{%.*}}
41 *A = __builtin_shufflevector( x, y, 0, 4, -1, 5 );
42}