2003-04-18 12:34:29 +08:00
|
|
|
//===- ConstantMerge.cpp - Merge duplicate global constants ---------------===//
|
2001-10-19 04:05:37 +08: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-24 07:00:46 +08:00
|
|
|
// the program, regardless of whether or not an existing string is available.
|
2001-10-19 04:05:37 +08:00
|
|
|
//
|
|
|
|
// Algorithm: ConstantMerge is designed to build up a map of available constants
|
2002-09-24 07:00:46 +08:00
|
|
|
// and eliminate duplicates when it is initialized.
|
2001-10-19 04:05:37 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-07-24 03:57:40 +08:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2002-01-31 08:45:11 +08:00
|
|
|
#include "llvm/Module.h"
|
2002-02-27 05:46:54 +08:00
|
|
|
#include "llvm/Pass.h"
|
2002-10-02 06:38:41 +08:00
|
|
|
#include "Support/Statistic.h"
|
2002-05-10 23:38:35 +08:00
|
|
|
|
2002-06-25 23:55:29 +08:00
|
|
|
namespace {
|
2002-10-10 07:16:04 +08:00
|
|
|
Statistic<> NumMerged("constmerge", "Number of global constants merged");
|
|
|
|
|
2002-06-25 23:55:29 +08:00
|
|
|
struct ConstantMerge : public Pass {
|
|
|
|
// run - For this pass, process all of the globals in the module,
|
|
|
|
// eliminating duplicate constants.
|
|
|
|
//
|
|
|
|
bool run(Module &M);
|
|
|
|
};
|
2002-07-24 02:06:30 +08:00
|
|
|
|
2002-07-27 05:12:44 +08:00
|
|
|
RegisterOpt<ConstantMerge> X("constmerge","Merge Duplicate Global Constants");
|
2002-06-25 23:55:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Pass *createConstantMergePass() { return new ConstantMerge(); }
|
|
|
|
|
|
|
|
|
|
|
|
bool ConstantMerge::run(Module &M) {
|
|
|
|
std::map<Constant*, GlobalVariable*> CMap;
|
2001-10-19 04:05:37 +08:00
|
|
|
bool MadeChanges = false;
|
|
|
|
|
2002-06-25 23:55:29 +08:00
|
|
|
for (Module::giterator GV = M.gbegin(), E = M.gend(); GV != E; ++GV)
|
2003-04-18 12:34:29 +08:00
|
|
|
// Only process constants with initializers
|
|
|
|
if (GV->isConstant() && GV->hasInitializer()) {
|
2001-12-04 06:26:30 +08:00
|
|
|
Constant *Init = GV->getInitializer();
|
2001-10-19 04:05:37 +08:00
|
|
|
|
|
|
|
// Check to see if the initializer is already known...
|
2002-01-21 06:54:45 +08:00
|
|
|
std::map<Constant*, GlobalVariable*>::iterator I = CMap.find(Init);
|
2001-10-19 04:05:37 +08:00
|
|
|
|
|
|
|
if (I == CMap.end()) { // Nope, add it to the map
|
2002-06-25 23:55:29 +08:00
|
|
|
CMap.insert(I, std::make_pair(Init, GV));
|
2001-10-19 04:05:37 +08:00
|
|
|
} else { // Yup, this is a duplicate!
|
2003-09-10 13:29:43 +08:00
|
|
|
// Make all uses of the duplicate constant use the canonical version...
|
2002-10-10 07:16:04 +08:00
|
|
|
GV->replaceAllUsesWith(I->second);
|
2001-10-19 04:05:37 +08:00
|
|
|
|
2002-06-25 23:55:29 +08:00
|
|
|
// Delete the global value from the module... and back up iterator to
|
|
|
|
// not skip the next global...
|
|
|
|
GV = --M.getGlobalList().erase(GV);
|
2001-10-19 04:05:37 +08:00
|
|
|
|
2002-05-10 23:38:35 +08:00
|
|
|
++NumMerged;
|
2001-10-19 04:05:37 +08:00
|
|
|
MadeChanges = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-25 23:55:29 +08:00
|
|
|
return MadeChanges;
|
2001-10-19 04:05:37 +08:00
|
|
|
}
|