2003-04-18 04:34:29 +00:00
|
|
|
//===- ConstantMerge.cpp - Merge duplicate global constants ---------------===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-10-18 20:05:37 +00:00
|
|
|
//
|
|
|
|
// This file defines the interface to a pass that merges duplicate global
|
|
|
|
// constants together into a single constant that is shared. This is useful
|
|
|
|
// because some passes (ie TraceValues) insert a lot of string constants into
|
2002-09-23 23:00:46 +00:00
|
|
|
// the program, regardless of whether or not an existing string is available.
|
2001-10-18 20:05:37 +00:00
|
|
|
//
|
|
|
|
// Algorithm: ConstantMerge is designed to build up a map of available constants
|
2002-09-23 23:00:46 +00:00
|
|
|
// and eliminate duplicates when it is initialized.
|
2001-10-18 20:05:37 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-07-23 19:57:40 +00:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2002-01-31 00:45:11 +00:00
|
|
|
#include "llvm/Module.h"
|
2002-02-26 21:46:54 +00:00
|
|
|
#include "llvm/Pass.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2003-11-21 21:54:22 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2002-06-25 15:55:29 +00:00
|
|
|
namespace {
|
2002-10-09 23:16:04 +00:00
|
|
|
Statistic<> NumMerged("constmerge", "Number of global constants merged");
|
|
|
|
|
2004-09-20 04:48:05 +00:00
|
|
|
struct ConstantMerge : public ModulePass {
|
2002-06-25 15:55:29 +00:00
|
|
|
// run - For this pass, process all of the globals in the module,
|
|
|
|
// eliminating duplicate constants.
|
|
|
|
//
|
2004-09-20 04:48:05 +00:00
|
|
|
bool runOnModule(Module &M);
|
2002-06-25 15:55:29 +00:00
|
|
|
};
|
2002-07-23 18:06:30 +00:00
|
|
|
|
2002-07-26 21:12:44 +00:00
|
|
|
RegisterOpt<ConstantMerge> X("constmerge","Merge Duplicate Global Constants");
|
2002-06-25 15:55:29 +00:00
|
|
|
}
|
|
|
|
|
2004-09-20 04:48:05 +00:00
|
|
|
ModulePass *llvm::createConstantMergePass() { return new ConstantMerge(); }
|
2002-06-25 15:55:29 +00:00
|
|
|
|
2004-09-20 04:48:05 +00:00
|
|
|
bool ConstantMerge::runOnModule(Module &M) {
|
2006-03-07 17:56:59 +00:00
|
|
|
// Map unique constant/section pairs to globals. We don't want to merge
|
|
|
|
// globals in different sections.
|
|
|
|
std::map<std::pair<Constant*, std::string>, GlobalVariable*> CMap;
|
2003-12-22 23:49:36 +00:00
|
|
|
|
|
|
|
// Replacements - This vector contains a list of replacements to perform.
|
|
|
|
std::vector<std::pair<GlobalVariable*, GlobalVariable*> > Replacements;
|
|
|
|
|
2003-12-28 07:19:08 +00:00
|
|
|
bool MadeChange = false;
|
2001-10-18 20:05:37 +00:00
|
|
|
|
2003-12-28 07:19:08 +00:00
|
|
|
// 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 (1) {
|
|
|
|
// First pass: identify all globals that can be merged together, filling in
|
|
|
|
// the Replacements 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.
|
|
|
|
//
|
2006-03-07 17:56:59 +00:00
|
|
|
for (Module::global_iterator GV = M.global_begin(), E = M.global_end();
|
|
|
|
GV != E; ++GV)
|
|
|
|
// Only process constants with initializers.
|
2003-12-28 07:19:08 +00:00
|
|
|
if (GV->isConstant() && GV->hasInitializer()) {
|
|
|
|
Constant *Init = GV->getInitializer();
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2006-03-07 17:56:59 +00:00
|
|
|
// Check to see if the initializer is already known.
|
|
|
|
GlobalVariable *&Slot = CMap[std::make_pair(Init, GV->getSection())];
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2006-03-07 17:56:59 +00:00
|
|
|
if (Slot == 0) { // Nope, add it to the map.
|
|
|
|
Slot = GV;
|
2003-12-28 07:19:08 +00:00
|
|
|
} else if (GV->hasInternalLinkage()) { // Yup, this is a duplicate!
|
|
|
|
// Make all uses of the duplicate constant use the canonical version.
|
2006-03-07 17:56:59 +00:00
|
|
|
Replacements.push_back(std::make_pair(GV, Slot));
|
|
|
|
} else if (GV->hasInternalLinkage()) {
|
2003-12-28 07:19:08 +00:00
|
|
|
// Make all uses of the duplicate constant use the canonical version.
|
2006-03-07 17:56:59 +00:00
|
|
|
Replacements.push_back(std::make_pair(Slot, GV));
|
|
|
|
Slot = GV;
|
2003-12-28 07:19:08 +00:00
|
|
|
}
|
2001-10-18 20:05:37 +00:00
|
|
|
}
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-12-28 07:19:08 +00:00
|
|
|
if (Replacements.empty())
|
|
|
|
return MadeChange;
|
|
|
|
CMap.clear();
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-12-28 07:19:08 +00:00
|
|
|
// 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) {
|
|
|
|
// Eliminate any uses of the dead global...
|
|
|
|
Replacements[i].first->replaceAllUsesWith(Replacements[i].second);
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-12-28 07:19:08 +00:00
|
|
|
// Delete the global value from the module...
|
|
|
|
M.getGlobalList().erase(Replacements[i].first);
|
2001-10-18 20:05:37 +00:00
|
|
|
}
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-12-28 07:19:08 +00:00
|
|
|
NumMerged += Replacements.size();
|
|
|
|
Replacements.clear();
|
2003-12-22 23:49:36 +00:00
|
|
|
}
|
|
|
|
}
|