-
Notifications
You must be signed in to change notification settings - Fork 13.4k
[clang][hlsl] Add atan2 intrinsic part 1 #107923
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
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
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
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,59 @@ | ||
// 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: %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 | ||
|
||
// CHECK-LABEL: test_atan2_half | ||
// NATIVE_HALF: call half @llvm.atan2.f16 | ||
// NO_HALF: call float @llvm.atan2.f32 | ||
half test_atan2_half (half p0, half p1) { | ||
return atan2(p0, p1); | ||
} | ||
|
||
// CHECK-LABEL: test_atan2_half2 | ||
// NATIVE_HALF: call <2 x half> @llvm.atan2.v2f16 | ||
// NO_HALF: call <2 x float> @llvm.atan2.v2f32 | ||
half2 test_atan2_half2 (half2 p0, half2 p1) { | ||
return atan2(p0, p1); | ||
} | ||
|
||
// CHECK-LABEL: test_atan2_half3 | ||
// NATIVE_HALF: call <3 x half> @llvm.atan2.v3f16 | ||
// NO_HALF: call <3 x float> @llvm.atan2.v3f32 | ||
half3 test_atan2_half3 (half3 p0, half3 p1) { | ||
return atan2(p0, p1); | ||
} | ||
|
||
// CHECK-LABEL: test_atan2_half4 | ||
// NATIVE_HALF: call <4 x half> @llvm.atan2.v4f16 | ||
// NO_HALF: call <4 x float> @llvm.atan2.v4f32 | ||
half4 test_atan2_half4 (half4 p0, half4 p1) { | ||
return atan2(p0, p1); | ||
} | ||
|
||
// CHECK-LABEL: test_atan2_float | ||
// CHECK: call float @llvm.atan2.f32 | ||
float test_atan2_float (float p0, float p1) { | ||
return atan2(p0, p1); | ||
} | ||
|
||
// CHECK-LABEL: test_atan2_float2 | ||
// CHECK: call <2 x float> @llvm.atan2.v2f32 | ||
float2 test_atan2_float2 (float2 p0, float2 p1) { | ||
return atan2(p0, p1); | ||
} | ||
|
||
// CHECK-LABEL: test_atan2_float3 | ||
// CHECK: call <3 x float> @llvm.atan2.v3f32 | ||
float3 test_atan2_float3 (float3 p0, float3 p1) { | ||
return atan2(p0, p1); | ||
} | ||
|
||
// CHECK-LABEL: test_atan2_float4 | ||
// CHECK: call <4 x float> @llvm.atan2.v4f32 | ||
float4 test_atan2_float4 (float4 p0, float4 p1) { | ||
return atan2(p0, p1); | ||
} |
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
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,7 @@ | ||
// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -emit-llvm-only -disable-llvm-passes -verify -DTEST_FUNC=__builtin_elementwise_atan2 | ||
// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -emit-llvm-only -disable-llvm-passes -verify -DTEST_FUNC=__builtin_elementwise_pow | ||
|
||
double2 test_double_builtin(double2 p0, double2 p1) { | ||
return TEST_FUNC(p0, p1); | ||
// expected-error@-1 {{passing 'double2' (aka 'vector<double, 2>') to parameter of incompatible type '__attribute__((__vector_size__(2 * sizeof(float)))) float' (vector of 2 'float' values)}} | ||
} |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is more a note for me: We haven't been doing
CustomTypeChecking
for"__builtin_hlsl_elementwise_*"
cases. Check to see if we should. I'm assumingCustomTypeChecking
is used to have vector cases avoid impacting variadic argument Sema rules.