-
Notifications
You must be signed in to change notification settings - Fork 14.9k
[Clang] VectorExprEvaluator::VisitCallExpr / InterpretBuiltin - allow MMX/SSE/AVX2 PSIGN intrinsics to be used in constexpr #163685
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
Open
kimsh02
wants to merge
6
commits into
llvm:main
Choose a base branch
from
kimsh02:x86-psign
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+93
−50
Open
Changes from all commits
Commits
Show all changes
6 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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -12312,6 +12312,21 @@ bool VectorExprEvaluator::VisitCallExpr(const CallExpr *E) { | |||||
return Success(APValue(ResultElements.data(), ResultElements.size()), E); | ||||||
} | ||||||
|
||||||
case X86::BI__builtin_ia32_psignb128: | ||||||
case X86::BI__builtin_ia32_psignb256: | ||||||
case X86::BI__builtin_ia32_psignw128: | ||||||
case X86::BI__builtin_ia32_psignw256: | ||||||
case X86::BI__builtin_ia32_psignd128: | ||||||
case X86::BI__builtin_ia32_psignd256: | ||||||
return EvaluateBinOpExpr( | ||||||
[](const APInt &AElem, const APInt &BElem) -> APInt { | ||||||
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.
Suggested change
|
||||||
if (BElem.isZero()) | ||||||
return APInt::getZero(AElem.getBitWidth()); | ||||||
if (BElem.isNegative()) | ||||||
return -AElem; | ||||||
return AElem; | ||||||
}); | ||||||
|
||||||
case X86::BI__builtin_ia32_blendvpd: | ||||||
case X86::BI__builtin_ia32_blendvpd256: | ||||||
case X86::BI__builtin_ia32_blendvps: | ||||||
|
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 |
---|---|---|
|
@@ -641,10 +641,9 @@ _mm_shuffle_pi8(__m64 __a, __m64 __b) { | |
/// A 128-bit integer vector containing control bytes corresponding to | ||
/// positions in the destination. | ||
/// \returns A 128-bit integer vector containing the resultant values. | ||
static __inline__ __m128i __DEFAULT_FN_ATTRS | ||
_mm_sign_epi8(__m128i __a, __m128i __b) | ||
{ | ||
return (__m128i)__builtin_ia32_psignb128((__v16qi)__a, (__v16qi)__b); | ||
static __inline__ __m128i __DEFAULT_FN_ATTRS_CONSTEXPR | ||
_mm_sign_epi8(__m128i __a, __m128i __b) { | ||
return (__m128i)__builtin_ia32_psignb128((__v16qi)__a, (__v16qi)__b); | ||
} | ||
|
||
/// For each 16-bit integer in the first source operand, perform one of | ||
|
@@ -667,10 +666,9 @@ _mm_sign_epi8(__m128i __a, __m128i __b) | |
/// A 128-bit integer vector containing control words corresponding to | ||
/// positions in the destination. | ||
/// \returns A 128-bit integer vector containing the resultant values. | ||
static __inline__ __m128i __DEFAULT_FN_ATTRS | ||
_mm_sign_epi16(__m128i __a, __m128i __b) | ||
{ | ||
return (__m128i)__builtin_ia32_psignw128((__v8hi)__a, (__v8hi)__b); | ||
static __inline__ __m128i __DEFAULT_FN_ATTRS_CONSTEXPR | ||
_mm_sign_epi16(__m128i __a, __m128i __b) { | ||
return (__m128i)__builtin_ia32_psignw128((__v8hi)__a, (__v8hi)__b); | ||
} | ||
|
||
/// For each 32-bit integer in the first source operand, perform one of | ||
|
@@ -693,10 +691,9 @@ _mm_sign_epi16(__m128i __a, __m128i __b) | |
/// A 128-bit integer vector containing control doublewords corresponding to | ||
/// positions in the destination. | ||
/// \returns A 128-bit integer vector containing the resultant values. | ||
static __inline__ __m128i __DEFAULT_FN_ATTRS | ||
_mm_sign_epi32(__m128i __a, __m128i __b) | ||
{ | ||
return (__m128i)__builtin_ia32_psignd128((__v4si)__a, (__v4si)__b); | ||
static __inline__ __m128i __DEFAULT_FN_ATTRS_CONSTEXPR | ||
_mm_sign_epi32(__m128i __a, __m128i __b) { | ||
return (__m128i)__builtin_ia32_psignd128((__v4si)__a, (__v4si)__b); | ||
} | ||
|
||
/// For each 8-bit integer in the first source operand, perform one of | ||
|
@@ -719,11 +716,10 @@ _mm_sign_epi32(__m128i __a, __m128i __b) | |
/// A 64-bit integer vector containing control bytes corresponding to | ||
/// positions in the destination. | ||
/// \returns A 64-bit integer vector containing the resultant values. | ||
static __inline__ __m64 __DEFAULT_FN_ATTRS | ||
_mm_sign_pi8(__m64 __a, __m64 __b) | ||
{ | ||
return __trunc64(__builtin_ia32_psignb128((__v16qi)__anyext128(__a), | ||
(__v16qi)__anyext128(__b))); | ||
static __inline__ __m64 __DEFAULT_FN_ATTRS_CONSTEXPR _mm_sign_pi8(__m64 __a, | ||
__m64 __b) { | ||
return __trunc64(__builtin_ia32_psignb128((__v16qi)__zext128(__a), | ||
(__v16qi)__zext128(__b))); | ||
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. If these were the last uses of __anyext128 we should remove the define/undef from tmmintrin.h |
||
} | ||
|
||
/// For each 16-bit integer in the first source operand, perform one of | ||
|
@@ -746,11 +742,10 @@ _mm_sign_pi8(__m64 __a, __m64 __b) | |
/// A 64-bit integer vector containing control words corresponding to | ||
/// positions in the destination. | ||
/// \returns A 64-bit integer vector containing the resultant values. | ||
static __inline__ __m64 __DEFAULT_FN_ATTRS | ||
_mm_sign_pi16(__m64 __a, __m64 __b) | ||
{ | ||
return __trunc64(__builtin_ia32_psignw128((__v8hi)__anyext128(__a), | ||
(__v8hi)__anyext128(__b))); | ||
static __inline__ __m64 __DEFAULT_FN_ATTRS_CONSTEXPR _mm_sign_pi16(__m64 __a, | ||
__m64 __b) { | ||
return __trunc64( | ||
__builtin_ia32_psignw128((__v8hi)__zext128(__a), (__v8hi)__zext128(__b))); | ||
} | ||
|
||
/// For each 32-bit integer in the first source operand, perform one of | ||
|
@@ -773,11 +768,10 @@ _mm_sign_pi16(__m64 __a, __m64 __b) | |
/// A 64-bit integer vector containing two control doublewords corresponding | ||
/// to positions in the destination. | ||
/// \returns A 64-bit integer vector containing the resultant values. | ||
static __inline__ __m64 __DEFAULT_FN_ATTRS | ||
_mm_sign_pi32(__m64 __a, __m64 __b) | ||
{ | ||
return __trunc64(__builtin_ia32_psignd128((__v4si)__anyext128(__a), | ||
(__v4si)__anyext128(__b))); | ||
static __inline__ __m64 __DEFAULT_FN_ATTRS_CONSTEXPR _mm_sign_pi32(__m64 __a, | ||
__m64 __b) { | ||
return __trunc64( | ||
__builtin_ia32_psignd128((__v4si)__zext128(__a), (__v4si)__zext128(__b))); | ||
} | ||
|
||
#undef __anyext128 | ||
|
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
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.