-
Notifications
You must be signed in to change notification settings - Fork 14.6k
[InstCombine] Add additional known bits info for self multiply #151202
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
base: main
Are you sure you want to change the base?
Conversation
Thank you for submitting a Pull Request (PR) to the LLVM Project! This PR will be automatically labeled and the relevant teams will be notified. If you wish to, you can add reviewers by using the "Reviewers" section on this page. If this is not working for you, it is probably because you do not have write permissions for the repository. In which case you can instead tag reviewers by name in a comment by using If you have received no comments on your PR for a week, you can request a review by "ping"ing the PR by adding a comment “Ping”. The common courtesy "ping" rate is once a week. Please remember that you are asking for valuable time from other developers. If you have further questions, they may be answered by the LLVM GitHub User Guide. You can also ask questions in a comment on this PR, on the LLVM Discord or on the forums. |
@llvm/pr-subscribers-llvm-support @llvm/pr-subscribers-llvm-transforms Author: Macsen Casaus (macsencasaus) ChangesCloses #151043 Full diff: https://github.com/llvm/llvm-project/pull/151202.diff 2 Files Affected:
diff --git a/llvm/lib/Support/KnownBits.cpp b/llvm/lib/Support/KnownBits.cpp
index 94a04ab90987a..a1bb6818fc94d 100644
--- a/llvm/lib/Support/KnownBits.cpp
+++ b/llvm/lib/Support/KnownBits.cpp
@@ -888,11 +888,30 @@ KnownBits KnownBits::mul(const KnownBits &LHS, const KnownBits &RHS,
Res.Zero |= (~BottomKnown).getLoBits(ResultBitsKnown);
Res.One = BottomKnown.getLoBits(ResultBitsKnown);
- // If we're self-multiplying then bit[1] is guaranteed to be zero.
- if (NoUndefSelfMultiply && BitWidth > 1) {
- assert(Res.One[1] == 0 &&
- "Self-multiplication failed Quadratic Reciprocity!");
- Res.Zero.setBit(1);
+ // Self multiplying
+ if (NoUndefSelfMultiply) {
+ // bit[1] is guaranteed to be zero.
+ if (BitWidth > 1) {
+ assert(Res.One[1] == 0 &&
+ "Self-multiplication failed Quadratic Reciprocity!");
+ Res.Zero.setBit(1);
+ }
+
+ // If input bit[0] is set, then output bit[2] is guaranteed to be zero.
+ if (BitWidth > 2 && LHS.One[0])
+ Res.Zero.setBit(2);
+
+ // If input bit[0] is clear, then output bit[3] is guaranteed to be zero.
+ if (BitWidth > 3 && LHS.Zero[0])
+ Res.Zero.setBit(3);
+
+ // If input % 4 == 2, then output bit[3] and bit[4] are guarantted to be
+ // zero.
+ if (BitWidth > 3 && LHS.Zero[0] && LHS.One[1]) {
+ Res.Zero.setBit(3);
+ if (BitWidth > 4)
+ Res.Zero.setBit(4);
+ }
}
return Res;
diff --git a/llvm/test/Transforms/InstCombine/known-bits.ll b/llvm/test/Transforms/InstCombine/known-bits.ll
index 9a9fec694ff0e..f8c97d86a9230 100644
--- a/llvm/test/Transforms/InstCombine/known-bits.ll
+++ b/llvm/test/Transforms/InstCombine/known-bits.ll
@@ -1244,6 +1244,48 @@ define i1 @extract_value_smul_fail(i8 %xx, i8 %yy) {
ret i1 %r
}
+define i8 @known_self_mul_bit_0_set(i8 noundef %x) {
+; CHECK-LABEL: @known_self_mul_bit_0_set(
+; CHECK-NEXT: ret i8 0
+;
+ %bit_0_set = or i8 %x, 1
+ %self_mul = mul i8 %bit_0_set, %bit_0_set
+ %r = and i8 %self_mul, 4
+ ret i8 %r
+}
+
+define i8 @known_self_mul_bit_0_unset(i8 noundef %x) {
+; CHECK-LABEL: @known_self_mul_bit_0_unset(
+; CHECK-NEXT: ret i8 0
+;
+ %bit_0_unset = and i8 %x, -2
+ %self_mul = mul i8 %bit_0_unset, %bit_0_unset
+ %r = and i8 %self_mul, 8
+ ret i8 %r
+}
+
+define i8 @known_self_mul_bit_1_set_bit_0_unset(i8 noundef %x) {
+; CHECK-LABEL: @known_self_mul_bit_1_set_bit_0_unset(
+; CHECK-NEXT: ret i8 0
+;
+ %lower_2_unset = and i8 %x, -4
+ %bit_1_set_bit_0_unset = or disjoint i8 %lower_2_unset, 2
+ %self_mul = mul i8 %bit_1_set_bit_0_unset, %bit_1_set_bit_0_unset
+ %r = and i8 %self_mul, 24
+ ret i8 %r
+}
+
+define i4 @known_self_mul_bit_1_set_bit_0_unset_i4(i4 noundef %x) {
+; CHECK-LABEL: @known_self_mul_bit_1_set_bit_0_unset_i4(
+; CHECK-NEXT: ret i4 0
+;
+ %lower_2_unset = and i4 %x, -4
+ %bit_1_set_bit_0_unset = or disjoint i4 %lower_2_unset, 2
+ %self_mul = mul i4 %bit_1_set_bit_0_unset, %bit_1_set_bit_0_unset
+ %r = and i4 %self_mul, 24
+ ret i4 %r
+}
+
define i8 @known_reduce_or(<2 x i8> %xx) {
; CHECK-LABEL: @known_reduce_or(
; CHECK-NEXT: ret i8 1
|
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.
Can you provide some evidence that these patterns come up in real-world code? It was not found in our IR corpus.
https://llvm.org/docs/InstCombineContributorGuide.html#real-world-usefulness
Sorry I can't, I was simply addressing the original issue. |
Closes #151043
https://alive2.llvm.org/ce/z/JyMSk8