Added LLVM project notice to the top of every C++ source file.
[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
25 namespace {
26   Statistic<> NumMerged("constmerge", "Number of global constants merged");
27
28   struct ConstantMerge : public Pass {
29     // run - For this pass, process all of the globals in the module,
30     // eliminating duplicate constants.
31     //
32     bool run(Module &M);
33   };
34
35   RegisterOpt<ConstantMerge> X("constmerge","Merge Duplicate Global Constants");
36 }
37
38 Pass *createConstantMergePass() { return new ConstantMerge(); }
39
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 {                  // 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       }
66     }
67
68   return MadeChanges;
69 }