[llvm] cde1c3c - [AggressiveInstCombine] use m_Deferred on funnel shift(NFC)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 24 05:54:39 PDT 2023
Author: khei4
Date: 2023-03-24T21:49:02+09:00
New Revision: cde1c3c014374233b38728c15f6e766359d52b14
URL: https://github.com/llvm/llvm-project/commit/cde1c3c014374233b38728c15f6e766359d52b14
DIFF: https://github.com/llvm/llvm-project/commit/cde1c3c014374233b38728c15f6e766359d52b14.diff
LOG: [AggressiveInstCombine] use m_Deferred on funnel shift(NFC)
Differential Revision: https://reviews.llvm.org/D146798
Reviewed By: nikic
Added:
Modified:
llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp b/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
index cf652836bef25..0b8f853d9df23 100644
--- a/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
+++ b/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
@@ -65,7 +65,6 @@ static bool foldGuardedFunnelShift(Instruction &I, const DominatorTree &DT) {
// shift amount.
auto matchFunnelShift = [](Value *V, Value *&ShVal0, Value *&ShVal1,
Value *&ShAmt) {
- Value *SubAmt;
unsigned Width = V->getType()->getScalarSizeInBits();
// fshl(ShVal0, ShVal1, ShAmt)
@@ -73,8 +72,7 @@ static bool foldGuardedFunnelShift(Instruction &I, const DominatorTree &DT) {
if (match(V, m_OneUse(m_c_Or(
m_Shl(m_Value(ShVal0), m_Value(ShAmt)),
m_LShr(m_Value(ShVal1),
- m_Sub(m_SpecificInt(Width), m_Value(SubAmt))))))) {
- if (ShAmt == SubAmt) // TODO: Use m_Specific
+ m_Sub(m_SpecificInt(Width), m_Deferred(ShAmt))))))) {
return Intrinsic::fshl;
}
@@ -82,9 +80,8 @@ static bool foldGuardedFunnelShift(Instruction &I, const DominatorTree &DT) {
// == (ShVal0 >> ShAmt) | (ShVal1 << (Width - ShAmt))
if (match(V,
m_OneUse(m_c_Or(m_Shl(m_Value(ShVal0), m_Sub(m_SpecificInt(Width),
- m_Value(SubAmt))),
- m_LShr(m_Value(ShVal1), m_Value(ShAmt)))))) {
- if (ShAmt == SubAmt) // TODO: Use m_Specific
+ m_Value(ShAmt))),
+ m_LShr(m_Value(ShVal1), m_Deferred(ShAmt)))))) {
return Intrinsic::fshr;
}
More information about the llvm-commits
mailing list