diff options
| author | JF Bastien <jfbastien@apple.com> | 2018-08-10 22:41:09 +0000 |
|---|---|---|
| committer | JF Bastien <jfbastien@apple.com> | 2018-08-10 22:41:09 +0000 |
| commit | fe258d9776db614811f8439fbe5557d815db32a8 (patch) | |
| tree | a0890fed9f7cf5dd4824cb4c5ed9a7e7f7179a72 /llvm/lib/Transforms | |
| parent | 0e4e6e5e87a7829cabb9fa6fc1a6cbefe2663d56 (diff) | |
| download | bcm5719-llvm-fe258d9776db614811f8439fbe5557d815db32a8.tar.gz bcm5719-llvm-fe258d9776db614811f8439fbe5557d815db32a8.zip | |
Re-commit "[NFC] More ConstantMerge refactoring"
My previous change moved some code upwards which caused an assert in debug mode
because the global value didn't necessarily have an initializer. Don't do that.
llvm-svn: 339485
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/IPO/ConstantMerge.cpp | 41 |
1 files changed, 23 insertions, 18 deletions
diff --git a/llvm/lib/Transforms/IPO/ConstantMerge.cpp b/llvm/lib/Transforms/IPO/ConstantMerge.cpp index 5ddf2e26e0c..81f3634eaf2 100644 --- a/llvm/lib/Transforms/IPO/ConstantMerge.cpp +++ b/llvm/lib/Transforms/IPO/ConstantMerge.cpp @@ -40,7 +40,7 @@ using namespace llvm; #define DEBUG_TYPE "constmerge" -STATISTIC(NumMerged, "Number of global constants merged"); +STATISTIC(NumIdenticalMerged, "Number of identical global constants merged"); /// Find values that are marked as llvm.used. static void FindUsedValues(GlobalVariable *LLVMUsed, @@ -131,17 +131,18 @@ static bool mergeConstants(Module &M) { // Map unique constants to globals. DenseMap<Constant *, GlobalVariable *> CMap; - // Replacements - This vector contains a list of replacements to perform. - SmallVector<std::pair<GlobalVariable*, GlobalVariable*>, 32> Replacements; + SmallVector<std::pair<GlobalVariable *, GlobalVariable *>, 32> + SameContentReplacements; - bool MadeChange = false; + size_t ChangesMade = 0; + size_t OldChangesMade = 0; // Iterate constant merging while we are still making progress. Merging two // constants together may allow us to merge other constants together if the // second level constants have initializers which point to the globals that // were just merged. while (true) { - // First: Find the canonical constants others will be merged with. + // Find the canonical constants others will be merged with. for (Module::global_iterator GVI = M.global_begin(), E = M.global_end(); GVI != E; ) { GlobalVariable *GV = &*GVI++; @@ -150,6 +151,7 @@ static bool mergeConstants(Module &M) { GV->removeDeadConstantUsers(); if (GV->use_empty() && GV->hasLocalLinkage()) { GV->eraseFromParent(); + ++ChangesMade; continue; } @@ -187,8 +189,8 @@ static bool mergeConstants(Module &M) { } } - // Second: identify all globals that can be merged together, filling in - // the Replacements vector. We cannot do the replacement in this pass + // Identify all globals that can be merged together, filling in the + // SameContentReplacements vector. We cannot do the replacement in this pass // because doing so may cause initializers of other globals to be rewritten, // invalidating the Constant* pointers in CMap. for (Module::global_iterator GVI = M.global_begin(), E = M.global_end(); @@ -223,26 +225,29 @@ static bool mergeConstants(Module &M) { // Make all uses of the duplicate constant use the canonical version. LLVM_DEBUG(dbgs() << "Will replace: @" << GV->getName() << " -> @" << Slot->getName() << "\n"); - Replacements.push_back(std::make_pair(GV, Slot)); + SameContentReplacements.push_back(std::make_pair(GV, Slot)); } - if (Replacements.empty()) - return MadeChange; - CMap.clear(); - // Now that we have figured out which replacements must be made, do them all // now. This avoid invalidating the pointers in CMap, which are unneeded // now. - for (unsigned i = 0, e = Replacements.size(); i != e; ++i) { - GlobalVariable *Old = Replacements[i].first; - GlobalVariable *New = Replacements[i].second; + for (unsigned i = 0, e = SameContentReplacements.size(); i != e; ++i) { + GlobalVariable *Old = SameContentReplacements[i].first; + GlobalVariable *New = SameContentReplacements[i].second; replace(M, Old, New); - MadeChange = true; + ++ChangesMade; + ++NumIdenticalMerged; } - NumMerged += Replacements.size(); - Replacements.clear(); + if (ChangesMade == OldChangesMade) + break; + OldChangesMade = ChangesMade; + + SameContentReplacements.clear(); + CMap.clear(); } + + return ChangesMade; } PreservedAnalyses ConstantMergePass::run(Module &M, ModuleAnalysisManager &) { |

