blob: 81abda0006758c4cb652f675035b9f7bede874f6 [file] [log] [blame]
Chris Lattner03453a02002-05-07 19:04:39 +00001//===- RaiseAllocations.cpp - Convert %malloc & %free calls to insts ------===//
John Criswell482202a2003-10-20 19:43:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner77f791d2002-05-07 19:02:48 +00009//
Chris Lattner03453a02002-05-07 19:04:39 +000010// This file defines the RaiseAllocations pass which convert malloc and free
11// calls to malloc and free instructions.
Chris Lattner77f791d2002-05-07 19:02:48 +000012//
13//===----------------------------------------------------------------------===//
14
Chris Lattner8ef1b882003-09-01 03:14:56 +000015#include "llvm/Transforms/IPO.h"
Chris Lattner77f791d2002-05-07 19:02:48 +000016#include "llvm/Module.h"
Chris Lattner77f791d2002-05-07 19:02:48 +000017#include "llvm/DerivedTypes.h"
18#include "llvm/iMemory.h"
Chris Lattner39f398b2003-09-16 19:42:21 +000019#include "llvm/iTerminators.h"
Chris Lattner77f791d2002-05-07 19:02:48 +000020#include "llvm/iOther.h"
21#include "llvm/Pass.h"
Chris Lattner8ef1b882003-09-01 03:14:56 +000022#include "llvm/Support/CallSite.h"
Chris Lattnerbf3a0992002-10-01 22:38:41 +000023#include "Support/Statistic.h"
Chris Lattner77f791d2002-05-07 19:02:48 +000024
25namespace {
Chris Lattnerbf3a0992002-10-01 22:38:41 +000026 Statistic<> NumRaised("raiseallocs", "Number of allocations raised");
Chris Lattner77f791d2002-05-07 19:02:48 +000027
Chris Lattnerbf3a0992002-10-01 22:38:41 +000028 // RaiseAllocations - Turn %malloc and %free calls into the appropriate
29 // instruction.
Chris Lattner77f791d2002-05-07 19:02:48 +000030 //
Chris Lattner8ef1b882003-09-01 03:14:56 +000031 class RaiseAllocations : public Pass {
Chris Lattnerbf3a0992002-10-01 22:38:41 +000032 Function *MallocFunc; // Functions in the module we are processing
33 Function *FreeFunc; // Initialized by doPassInitializationVirt
34 public:
35 RaiseAllocations() : MallocFunc(0), FreeFunc(0) {}
36
37 // doPassInitialization - For the raise allocations pass, this finds a
38 // declaration for malloc and free if they exist.
39 //
Chris Lattner8ef1b882003-09-01 03:14:56 +000040 void doInitialization(Module &M);
Chris Lattnerbf3a0992002-10-01 22:38:41 +000041
Chris Lattner8ef1b882003-09-01 03:14:56 +000042 // run - This method does the actual work of converting instructions over.
Chris Lattnerbf3a0992002-10-01 22:38:41 +000043 //
Chris Lattner8ef1b882003-09-01 03:14:56 +000044 bool run(Module &M);
Chris Lattnerbf3a0992002-10-01 22:38:41 +000045 };
46
Chris Lattnerc8b70922002-07-26 21:12:46 +000047 RegisterOpt<RaiseAllocations>
48 X("raiseallocs", "Raise allocations from calls to instructions");
Chris Lattner77f791d2002-05-07 19:02:48 +000049} // end anonymous namespace
50
51
52// createRaiseAllocationsPass - The interface to this file...
53Pass *createRaiseAllocationsPass() {
54 return new RaiseAllocations();
55}
56
57
Chris Lattner8ef1b882003-09-01 03:14:56 +000058// If the module has a symbol table, they might be referring to the malloc and
59// free functions. If this is the case, grab the method pointers that the
60// module is using.
61//
62// Lookup %malloc and %free in the symbol table, for later use. If they don't
63// exist, or are not external, we do not worry about converting calls to that
64// function into the appropriate instruction.
65//
66void RaiseAllocations::doInitialization(Module &M) {
Chris Lattner77f791d2002-05-07 19:02:48 +000067 const FunctionType *MallocType = // Get the type for malloc
68 FunctionType::get(PointerType::get(Type::SByteTy),
Chris Lattnerdfe04182002-07-18 00:18:01 +000069 std::vector<const Type*>(1, Type::ULongTy), false);
Chris Lattner77f791d2002-05-07 19:02:48 +000070
71 const FunctionType *FreeType = // Get the type for free
72 FunctionType::get(Type::VoidTy,
73 std::vector<const Type*>(1, PointerType::get(Type::SByteTy)),
74 false);
75
Chris Lattnerdfe04182002-07-18 00:18:01 +000076 // Get Malloc and free prototypes if they exist!
Chris Lattner113f4f42002-06-25 16:13:24 +000077 MallocFunc = M.getFunction("malloc", MallocType);
78 FreeFunc = M.getFunction("free" , FreeType);
Chris Lattner77f791d2002-05-07 19:02:48 +000079
Chris Lattnerdfe04182002-07-18 00:18:01 +000080 // Check to see if the prototype is wrong, giving us sbyte*(uint) * malloc
81 // This handles the common declaration of: 'void *malloc(unsigned);'
82 if (MallocFunc == 0) {
83 MallocType = FunctionType::get(PointerType::get(Type::SByteTy),
84 std::vector<const Type*>(1, Type::UIntTy), false);
85 MallocFunc = M.getFunction("malloc", MallocType);
86 }
87
Chris Lattnere3da2982002-05-24 20:29:18 +000088 // Check to see if the prototype is missing, giving us sbyte*(...) * malloc
Chris Lattnerdfe04182002-07-18 00:18:01 +000089 // This handles the common declaration of: 'void *malloc();'
Chris Lattnere3da2982002-05-24 20:29:18 +000090 if (MallocFunc == 0) {
91 MallocType = FunctionType::get(PointerType::get(Type::SByteTy),
92 std::vector<const Type*>(), true);
Chris Lattner113f4f42002-06-25 16:13:24 +000093 MallocFunc = M.getFunction("malloc", MallocType);
Chris Lattnere3da2982002-05-24 20:29:18 +000094 }
95
96 // Check to see if the prototype was forgotten, giving us void (...) * free
97 // This handles the common forward declaration of: 'void free();'
98 if (FreeFunc == 0) {
99 FreeType = FunctionType::get(Type::VoidTy, std::vector<const Type*>(),true);
Chris Lattner113f4f42002-06-25 16:13:24 +0000100 FreeFunc = M.getFunction("free", FreeType);
Chris Lattnere3da2982002-05-24 20:29:18 +0000101 }
102
Chris Lattner603e0072003-08-11 15:05:08 +0000103 // One last try, check to see if we can find free as 'int (...)* free'. This
104 // handles the case where NOTHING was declared.
105 if (FreeFunc == 0) {
106 FreeType = FunctionType::get(Type::IntTy, std::vector<const Type*>(),true);
107 FreeFunc = M.getFunction("free", FreeType);
108 }
109
Chris Lattner77f791d2002-05-07 19:02:48 +0000110 // Don't mess with locally defined versions of these functions...
111 if (MallocFunc && !MallocFunc->isExternal()) MallocFunc = 0;
112 if (FreeFunc && !FreeFunc->isExternal()) FreeFunc = 0;
Chris Lattner77f791d2002-05-07 19:02:48 +0000113}
114
Chris Lattner8ef1b882003-09-01 03:14:56 +0000115// run - Transform calls into instructions...
Chris Lattner77f791d2002-05-07 19:02:48 +0000116//
Chris Lattner8ef1b882003-09-01 03:14:56 +0000117bool RaiseAllocations::run(Module &M) {
118 // Find the malloc/free prototypes...
119 doInitialization(M);
120
Chris Lattner77f791d2002-05-07 19:02:48 +0000121 bool Changed = false;
Chris Lattner77f791d2002-05-07 19:02:48 +0000122
Chris Lattner8ef1b882003-09-01 03:14:56 +0000123 // First, process all of the malloc calls...
124 if (MallocFunc) {
125 std::vector<User*> Users(MallocFunc->use_begin(), MallocFunc->use_end());
126 while (!Users.empty()) {
127 if (Instruction *I = dyn_cast<Instruction>(Users.back())) {
128 CallSite CS = CallSite::get(I);
129 if (CS.getInstruction() && CS.getCalledFunction() == MallocFunc &&
130 CS.arg_begin() != CS.arg_end()) {
131 Value *Source = *CS.arg_begin();
132
133 // If no prototype was provided for malloc, we may need to cast the
134 // source size.
135 if (Source->getType() != Type::UIntTy)
136 Source = new CastInst(Source, Type::UIntTy, "MallocAmtCast", I);
137
138 std::string Name(I->getName()); I->setName("");
139 MallocInst *MI = new MallocInst(Type::SByteTy, Source, Name, I);
140 I->replaceAllUsesWith(MI);
Chris Lattner39f398b2003-09-16 19:42:21 +0000141
142 // If the old instruction was an invoke, add an unconditional branch
143 // before the invoke, which will become the new terminator.
144 if (InvokeInst *II = dyn_cast<InvokeInst>(I))
145 new BranchInst(II->getNormalDest(), I);
146
147 // Delete the old call site
Chris Lattner8ef1b882003-09-01 03:14:56 +0000148 MI->getParent()->getInstList().erase(I);
149 Changed = true;
150 ++NumRaised;
151 }
Chris Lattner77f791d2002-05-07 19:02:48 +0000152 }
Chris Lattner8ef1b882003-09-01 03:14:56 +0000153
154 Users.pop_back();
155 }
156 }
157
158 // Next, process all free calls...
159 if (FreeFunc) {
160 std::vector<User*> Users(FreeFunc->use_begin(), FreeFunc->use_end());
161
162 while (!Users.empty()) {
163 if (Instruction *I = dyn_cast<Instruction>(Users.back())) {
164 CallSite CS = CallSite::get(I);
165 if (CS.getInstruction() && CS.getCalledFunction() == FreeFunc &&
166 CS.arg_begin() != CS.arg_end()) {
167
168 // If no prototype was provided for free, we may need to cast the
169 // source pointer. This should be really uncommon, but it's necessary
170 // just in case we are dealing with wierd code like this:
171 // free((long)ptr);
172 //
173 Value *Source = *CS.arg_begin();
174 if (!isa<PointerType>(Source->getType()))
175 Source = new CastInst(Source, PointerType::get(Type::SByteTy),
176 "FreePtrCast", I);
177 new FreeInst(Source, I);
Chris Lattner39f398b2003-09-16 19:42:21 +0000178
179 // If the old instruction was an invoke, add an unconditional branch
180 // before the invoke, which will become the new terminator.
181 if (InvokeInst *II = dyn_cast<InvokeInst>(I))
182 new BranchInst(II->getNormalDest(), I);
183
184 // Delete the old call site
Chris Lattner8ef1b882003-09-01 03:14:56 +0000185 I->getParent()->getInstList().erase(I);
186 Changed = true;
187 ++NumRaised;
188 }
189 }
190
191 Users.pop_back();
Chris Lattner77f791d2002-05-07 19:02:48 +0000192 }
Chris Lattner77f791d2002-05-07 19:02:48 +0000193 }
194
195 return Changed;
196}