blob: 0951c731e1ce007974a4cd61b7f6d99f4486ba31 [file] [log] [blame]
Chris Lattner4816d632001-10-18 20:05:37 +00001//===- ConstantMerge.cpp - Merge duplicate global constants -----------------=//
2//
3// This file defines the interface to a pass that merges duplicate global
4// constants together into a single constant that is shared. This is useful
5// because some passes (ie TraceValues) insert a lot of string constants into
6// the program, regardless of whether or not they duplicate an existing string.
7//
8// Algorithm: ConstantMerge is designed to build up a map of available constants
9// and elminate duplicates when it is initialized.
10//
11// The DynamicConstantMerge method is a superset of the ConstantMerge algorithm
12// that checks for each method to see if constants have been added to the
13// constant pool since it was last run... if so, it processes them.
14//
15//===----------------------------------------------------------------------===//
16
17#include "llvm/Transforms/ConstantMerge.h"
18#include "llvm/GlobalVariable.h"
Chris Lattnerd5d56782002-01-31 00:45:11 +000019#include "llvm/Module.h"
20#include "llvm/Method.h"
Chris Lattner4816d632001-10-18 20:05:37 +000021
22// mergeDuplicateConstants - Workhorse for the pass. This eliminates duplicate
23// constants, starting at global ConstantNo, and adds vars to the map if they
24// are new and unique.
25//
26static inline
27bool mergeDuplicateConstants(Module *M, unsigned &ConstantNo,
Chris Lattner7f74a562002-01-20 22:54:45 +000028 std::map<Constant*, GlobalVariable*> &CMap) {
Chris Lattner4816d632001-10-18 20:05:37 +000029 Module::GlobalListType &GList = M->getGlobalList();
30 if (GList.size() <= ConstantNo) return false; // No new constants
31 bool MadeChanges = false;
32
33 for (; ConstantNo < GList.size(); ++ConstantNo) {
34 GlobalVariable *GV = GList[ConstantNo];
35 if (GV->isConstant()) { // Only process constants
36 assert(GV->hasInitializer() && "Globals constants must have inits!");
Chris Lattner3462ae32001-12-03 22:26:30 +000037 Constant *Init = GV->getInitializer();
Chris Lattner4816d632001-10-18 20:05:37 +000038
39 // Check to see if the initializer is already known...
Chris Lattner7f74a562002-01-20 22:54:45 +000040 std::map<Constant*, GlobalVariable*>::iterator I = CMap.find(Init);
Chris Lattner4816d632001-10-18 20:05:37 +000041
42 if (I == CMap.end()) { // Nope, add it to the map
Chris Lattner7f74a562002-01-20 22:54:45 +000043 CMap.insert(std::make_pair(Init, GV));
Chris Lattner4816d632001-10-18 20:05:37 +000044 } else { // Yup, this is a duplicate!
45 // Make all uses of the duplicate constant use the cannonical version...
46 GV->replaceAllUsesWith(I->second);
47
48 // Remove and delete the global value from the module...
49 delete GList.remove(GList.begin()+ConstantNo);
50
51 --ConstantNo; // Don't skip the next constant.
52 MadeChanges = true;
53 }
54 }
55 }
56 return MadeChanges;
57}
58
59
60// mergeDuplicateConstants - Static accessor for clients that don't want to
61// deal with passes.
62//
63bool ConstantMerge::mergeDuplicateConstants(Module *M) {
Chris Lattner7f74a562002-01-20 22:54:45 +000064 std::map<Constant*, GlobalVariable*> Constants;
Chris Lattner4816d632001-10-18 20:05:37 +000065 unsigned LastConstantSeen = 0;
66 return ::mergeDuplicateConstants(M, LastConstantSeen, Constants);
67}
68
69
Chris Lattner0686e432002-01-21 07:31:50 +000070// doInitialization - For this pass, process all of the globals in the
Chris Lattner4816d632001-10-18 20:05:37 +000071// module, eliminating duplicate constants.
72//
Chris Lattner0686e432002-01-21 07:31:50 +000073bool ConstantMerge::doInitialization(Module *M) {
Chris Lattner4816d632001-10-18 20:05:37 +000074 return ::mergeDuplicateConstants(M, LastConstantSeen, Constants);
75}
76
77// doPerMethodWork - Check to see if any globals have been added to the
78// global list for the module. If so, eliminate them.
79//
Chris Lattner0686e432002-01-21 07:31:50 +000080bool DynamicConstantMerge::runOnMethod(Method *M) {
Chris Lattner4816d632001-10-18 20:05:37 +000081 return ::mergeDuplicateConstants(M->getParent(), LastConstantSeen, Constants);
82}