-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[clang][HLSL] Add sign intrinsic part 3 #101989
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1826,5 +1826,76 @@ _HLSL_AVAILABILITY(shadermodel, 6.0) | |
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_wave_is_first_lane) | ||
__attribute__((convergent)) bool WaveIsFirstLane(); | ||
|
||
//===----------------------------------------------------------------------===// | ||
// sign builtins | ||
//===----------------------------------------------------------------------===// | ||
|
||
/// \fn T sign(T Val) | ||
/// \brief Returns -1 if \a Val is less than zero; 0 if \a Val equals zero; and | ||
/// 1 if \a Val is greater than zero. \param Val The input value. | ||
|
||
#ifdef __HLSL_ENABLE_16_BIT | ||
_HLSL_AVAILABILITY(shadermodel, 6.2) | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int sign(int16_t); | ||
_HLSL_AVAILABILITY(shadermodel, 6.2) | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int2 sign(int16_t2); | ||
_HLSL_AVAILABILITY(shadermodel, 6.2) | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int3 sign(int16_t3); | ||
_HLSL_AVAILABILITY(shadermodel, 6.2) | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int4 sign(int16_t4); | ||
#endif | ||
|
||
_HLSL_16BIT_AVAILABILITY(shadermodel, 6.2) | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int sign(half); | ||
_HLSL_16BIT_AVAILABILITY(shadermodel, 6.2) | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int2 sign(half2); | ||
_HLSL_16BIT_AVAILABILITY(shadermodel, 6.2) | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int3 sign(half3); | ||
_HLSL_16BIT_AVAILABILITY(shadermodel, 6.2) | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int4 sign(half4); | ||
|
||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int sign(int); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @llvm-beanz the |
||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int2 sign(int2); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int3 sign(int3); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int4 sign(int4); | ||
|
||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
tgymnich marked this conversation as resolved.
Show resolved
Hide resolved
|
||
int sign(float); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int2 sign(float2); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int3 sign(float3); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int4 sign(float4); | ||
|
||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int sign(int64_t); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int2 sign(int64_t2); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int3 sign(int64_t3); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int4 sign(int64_t4); | ||
|
||
tgymnich marked this conversation as resolved.
Show resolved
Hide resolved
|
||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
tgymnich marked this conversation as resolved.
Show resolved
Hide resolved
|
||
int sign(double); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int2 sign(double2); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int3 sign(double3); | ||
_HLSL_BUILTIN_ALIAS(__builtin_hlsl_elementwise_sign) | ||
int4 sign(double4); | ||
} // namespace hlsl | ||
#endif //_HLSL_HLSL_INTRINSICS_H_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ | ||
// RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ | ||
// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ | ||
// RUN: --check-prefixes=CHECK,NATIVE_HALF \ | ||
// RUN: -DTARGET=dx -DFNATTRS=noundef | ||
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ | ||
// RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ | ||
// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF \ | ||
// RUN: -DTARGET=dx -DFNATTRS=noundef | ||
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ | ||
// RUN: spirv-unknown-vulkan-compute %s -fnative-half-type \ | ||
// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ | ||
// RUN: --check-prefixes=CHECK,NATIVE_HALF \ | ||
// RUN: -DTARGET=spv -DFNATTRS="spir_func noundef" | ||
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ | ||
// RUN: spirv-unknown-vulkan-compute %s -emit-llvm -disable-llvm-passes \ | ||
// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF \ | ||
// RUN: -DTARGET=spv -DFNATTRS="spir_func noundef" | ||
|
||
// NATIVE_HALF: define [[FNATTRS]] i32 @ | ||
// NATIVE_HALF: %hlsl.sign = call i32 @llvm.[[TARGET]].sign.f16( | ||
// NATIVE_HALF: ret i32 %hlsl.sign | ||
// NO_HALF: define [[FNATTRS]] i32 @ | ||
// NO_HALF: %hlsl.sign = call i32 @llvm.[[TARGET]].sign.f32( | ||
// NO_HALF: ret i32 %hlsl.sign | ||
int test_sign_half(half p0) { return sign(p0); } | ||
|
||
// NATIVE_HALF: define [[FNATTRS]] <2 x i32> @ | ||
// NATIVE_HALF: %hlsl.sign = call <2 x i32> @llvm.[[TARGET]].sign.v2f16( | ||
// NATIVE_HALF: ret <2 x i32> %hlsl.sign | ||
// NO_HALF: define [[FNATTRS]] <2 x i32> @ | ||
// NO_HALF: %hlsl.sign = call <2 x i32> @llvm.[[TARGET]].sign.v2f32( | ||
// NO_HALF: ret <2 x i32> %hlsl.sign | ||
int2 test_sign_half2(half2 p0) { return sign(p0); } | ||
|
||
// NATIVE_HALF: define [[FNATTRS]] <3 x i32> @ | ||
// NATIVE_HALF: %hlsl.sign = call <3 x i32> @llvm.[[TARGET]].sign.v3f16( | ||
// NATIVE_HALF: ret <3 x i32> %hlsl.sign | ||
// NO_HALF: define [[FNATTRS]] <3 x i32> @ | ||
// NO_HALF: %hlsl.sign = call <3 x i32> @llvm.[[TARGET]].sign.v3f32( | ||
// NO_HALF: ret <3 x i32> %hlsl.sign | ||
int3 test_sign_half3(half3 p0) { return sign(p0); } | ||
|
||
// NATIVE_HALF: define [[FNATTRS]] <4 x i32> @ | ||
// NATIVE_HALF: %hlsl.sign = call <4 x i32> @llvm.[[TARGET]].sign.v4f16( | ||
// NATIVE_HALF: ret <4 x i32> %hlsl.sign | ||
// NO_HALF: define [[FNATTRS]] <4 x i32> @ | ||
// NO_HALF: %hlsl.sign = call <4 x i32> @llvm.[[TARGET]].sign.v4f32( | ||
// NO_HALF: ret <4 x i32> %hlsl.sign | ||
int4 test_sign_half4(half4 p0) { return sign(p0); } | ||
|
||
|
||
// CHECK: define [[FNATTRS]] i32 @ | ||
// CHECK: %hlsl.sign = call i32 @llvm.[[TARGET]].sign.f32( | ||
// CHECK: ret i32 %hlsl.sign | ||
int test_sign_float(float p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <2 x i32> @ | ||
// CHECK: %hlsl.sign = call <2 x i32> @llvm.[[TARGET]].sign.v2f32( | ||
// CHECK: ret <2 x i32> %hlsl.sign | ||
int2 test_sign_float2(float2 p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <3 x i32> @ | ||
// CHECK: %hlsl.sign = call <3 x i32> @llvm.[[TARGET]].sign.v3f32( | ||
// CHECK: ret <3 x i32> %hlsl.sign | ||
int3 test_sign_float3(float3 p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <4 x i32> @ | ||
// CHECK: %hlsl.sign = call <4 x i32> @llvm.[[TARGET]].sign.v4f32( | ||
// CHECK: ret <4 x i32> %hlsl.sign | ||
int4 test_sign_float4(float4 p0) { return sign(p0); } | ||
|
||
|
||
// CHECK: define [[FNATTRS]] i32 @ | ||
// CHECK: %hlsl.sign = call i32 @llvm.[[TARGET]].sign.f64( | ||
// CHECK: ret i32 %hlsl.sign | ||
int test_sign_double(double p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <2 x i32> @ | ||
// CHECK: %hlsl.sign = call <2 x i32> @llvm.[[TARGET]].sign.v2f64( | ||
// CHECK: ret <2 x i32> %hlsl.sign | ||
int2 test_sign_double2(double2 p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <3 x i32> @ | ||
// CHECK: %hlsl.sign = call <3 x i32> @llvm.[[TARGET]].sign.v3f64( | ||
// CHECK: ret <3 x i32> %hlsl.sign | ||
int3 test_sign_double3(double3 p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <4 x i32> @ | ||
// CHECK: %hlsl.sign = call <4 x i32> @llvm.[[TARGET]].sign.v4f64( | ||
// CHECK: ret <4 x i32> %hlsl.sign | ||
int4 test_sign_double4(double4 p0) { return sign(p0); } | ||
|
||
|
||
#ifdef __HLSL_ENABLE_16_BIT | ||
// NATIVE_HALF: define [[FNATTRS]] i32 @ | ||
// NATIVE_HALF: %hlsl.sign = call i32 @llvm.[[TARGET]].sign.i16( | ||
// NATIVE_HALF: ret i32 %hlsl.sign | ||
int test_sign_int16_t(int16_t p0) { return sign(p0); } | ||
|
||
// NATIVE_HALF: define [[FNATTRS]] <2 x i32> @ | ||
// NATIVE_HALF: %hlsl.sign = call <2 x i32> @llvm.[[TARGET]].sign.v2i16( | ||
// NATIVE_HALF: ret <2 x i32> %hlsl.sign | ||
int2 test_sign_int16_t2(int16_t2 p0) { return sign(p0); } | ||
|
||
// NATIVE_HALF: define [[FNATTRS]] <3 x i32> @ | ||
// NATIVE_HALF: %hlsl.sign = call <3 x i32> @llvm.[[TARGET]].sign.v3i16( | ||
// NATIVE_HALF: ret <3 x i32> %hlsl.sign | ||
int3 test_sign_int16_t3(int16_t3 p0) { return sign(p0); } | ||
|
||
// NATIVE_HALF: define [[FNATTRS]] <4 x i32> @ | ||
// NATIVE_HALF: %hlsl.sign = call <4 x i32> @llvm.[[TARGET]].sign.v4i16( | ||
// NATIVE_HALF: ret <4 x i32> %hlsl.sign | ||
int4 test_sign_int16_t4(int16_t4 p0) { return sign(p0); } | ||
#endif // __HLSL_ENABLE_16_BIT | ||
|
||
|
||
// CHECK: define [[FNATTRS]] i32 @ | ||
// CHECK: %hlsl.sign = call i32 @llvm.[[TARGET]].sign.i32( | ||
// CHECK: ret i32 %hlsl.sign | ||
int test_sign_int(int p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <2 x i32> @ | ||
// CHECK: %hlsl.sign = call <2 x i32> @llvm.[[TARGET]].sign.v2i32( | ||
// CHECK: ret <2 x i32> %hlsl.sign | ||
int2 test_sign_int2(int2 p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <3 x i32> @ | ||
// CHECK: %hlsl.sign = call <3 x i32> @llvm.[[TARGET]].sign.v3i32( | ||
// CHECK: ret <3 x i32> %hlsl.sign | ||
int3 test_sign_int3(int3 p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <4 x i32> @ | ||
// CHECK: %hlsl.sign = call <4 x i32> @llvm.[[TARGET]].sign.v4i32( | ||
// CHECK: ret <4 x i32> %hlsl.sign | ||
int4 test_sign_int4(int4 p0) { return sign(p0); } | ||
|
||
|
||
// CHECK: define [[FNATTRS]] i32 @ | ||
// CHECK: %hlsl.sign = call i32 @llvm.[[TARGET]].sign.i64( | ||
// CHECK: ret i32 %hlsl.sign | ||
int test_sign_int64_t(int64_t p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <2 x i32> @ | ||
// CHECK: %hlsl.sign = call <2 x i32> @llvm.[[TARGET]].sign.v2i64( | ||
// CHECK: ret <2 x i32> %hlsl.sign | ||
int2 test_sign_int64_t2(int64_t2 p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <3 x i32> @ | ||
// CHECK: %hlsl.sign = call <3 x i32> @llvm.[[TARGET]].sign.v3i64( | ||
// CHECK: ret <3 x i32> %hlsl.sign | ||
int3 test_sign_int64_t3(int64_t3 p0) { return sign(p0); } | ||
|
||
// CHECK: define [[FNATTRS]] <4 x i32> @ | ||
// CHECK: %hlsl.sign = call <4 x i32> @llvm.[[TARGET]].sign.v4i64( | ||
// CHECK: ret <4 x i32> %hlsl.sign | ||
int4 test_sign_int64_t4(int64_t4 p0) { return sign(p0); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -emit-llvm-only -disable-llvm-passes -verify -verify-ignore-unexpected | ||
|
||
bool test_too_few_arg() { | ||
return __builtin_hlsl_elementwise_sign(); | ||
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}} | ||
} | ||
|
||
bool2 test_too_many_arg(float2 p0) { | ||
return __builtin_hlsl_elementwise_sign(p0, p0); | ||
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}} | ||
} | ||
|
||
bool builtin_bool_to_float_type_promotion(bool p1) { | ||
return __builtin_hlsl_elementwise_sign(p1); | ||
// expected-error@-1 {passing 'bool' to parameter of incompatible type 'float'}} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.