Chris Lattner | 03453a0 | 2002-05-07 19:04:39 +0000 | [diff] [blame] | 1 | //===- RaiseAllocations.cpp - Convert %malloc & %free calls to insts ------===// |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 03453a0 | 2002-05-07 19:04:39 +0000 | [diff] [blame] | 3 | // This file defines the RaiseAllocations pass which convert malloc and free |
| 4 | // calls to malloc and free instructions. |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 5 | // |
| 6 | //===----------------------------------------------------------------------===// |
| 7 | |
Chris Lattner | 42706e4 | 2002-07-23 22:04:17 +0000 | [diff] [blame] | 8 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 9 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
| 10 | #include "llvm/Module.h" |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 11 | #include "llvm/DerivedTypes.h" |
| 12 | #include "llvm/iMemory.h" |
| 13 | #include "llvm/iOther.h" |
| 14 | #include "llvm/Pass.h" |
Chris Lattner | bf3a099 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 15 | #include "Support/Statistic.h" |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 16 | |
| 17 | namespace { |
Chris Lattner | bf3a099 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 18 | Statistic<> NumRaised("raiseallocs", "Number of allocations raised"); |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 19 | |
Chris Lattner | bf3a099 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 20 | // RaiseAllocations - Turn %malloc and %free calls into the appropriate |
| 21 | // instruction. |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 22 | // |
Chris Lattner | bf3a099 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 23 | class RaiseAllocations : public BasicBlockPass { |
| 24 | Function *MallocFunc; // Functions in the module we are processing |
| 25 | Function *FreeFunc; // Initialized by doPassInitializationVirt |
| 26 | public: |
| 27 | RaiseAllocations() : MallocFunc(0), FreeFunc(0) {} |
| 28 | |
| 29 | // doPassInitialization - For the raise allocations pass, this finds a |
| 30 | // declaration for malloc and free if they exist. |
| 31 | // |
| 32 | bool doInitialization(Module &M); |
| 33 | |
| 34 | // runOnBasicBlock - This method does the actual work of converting |
| 35 | // instructions over, assuming that the pass has already been initialized. |
| 36 | // |
| 37 | bool runOnBasicBlock(BasicBlock &BB); |
| 38 | }; |
| 39 | |
Chris Lattner | c8b7092 | 2002-07-26 21:12:46 +0000 | [diff] [blame] | 40 | RegisterOpt<RaiseAllocations> |
| 41 | X("raiseallocs", "Raise allocations from calls to instructions"); |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 42 | } // end anonymous namespace |
| 43 | |
| 44 | |
| 45 | // createRaiseAllocationsPass - The interface to this file... |
| 46 | Pass *createRaiseAllocationsPass() { |
| 47 | return new RaiseAllocations(); |
| 48 | } |
| 49 | |
| 50 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 51 | bool RaiseAllocations::doInitialization(Module &M) { |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 52 | // If the module has a symbol table, they might be referring to the malloc |
| 53 | // and free functions. If this is the case, grab the method pointers that |
| 54 | // the module is using. |
| 55 | // |
| 56 | // Lookup %malloc and %free in the symbol table, for later use. If they |
| 57 | // don't exist, or are not external, we do not worry about converting calls |
| 58 | // to that function into the appropriate instruction. |
| 59 | // |
| 60 | const FunctionType *MallocType = // Get the type for malloc |
| 61 | FunctionType::get(PointerType::get(Type::SByteTy), |
Chris Lattner | dfe0418 | 2002-07-18 00:18:01 +0000 | [diff] [blame] | 62 | std::vector<const Type*>(1, Type::ULongTy), false); |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 63 | |
| 64 | const FunctionType *FreeType = // Get the type for free |
| 65 | FunctionType::get(Type::VoidTy, |
| 66 | std::vector<const Type*>(1, PointerType::get(Type::SByteTy)), |
| 67 | false); |
| 68 | |
Chris Lattner | dfe0418 | 2002-07-18 00:18:01 +0000 | [diff] [blame] | 69 | // Get Malloc and free prototypes if they exist! |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 70 | MallocFunc = M.getFunction("malloc", MallocType); |
| 71 | FreeFunc = M.getFunction("free" , FreeType); |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 72 | |
Chris Lattner | dfe0418 | 2002-07-18 00:18:01 +0000 | [diff] [blame] | 73 | // Check to see if the prototype is wrong, giving us sbyte*(uint) * malloc |
| 74 | // This handles the common declaration of: 'void *malloc(unsigned);' |
| 75 | if (MallocFunc == 0) { |
| 76 | MallocType = FunctionType::get(PointerType::get(Type::SByteTy), |
| 77 | std::vector<const Type*>(1, Type::UIntTy), false); |
| 78 | MallocFunc = M.getFunction("malloc", MallocType); |
| 79 | } |
| 80 | |
Chris Lattner | e3da298 | 2002-05-24 20:29:18 +0000 | [diff] [blame] | 81 | // Check to see if the prototype is missing, giving us sbyte*(...) * malloc |
Chris Lattner | dfe0418 | 2002-07-18 00:18:01 +0000 | [diff] [blame] | 82 | // This handles the common declaration of: 'void *malloc();' |
Chris Lattner | e3da298 | 2002-05-24 20:29:18 +0000 | [diff] [blame] | 83 | if (MallocFunc == 0) { |
| 84 | MallocType = FunctionType::get(PointerType::get(Type::SByteTy), |
| 85 | std::vector<const Type*>(), true); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 86 | MallocFunc = M.getFunction("malloc", MallocType); |
Chris Lattner | e3da298 | 2002-05-24 20:29:18 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | // Check to see if the prototype was forgotten, giving us void (...) * free |
| 90 | // This handles the common forward declaration of: 'void free();' |
| 91 | if (FreeFunc == 0) { |
| 92 | FreeType = FunctionType::get(Type::VoidTy, std::vector<const Type*>(),true); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 93 | FreeFunc = M.getFunction("free", FreeType); |
Chris Lattner | e3da298 | 2002-05-24 20:29:18 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Chris Lattner | 603e007 | 2003-08-11 15:05:08 +0000 | [diff] [blame] | 96 | // One last try, check to see if we can find free as 'int (...)* free'. This |
| 97 | // handles the case where NOTHING was declared. |
| 98 | if (FreeFunc == 0) { |
| 99 | FreeType = FunctionType::get(Type::IntTy, std::vector<const Type*>(),true); |
| 100 | FreeFunc = M.getFunction("free", FreeType); |
| 101 | } |
| 102 | |
Chris Lattner | e3da298 | 2002-05-24 20:29:18 +0000 | [diff] [blame] | 103 | |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 104 | // Don't mess with locally defined versions of these functions... |
| 105 | if (MallocFunc && !MallocFunc->isExternal()) MallocFunc = 0; |
| 106 | if (FreeFunc && !FreeFunc->isExternal()) FreeFunc = 0; |
| 107 | return false; |
| 108 | } |
| 109 | |
Chris Lattner | 03453a0 | 2002-05-07 19:04:39 +0000 | [diff] [blame] | 110 | // runOnBasicBlock - Process a basic block, fixing it up... |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 111 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 112 | bool RaiseAllocations::runOnBasicBlock(BasicBlock &BB) { |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 113 | bool Changed = false; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 114 | BasicBlock::InstListType &BIL = BB.getInstList(); |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 115 | |
Chris Lattner | a239e68 | 2002-09-10 22:38:47 +0000 | [diff] [blame] | 116 | for (BasicBlock::iterator BI = BB.begin(); BI != BB.end(); ++BI) { |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 117 | Instruction *I = BI; |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 118 | |
| 119 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 120 | if (CI->getCalledValue() == MallocFunc) { // Replace call to malloc? |
Chris Lattner | e3da298 | 2002-05-24 20:29:18 +0000 | [diff] [blame] | 121 | Value *Source = CI->getOperand(1); |
| 122 | |
| 123 | // If no prototype was provided for malloc, we may need to cast the |
| 124 | // source size. |
Chris Lattner | a239e68 | 2002-09-10 22:38:47 +0000 | [diff] [blame] | 125 | if (Source->getType() != Type::UIntTy) |
| 126 | Source = new CastInst(Source, Type::UIntTy, "MallocAmtCast", BI); |
Chris Lattner | e3da298 | 2002-05-24 20:29:18 +0000 | [diff] [blame] | 127 | |
Chris Lattner | a239e68 | 2002-09-10 22:38:47 +0000 | [diff] [blame] | 128 | std::string Name(CI->getName()); CI->setName(""); |
Chris Lattner | 322bf4f | 2002-09-13 22:28:45 +0000 | [diff] [blame] | 129 | BI = new MallocInst(Type::SByteTy, Source, Name, BI); |
Chris Lattner | 9674b86 | 2002-09-10 23:31:12 +0000 | [diff] [blame] | 130 | CI->replaceAllUsesWith(BI); |
Chris Lattner | a239e68 | 2002-09-10 22:38:47 +0000 | [diff] [blame] | 131 | BIL.erase(I); |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 132 | Changed = true; |
Chris Lattner | 0b18c1d | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 133 | ++NumRaised; |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 134 | } else if (CI->getCalledValue() == FreeFunc) { // Replace call to free? |
Chris Lattner | e3da298 | 2002-05-24 20:29:18 +0000 | [diff] [blame] | 135 | // If no prototype was provided for free, we may need to cast the |
Misha Brukman | 7eb05a1 | 2003-08-18 14:43:39 +0000 | [diff] [blame] | 136 | // source pointer. This should be really uncommon, but it's necessary |
Chris Lattner | e3da298 | 2002-05-24 20:29:18 +0000 | [diff] [blame] | 137 | // just in case we are dealing with wierd code like this: |
| 138 | // free((long)ptr); |
| 139 | // |
| 140 | Value *Source = CI->getOperand(1); |
Chris Lattner | a239e68 | 2002-09-10 22:38:47 +0000 | [diff] [blame] | 141 | if (!isa<PointerType>(Source->getType())) |
| 142 | Source = new CastInst(Source, PointerType::get(Type::SByteTy), |
| 143 | "FreePtrCast", BI); |
| 144 | BI = new FreeInst(Source, BI); |
| 145 | BIL.erase(I); |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 146 | Changed = true; |
Chris Lattner | 0b18c1d | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 147 | ++NumRaised; |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 148 | } |
| 149 | } |
Chris Lattner | 77f791d | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | return Changed; |
| 153 | } |