Finegrainify namespacification
[oota-llvm.git] / lib / Transforms / IPO / ConstantMerge.cpp
1 //===- ConstantMerge.cpp - Merge duplicate global constants ---------------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interface to a pass that merges duplicate global
11 // constants together into a single constant that is shared.  This is useful
12 // because some passes (ie TraceValues) insert a lot of string constants into
13 // the program, regardless of whether or not an existing string is available.
14 //
15 // Algorithm: ConstantMerge is designed to build up a map of available constants
16 // and eliminate duplicates when it is initialized.
17 //
18 //===----------------------------------------------------------------------===//
19
20 #include "llvm/Transforms/IPO.h"
21 #include "llvm/Module.h"
22 #include "llvm/Pass.h"
23 #include "Support/Statistic.h"
24 using namespace llvm;
25
26 namespace {
27   Statistic<> NumMerged("constmerge", "Number of global constants merged");
28
29   struct ConstantMerge : public Pass {
30     // run - For this pass, process all of the globals in the module,
31     // eliminating duplicate constants.
32     //
33     bool run(Module &M);
34   };
35
36   RegisterOpt<ConstantMerge> X("constmerge","Merge Duplicate Global Constants");
37 }
38
39 Pass *llvm::createConstantMergePass() { return new ConstantMerge(); }
40
41 bool ConstantMerge::run(Module &M) {
42   std::map<Constant*, GlobalVariable*> CMap;
43   bool MadeChanges = false;
44   
45   for (Module::giterator GV = M.gbegin(), E = M.gend(); GV != E; ++GV)
46     // Only process constants with initializers
47     if (GV->isConstant() && GV->hasInitializer()) {
48       Constant *Init = GV->getInitializer();
49
50       // Check to see if the initializer is already known...
51       std::map<Constant*, GlobalVariable*>::iterator I = CMap.find(Init);
52
53       if (I == CMap.end()) {    // Nope, add it to the map
54         CMap.insert(I, std::make_pair(Init, GV));
55       } else if (GV->hasInternalLinkage()) {    // Yup, this is a duplicate!
56         // Make all uses of the duplicate constant use the canonical version...
57         GV->replaceAllUsesWith(I->second);
58         
59         // Delete the global value from the module... and back up iterator to
60         // not skip the next global...
61         GV = --M.getGlobalList().erase(GV);
62
63         ++NumMerged;
64         MadeChanges = true;
65       } else if (I->second->hasInternalLinkage()) {
66         // Make all uses of the duplicate constant use the canonical version...
67         I->second->replaceAllUsesWith(GV);
68         
69         // Delete the global value from the module... and back up iterator to
70         // not skip the next global...
71         M.getGlobalList().erase(I->second);
72         I->second = GV;
73
74         ++NumMerged;
75         MadeChanges = true;
76       }
77     }
78
79   return MadeChanges;
80 }
81