89 lines · plain
1// RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -triple dxil-pc-shadermodel6.3-library %s \2// RUN: -emit-llvm -disable-llvm-passes -o - | \3// RUN: FileCheck %s --check-prefixes=CHECK4 5// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float {{.*}}test_exp2_double6// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp2.f32(7// CHECK: ret float [[EXP2]]8float test_exp2_double(double p0) { return exp2(p0); }9// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp2_double210// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp2.v2f3211// CHECK: ret <2 x float> [[EXP2]]12float2 test_exp2_double2(double2 p0) { return exp2(p0); }13// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp2_double314// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp2.v3f3215// CHECK: ret <3 x float> [[EXP2]]16float3 test_exp2_double3(double3 p0) { return exp2(p0); }17// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp2_double418// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp2.v4f3219// CHECK: ret <4 x float> [[EXP2]]20float4 test_exp2_double4(double4 p0) { return exp2(p0); }21 22// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float {{.*}}test_exp2_int23// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp2.f32(24// CHECK: ret float [[EXP2]]25float test_exp2_int(int p0) { return exp2(p0); }26// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp2_int227// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp2.v2f3228// CHECK: ret <2 x float> [[EXP2]]29float2 test_exp2_int2(int2 p0) { return exp2(p0); }30// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp2_int331// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp2.v3f3232// CHECK: ret <3 x float> [[EXP2]]33float3 test_exp2_int3(int3 p0) { return exp2(p0); }34// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp2_int435// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp2.v4f3236// CHECK: ret <4 x float> [[EXP2]]37float4 test_exp2_int4(int4 p0) { return exp2(p0); }38 39// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float {{.*}}test_exp2_uint40// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp2.f32(41// CHECK: ret float [[EXP2]]42float test_exp2_uint(uint p0) { return exp2(p0); }43// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp2_uint244// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp2.v2f3245// CHECK: ret <2 x float> [[EXP2]]46float2 test_exp2_uint2(uint2 p0) { return exp2(p0); }47// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp2_uint348// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp2.v3f3249// CHECK: ret <3 x float> [[EXP2]]50float3 test_exp2_uint3(uint3 p0) { return exp2(p0); }51// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp2_uint452// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp2.v4f3253// CHECK: ret <4 x float> [[EXP2]]54float4 test_exp2_uint4(uint4 p0) { return exp2(p0); }55 56// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float {{.*}}test_exp2_int64_t57// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp2.f32(58// CHECK: ret float [[EXP2]]59float test_exp2_int64_t(int64_t p0) { return exp2(p0); }60// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp2_int64_t261// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp2.v2f3262// CHECK: ret <2 x float> [[EXP2]]63float2 test_exp2_int64_t2(int64_t2 p0) { return exp2(p0); }64// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp2_int64_t365// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp2.v3f3266// CHECK: ret <3 x float> [[EXP2]]67float3 test_exp2_int64_t3(int64_t3 p0) { return exp2(p0); }68// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp2_int64_t469// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp2.v4f3270// CHECK: ret <4 x float> [[EXP2]]71float4 test_exp2_int64_t4(int64_t4 p0) { return exp2(p0); }72 73// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float {{.*}}test_exp2_uint64_t74// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp2.f32(75// CHECK: ret float [[EXP2]]76float test_exp2_uint64_t(uint64_t p0) { return exp2(p0); }77// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp2_uint64_t278// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp2.v2f3279// CHECK: ret <2 x float> [[EXP2]]80float2 test_exp2_uint64_t2(uint64_t2 p0) { return exp2(p0); }81// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp2_uint64_t382// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp2.v3f3283// CHECK: ret <3 x float> [[EXP2]]84float3 test_exp2_uint64_t3(uint64_t3 p0) { return exp2(p0); }85// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp2_uint64_t486// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp2.v4f3287// CHECK: ret <4 x float> [[EXP2]]88float4 test_exp2_uint64_t4(uint64_t4 p0) { return exp2(p0); }89