Put all LLVM code into the llvm namespace, as per bug 109.
[oota-llvm.git] / lib / Transforms / IPO / RaiseAllocations.cpp
1 //===- RaiseAllocations.cpp - Convert %malloc & %free calls to insts ------===//
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 RaiseAllocations pass which convert malloc and free
11 // calls to malloc and free instructions.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Transforms/IPO.h"
16 #include "llvm/Module.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/iMemory.h"
19 #include "llvm/iTerminators.h"
20 #include "llvm/iOther.h"
21 #include "llvm/Pass.h"
22 #include "llvm/Support/CallSite.h"
23 #include "Support/Statistic.h"
24
25 namespace llvm {
26
27 namespace {
28   Statistic<> NumRaised("raiseallocs", "Number of allocations raised");
29
30   // RaiseAllocations - Turn %malloc and %free calls into the appropriate
31   // instruction.
32   //
33   class RaiseAllocations : public Pass {
34     Function *MallocFunc;   // Functions in the module we are processing
35     Function *FreeFunc;     // Initialized by doPassInitializationVirt
36   public:
37     RaiseAllocations() : MallocFunc(0), FreeFunc(0) {}
38     
39     // doPassInitialization - For the raise allocations pass, this finds a
40     // declaration for malloc and free if they exist.
41     //
42     void doInitialization(Module &M);
43     
44     // run - This method does the actual work of converting instructions over.
45     //
46     bool run(Module &M);
47   };
48   
49   RegisterOpt<RaiseAllocations>
50   X("raiseallocs", "Raise allocations from calls to instructions");
51 }  // end anonymous namespace
52
53
54 // createRaiseAllocationsPass - The interface to this file...
55 Pass *createRaiseAllocationsPass() {
56   return new RaiseAllocations();
57 }
58
59
60 // If the module has a symbol table, they might be referring to the malloc and
61 // free functions.  If this is the case, grab the method pointers that the
62 // module is using.
63 //
64 // Lookup %malloc and %free in the symbol table, for later use.  If they don't
65 // exist, or are not external, we do not worry about converting calls to that
66 // function into the appropriate instruction.
67 //
68 void RaiseAllocations::doInitialization(Module &M) {
69   const FunctionType *MallocType =   // Get the type for malloc
70     FunctionType::get(PointerType::get(Type::SByteTy),
71                     std::vector<const Type*>(1, Type::ULongTy), false);
72
73   const FunctionType *FreeType =     // Get the type for free
74     FunctionType::get(Type::VoidTy,
75                    std::vector<const Type*>(1, PointerType::get(Type::SByteTy)),
76                       false);
77
78   // Get Malloc and free prototypes if they exist!
79   MallocFunc = M.getFunction("malloc", MallocType);
80   FreeFunc   = M.getFunction("free"  , FreeType);
81
82   // Check to see if the prototype is wrong, giving us sbyte*(uint) * malloc
83   // This handles the common declaration of: 'void *malloc(unsigned);'
84   if (MallocFunc == 0) {
85     MallocType = FunctionType::get(PointerType::get(Type::SByteTy),
86                             std::vector<const Type*>(1, Type::UIntTy), false);
87     MallocFunc = M.getFunction("malloc", MallocType);
88   }
89
90   // Check to see if the prototype is missing, giving us sbyte*(...) * malloc
91   // This handles the common declaration of: 'void *malloc();'
92   if (MallocFunc == 0) {
93     MallocType = FunctionType::get(PointerType::get(Type::SByteTy),
94                                    std::vector<const Type*>(), true);
95     MallocFunc = M.getFunction("malloc", MallocType);
96   }
97
98   // Check to see if the prototype was forgotten, giving us void (...) * free
99   // This handles the common forward declaration of: 'void free();'
100   if (FreeFunc == 0) {
101     FreeType = FunctionType::get(Type::VoidTy, std::vector<const Type*>(),true);
102     FreeFunc = M.getFunction("free", FreeType);
103   }
104
105   // One last try, check to see if we can find free as 'int (...)* free'.  This
106   // handles the case where NOTHING was declared.
107   if (FreeFunc == 0) {
108     FreeType = FunctionType::get(Type::IntTy, std::vector<const Type*>(),true);
109     FreeFunc = M.getFunction("free", FreeType);
110   }
111
112   // Don't mess with locally defined versions of these functions...
113   if (MallocFunc && !MallocFunc->isExternal()) MallocFunc = 0;
114   if (FreeFunc && !FreeFunc->isExternal())     FreeFunc = 0;
115 }
116
117 // run - Transform calls into instructions...
118 //
119 bool RaiseAllocations::run(Module &M) {
120   // Find the malloc/free prototypes...
121   doInitialization(M);
122
123   bool Changed = false;
124
125   // First, process all of the malloc calls...
126   if (MallocFunc) {
127     std::vector<User*> Users(MallocFunc->use_begin(), MallocFunc->use_end());
128     while (!Users.empty()) {
129       if (Instruction *I = dyn_cast<Instruction>(Users.back())) {
130         CallSite CS = CallSite::get(I);
131         if (CS.getInstruction() && CS.getCalledFunction() == MallocFunc &&
132             CS.arg_begin() != CS.arg_end()) {
133           Value *Source = *CS.arg_begin();
134           
135           // If no prototype was provided for malloc, we may need to cast the
136           // source size.
137           if (Source->getType() != Type::UIntTy)
138             Source = new CastInst(Source, Type::UIntTy, "MallocAmtCast", I);
139           
140           std::string Name(I->getName()); I->setName("");
141           MallocInst *MI = new MallocInst(Type::SByteTy, Source, Name, I);
142           I->replaceAllUsesWith(MI);
143
144           // If the old instruction was an invoke, add an unconditional branch
145           // before the invoke, which will become the new terminator.
146           if (InvokeInst *II = dyn_cast<InvokeInst>(I))
147             new BranchInst(II->getNormalDest(), I);
148
149           // Delete the old call site
150           MI->getParent()->getInstList().erase(I);
151           Changed = true;
152           ++NumRaised;
153         }
154       }
155
156       Users.pop_back();
157     }
158   }
159
160   // Next, process all free calls...
161   if (FreeFunc) {
162     std::vector<User*> Users(FreeFunc->use_begin(), FreeFunc->use_end());
163
164     while (!Users.empty()) {
165       if (Instruction *I = dyn_cast<Instruction>(Users.back())) {
166         CallSite CS = CallSite::get(I);
167         if (CS.getInstruction() && CS.getCalledFunction() == FreeFunc &&
168             CS.arg_begin() != CS.arg_end()) {
169           
170           // If no prototype was provided for free, we may need to cast the
171           // source pointer.  This should be really uncommon, but it's necessary
172           // just in case we are dealing with wierd code like this:
173           //   free((long)ptr);
174           //
175           Value *Source = *CS.arg_begin();
176           if (!isa<PointerType>(Source->getType()))
177             Source = new CastInst(Source, PointerType::get(Type::SByteTy),
178                                   "FreePtrCast", I);
179           new FreeInst(Source, I);
180
181           // If the old instruction was an invoke, add an unconditional branch
182           // before the invoke, which will become the new terminator.
183           if (InvokeInst *II = dyn_cast<InvokeInst>(I))
184             new BranchInst(II->getNormalDest(), I);
185
186           // Delete the old call site
187           I->getParent()->getInstList().erase(I);
188           Changed = true;
189           ++NumRaised;
190         }
191       }
192       
193       Users.pop_back();
194     }
195   }
196
197   return Changed;
198 }
199
200 } // End llvm namespace