[PATCH] D88286: [NFC][NARY-REASSOCIATE] Restructure code to aviod isPotentiallyReassociatable
Evgeniy via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 25 01:53:44 PDT 2020
ebrevnov created this revision.
Herald added subscribers: llvm-commits, hiraditya.
Herald added a project: LLVM.
ebrevnov requested review of this revision.
Currently we have to duplicate the same checks in isPotentiallyReassociatable and tryReassociate. With simple pattern like add/mul this may be not a big deal. But the situation gets much worse when I try to add support for min/max. Min/Max may be represented by several instructions and can take different forms. In order reduce complexity for upcoming min/max support we need to restructure the code a bit to avoid mentioned code duplication.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D88286
Files:
llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
llvm/lib/Transforms/Scalar/NaryReassociate.cpp
Index: llvm/lib/Transforms/Scalar/NaryReassociate.cpp
===================================================================
--- llvm/lib/Transforms/Scalar/NaryReassociate.cpp
+++ llvm/lib/Transforms/Scalar/NaryReassociate.cpp
@@ -213,18 +213,6 @@
return Changed;
}
-// Explicitly list the instruction types NaryReassociate handles for now.
-static bool isPotentiallyNaryReassociable(Instruction *I) {
- switch (I->getOpcode()) {
- case Instruction::Add:
- case Instruction::GetElementPtr:
- case Instruction::Mul:
- return true;
- default:
- return false;
- }
-}
-
bool NaryReassociatePass::doOneIteration(Function &F) {
bool Changed = false;
SeenExprs.clear();
@@ -236,13 +224,8 @@
BasicBlock *BB = Node->getBlock();
for (auto I = BB->begin(); I != BB->end(); ++I) {
Instruction *OrigI = &*I;
-
- if (!SE->isSCEVable(OrigI->getType()) ||
- !isPotentiallyNaryReassociable(OrigI))
- continue;
-
- const SCEV *OrigSCEV = SE->getSCEV(OrigI);
- if (Instruction *NewI = tryReassociate(OrigI)) {
+ const SCEV *OrigSCEV = nullptr;
+ if (Instruction *NewI = tryReassociate(OrigI, OrigSCEV)) {
Changed = true;
OrigI->replaceAllUsesWith(NewI);
@@ -274,7 +257,7 @@
// nary-gep.ll.
if (NewSCEV != OrigSCEV)
SeenExprs[OrigSCEV].push_back(WeakTrackingVH(NewI));
- } else {
+ } else if (OrigSCEV) {
SeenExprs[OrigSCEV].push_back(WeakTrackingVH(OrigI));
}
}
@@ -287,16 +270,26 @@
return Changed;
}
-Instruction *NaryReassociatePass::tryReassociate(Instruction *I) {
+Instruction *NaryReassociatePass::tryReassociate(Instruction *I,
+ const SCEV *&OrigSCEV) {
+
+ if (!SE->isSCEVable(I->getType()))
+ return nullptr;
+
switch (I->getOpcode()) {
case Instruction::Add:
case Instruction::Mul:
+ OrigSCEV = SE->getSCEV(I);
return tryReassociateBinaryOp(cast<BinaryOperator>(I));
case Instruction::GetElementPtr:
+ OrigSCEV = SE->getSCEV(I);
return tryReassociateGEP(cast<GetElementPtrInst>(I));
default:
- llvm_unreachable("should be filtered out by isPotentiallyNaryReassociable");
+ return nullptr;
}
+
+ llvm_unreachable("should not be reached");
+ return nullptr;
}
static bool isGEPFoldable(GetElementPtrInst *GEP,
Index: llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
===================================================================
--- llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
+++ llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
@@ -114,7 +114,7 @@
bool doOneIteration(Function &F);
// Reassociates I for better CSE.
- Instruction *tryReassociate(Instruction *I);
+ Instruction *tryReassociate(Instruction *I, const SCEV *&OrigSCEV);
// Reassociate GEP for better CSE.
Instruction *tryReassociateGEP(GetElementPtrInst *GEP);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D88286.294250.patch
Type: text/x-patch
Size: 2924 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200925/7679a6b8/attachment.bin>
More information about the llvm-commits
mailing list