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_exp_double6// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp.f32(7// CHECK: ret float [[EXP]]8float test_exp_double(double p0) { return exp(p0); }9// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp_double210// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp.v2f3211// CHECK: ret <2 x float> [[EXP]]12float2 test_exp_double2(double2 p0) { return exp(p0); }13// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp_double314// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp.v3f3215// CHECK: ret <3 x float> [[EXP]]16float3 test_exp_double3(double3 p0) { return exp(p0); }17// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp_double418// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp.v4f3219// CHECK: ret <4 x float> [[EXP]]20float4 test_exp_double4(double4 p0) { return exp(p0); }21 22// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float {{.*}}test_exp_int23// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp.f32(24// CHECK: ret float [[EXP]]25float test_exp_int(int p0) { return exp(p0); }26// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp_int227// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp.v2f3228// CHECK: ret <2 x float> [[EXP]]29float2 test_exp_int2(int2 p0) { return exp(p0); }30// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp_int331// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp.v3f3232// CHECK: ret <3 x float> [[EXP]]33float3 test_exp_int3(int3 p0) { return exp(p0); }34// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp_int435// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp.v4f3236// CHECK: ret <4 x float> [[EXP]]37float4 test_exp_int4(int4 p0) { return exp(p0); }38 39// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float {{.*}}test_exp_uint40// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp.f32(41// CHECK: ret float [[EXP]]42float test_exp_uint(uint p0) { return exp(p0); }43// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp_uint244// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp.v2f3245// CHECK: ret <2 x float> [[EXP]]46float2 test_exp_uint2(uint2 p0) { return exp(p0); }47// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp_uint348// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp.v3f3249// CHECK: ret <3 x float> [[EXP]]50float3 test_exp_uint3(uint3 p0) { return exp(p0); }51// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp_uint452// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp.v4f3253// CHECK: ret <4 x float> [[EXP]]54float4 test_exp_uint4(uint4 p0) { return exp(p0); }55 56// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float {{.*}}test_exp_int64_t57// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp.f32(58// CHECK: ret float [[EXP]]59float test_exp_int64_t(int64_t p0) { return exp(p0); }60// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp_int64_t261// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp.v2f3262// CHECK: ret <2 x float> [[EXP]]63float2 test_exp_int64_t2(int64_t2 p0) { return exp(p0); }64// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp_int64_t365// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp.v3f3266// CHECK: ret <3 x float> [[EXP]]67float3 test_exp_int64_t3(int64_t3 p0) { return exp(p0); }68// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp_int64_t469// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp.v4f3270// CHECK: ret <4 x float> [[EXP]]71float4 test_exp_int64_t4(int64_t4 p0) { return exp(p0); }72 73// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float {{.*}}test_exp_uint64_t74// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn float @llvm.exp.f32(75// CHECK: ret float [[EXP]]76float test_exp_uint64_t(uint64_t p0) { return exp(p0); }77// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> {{.*}}test_exp_uint64_t278// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.exp.v2f3279// CHECK: ret <2 x float> [[EXP]]80float2 test_exp_uint64_t2(uint64_t2 p0) { return exp(p0); }81// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> {{.*}}test_exp_uint64_t382// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.exp.v3f3283// CHECK: ret <3 x float> [[EXP]]84float3 test_exp_uint64_t3(uint64_t3 p0) { return exp(p0); }85// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> {{.*}}test_exp_uint64_t486// CHECK: [[EXP:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.exp.v4f3287// CHECK: ret <4 x float> [[EXP]]88float4 test_exp_uint64_t4(uint64_t4 p0) { return exp(p0); }89