summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/CodeGenPrepare.cpp
diff options
context:
space:
mode:
authorBalaram Makam <bmakam@codeaurora.org>2017-10-26 22:34:01 +0000
committerBalaram Makam <bmakam@codeaurora.org>2017-10-26 22:34:01 +0000
commitcddf3c5e1c4c99c56aebe56b3fe96d56fe2fe578 (patch)
tree7eea3930f1837597ef9803a02d5071454a88a647 /llvm/lib/CodeGen/CodeGenPrepare.cpp
parentbfa84325ee6017ff3e9628e0c9cee9076d0963fa (diff)
downloadbcm5719-llvm-cddf3c5e1c4c99c56aebe56b3fe96d56fe2fe578.tar.gz
bcm5719-llvm-cddf3c5e1c4c99c56aebe56b3fe96d56fe2fe578.zip
[CGP] Merge empty case blocks if no extra moves are added.
Summary: Currently we skip merging when extra moves may be added in the header of switch instead of the case block, if the case block is used as an incoming block of a PHI. If all the incoming values of the PHIs are non-constants and the destination block is dominated by the switch block then extra moves are likely not added by ISel, so there is no need to skip merging in this case. Reviewers: efriedma, junbuml, davidxl, hfinkel, qcolombet Reviewed By: efriedma Subscribers: dberlin, kuhar, mcrosier, llvm-commits Differential Revision: https://reviews.llvm.org/D37343 llvm-svn: 316711
Diffstat (limited to 'llvm/lib/CodeGen/CodeGenPrepare.cpp')
-rw-r--r--llvm/lib/CodeGen/CodeGenPrepare.cpp47
1 files changed, 36 insertions, 11 deletions
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp
index 1e5f15397bb..9f9bde40164 100644
--- a/llvm/lib/CodeGen/CodeGenPrepare.cpp
+++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp
@@ -212,6 +212,7 @@ class TypePromotionTransaction;
const TargetTransformInfo *TTI = nullptr;
const TargetLibraryInfo *TLInfo;
const LoopInfo *LI;
+ DominatorTree *DT;
std::unique_ptr<BlockFrequencyInfo> BFI;
std::unique_ptr<BranchProbabilityInfo> BPI;
@@ -262,6 +263,7 @@ class TypePromotionTransaction;
void getAnalysisUsage(AnalysisUsage &AU) const override {
// FIXME: When we can selectively preserve passes, preserve the domtree.
+ AU.addRequired<DominatorTreeWrapperPass>();
AU.addRequired<ProfileSummaryInfoWrapperPass>();
AU.addRequired<TargetLibraryInfoWrapperPass>();
AU.addRequired<TargetTransformInfoWrapperPass>();
@@ -343,6 +345,8 @@ bool CodeGenPrepare::runOnFunction(Function &F) {
TLInfo = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
TTI = &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
+ DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
+
OptSize = F.optForSize();
if (ProfileGuidedSectionPrefix) {
@@ -755,6 +759,11 @@ bool CodeGenPrepare::isMergingEmptyBlockProfitable(BasicBlock *BB,
return true;
SmallPtrSet<BasicBlock *, 16> SameIncomingValueBBs;
+ SmallVector<PHINode *, 16> PNs;
+
+ for (auto DestBBI = DestBB->begin();
+ auto *DestPN = dyn_cast<PHINode>(&*DestBBI); ++DestBBI)
+ PNs.push_back(DestPN);
// Find all other incoming blocks from which incoming values of all PHIs in
// DestBB are the same as the ones from BB.
@@ -764,16 +773,10 @@ bool CodeGenPrepare::isMergingEmptyBlockProfitable(BasicBlock *BB,
if (DestBBPred == BB)
continue;
- bool HasAllSameValue = true;
- BasicBlock::const_iterator DestBBI = DestBB->begin();
- while (const PHINode *DestPN = dyn_cast<PHINode>(DestBBI++)) {
- if (DestPN->getIncomingValueForBlock(BB) !=
- DestPN->getIncomingValueForBlock(DestBBPred)) {
- HasAllSameValue = false;
- break;
- }
- }
- if (HasAllSameValue)
+ if (llvm::all_of(PNs, [&](PHINode *PN) {
+ return (PN->getIncomingValueForBlock(BB) ==
+ PN->getIncomingValueForBlock(DestBBPred));
+ }))
SameIncomingValueBBs.insert(DestBBPred);
}
@@ -783,6 +786,14 @@ bool CodeGenPrepare::isMergingEmptyBlockProfitable(BasicBlock *BB,
if (SameIncomingValueBBs.count(Pred))
return true;
+ // Check to see if none of the phis have constant incoming values for BB and
+ // Pred dominates DestBB, in such case extra COPYs are likely not added, so
+ // there is no reason to skip merging.
+ if (DT->dominates(Pred, DestBB) && llvm::none_of(PNs, [BB](PHINode *PN) {
+ return isa<Constant>(PN->getIncomingValueForBlock(BB));
+ }))
+ return true;
+
if (!BFI) {
Function &F = *BB->getParent();
LoopInfo LI{DominatorTree(F)};
@@ -885,7 +896,7 @@ void CodeGenPrepare::eliminateMostlyEmptyBlock(BasicBlock *BB) {
// Remember if SinglePred was the entry block of the function. If so, we
// will need to move BB back to the entry position.
bool isEntry = SinglePred == &SinglePred->getParent()->getEntryBlock();
- MergeBasicBlockIntoOnlyPred(DestBB, nullptr);
+ MergeBasicBlockIntoOnlyPred(DestBB, DT);
if (isEntry && BB != &BB->getParent()->getEntryBlock())
BB->moveBefore(&BB->getParent()->getEntryBlock());
@@ -926,7 +937,21 @@ void CodeGenPrepare::eliminateMostlyEmptyBlock(BasicBlock *BB) {
// The PHIs are now updated, change everything that refers to BB to use
// DestBB and remove BB.
+ SmallVector<DominatorTree::UpdateType, 3> Updates;
+ for (auto *PredBB : predecessors(BB)) {
+ if (PredBB == BB)
+ continue;
+ DominatorTree::UpdateType UT = {DominatorTree::Delete, PredBB, BB};
+ if (!is_contained(Updates, UT)) {
+ Updates.push_back(UT);
+ if (PredBB != DestBB)
+ Updates.push_back({DominatorTree::Insert, PredBB, DestBB});
+ }
+ }
BB->replaceAllUsesWith(DestBB);
+ DT->applyUpdates(Updates);
+ BB->getTerminator()->eraseFromParent();
+ DT->deleteEdge(BB, DestBB);
BB->eraseFromParent();
++NumBlocksElim;
OpenPOWER on IntegriCloud