Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 1 | //===- LowerAllocations.cpp - Reduce malloc & free insts to calls ---------===// |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 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 | //===----------------------------------------------------------------------===// |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 9 | // |
Misha Brukman | 7c791ed | 2004-01-28 20:43:01 +0000 | [diff] [blame] | 10 | // The LowerAllocations transformation is a target-dependent tranformation |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 11 | // because it depends on the size of data types and alignment constraints. |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chris Lattner | e9ee3e5 | 2002-07-23 22:04:17 +0000 | [diff] [blame] | 15 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | 793c6b8 | 2002-01-31 00:45:11 +0000 | [diff] [blame] | 16 | #include "llvm/Module.h" |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 17 | #include "llvm/DerivedTypes.h" |
Misha Brukman | 47b14a4 | 2004-07-29 17:30:56 +0000 | [diff] [blame] | 18 | #include "llvm/Instructions.h" |
Chris Lattner | 497c60c | 2002-05-07 18:12:18 +0000 | [diff] [blame] | 19 | #include "llvm/Constants.h" |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 20 | #include "llvm/Pass.h" |
Chris Lattner | a92f696 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 21 | #include "Support/Statistic.h" |
Chris Lattner | d745602 | 2004-01-09 06:02:20 +0000 | [diff] [blame] | 22 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 23 | |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 24 | namespace { |
Chris Lattner | a92f696 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 25 | Statistic<> NumLowered("lowerallocs", "Number of allocations lowered"); |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 26 | |
Chris Lattner | 3b2106f | 2002-09-25 23:47:47 +0000 | [diff] [blame] | 27 | /// LowerAllocations - Turn malloc and free instructions into %malloc and |
| 28 | /// %free calls. |
| 29 | /// |
| 30 | class LowerAllocations : public BasicBlockPass { |
| 31 | Function *MallocFunc; // Functions in the module we are processing |
| 32 | Function *FreeFunc; // Initialized by doInitialization |
| 33 | public: |
| 34 | LowerAllocations() : MallocFunc(0), FreeFunc(0) {} |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 35 | |
Chris Lattner | 3b2106f | 2002-09-25 23:47:47 +0000 | [diff] [blame] | 36 | /// doPassInitialization - For the lower allocations pass, this ensures that |
| 37 | /// a module contains a declaration for a malloc and a free function. |
| 38 | /// |
| 39 | bool doInitialization(Module &M); |
| 40 | |
| 41 | /// runOnBasicBlock - This method does the actual work of converting |
| 42 | /// instructions over, assuming that the pass has already been initialized. |
| 43 | /// |
| 44 | bool runOnBasicBlock(BasicBlock &BB); |
| 45 | }; |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 46 | |
Chris Lattner | 3b2106f | 2002-09-25 23:47:47 +0000 | [diff] [blame] | 47 | RegisterOpt<LowerAllocations> |
| 48 | X("lowerallocs", "Lower allocations from instructions to calls"); |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 49 | } |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 50 | |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 51 | // createLowerAllocationsPass - Interface to this file... |
Chris Lattner | d745602 | 2004-01-09 06:02:20 +0000 | [diff] [blame] | 52 | FunctionPass *llvm::createLowerAllocationsPass() { |
Chris Lattner | 3b2106f | 2002-09-25 23:47:47 +0000 | [diff] [blame] | 53 | return new LowerAllocations(); |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 54 | } |
Chris Lattner | 96c466b | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 56 | |
Chris Lattner | f4de63f | 2002-01-21 07:31:50 +0000 | [diff] [blame] | 57 | // doInitialization - For the lower allocations pass, this ensures that a |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 58 | // module contains a declaration for a malloc and a free function. |
| 59 | // |
| 60 | // This function is always successful. |
| 61 | // |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 62 | bool LowerAllocations::doInitialization(Module &M) { |
Chris Lattner | 7d8a86a | 2003-08-31 00:22:27 +0000 | [diff] [blame] | 63 | const Type *SBPTy = PointerType::get(Type::SByteTy); |
Chris Lattner | b99df4f | 2004-02-28 18:51:45 +0000 | [diff] [blame] | 64 | MallocFunc = M.getNamedFunction("malloc"); |
| 65 | FreeFunc = M.getNamedFunction("free"); |
| 66 | |
| 67 | if (MallocFunc == 0) |
| 68 | MallocFunc = M.getOrInsertFunction("malloc", SBPTy, Type::UIntTy, 0); |
| 69 | if (FreeFunc == 0) |
| 70 | FreeFunc = M.getOrInsertFunction("free" , Type::VoidTy, SBPTy, 0); |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 71 | |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 72 | return true; |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 73 | } |
| 74 | |
Chris Lattner | 8bfc2f1 | 2004-07-15 01:08:08 +0000 | [diff] [blame] | 75 | static Constant *getSizeof(const Type *Ty) { |
| 76 | Constant *Ret = ConstantPointerNull::get(PointerType::get(Ty)); |
| 77 | std::vector<Constant*> Idx; |
| 78 | Idx.push_back(ConstantUInt::get(Type::UIntTy, 1)); |
| 79 | Ret = ConstantExpr::getGetElementPtr(Ret, Idx); |
| 80 | return ConstantExpr::getCast(Ret, Type::UIntTy); |
| 81 | } |
| 82 | |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 83 | // runOnBasicBlock - This method does the actual work of converting |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 84 | // instructions over, assuming that the pass has already been initialized. |
| 85 | // |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 86 | bool LowerAllocations::runOnBasicBlock(BasicBlock &BB) { |
Chris Lattner | 42c9c2c | 2001-10-18 05:27:33 +0000 | [diff] [blame] | 87 | bool Changed = false; |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 88 | assert(MallocFunc && FreeFunc && "Pass not initialized!"); |
| 89 | |
| 90 | BasicBlock::InstListType &BBIL = BB.getInstList(); |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 91 | |
| 92 | // Loop over all of the instructions, looking for malloc or free instructions |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 93 | for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I) { |
Chris Lattner | e408e25 | 2003-04-23 16:37:45 +0000 | [diff] [blame] | 94 | if (MallocInst *MI = dyn_cast<MallocInst>(I)) { |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 95 | const Type *AllocTy = MI->getType()->getElementType(); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 96 | |
Chris Lattner | 8bfc2f1 | 2004-07-15 01:08:08 +0000 | [diff] [blame] | 97 | // malloc(type) becomes sbyte *malloc(size) |
| 98 | Value *MallocArg = getSizeof(AllocTy); |
| 99 | if (MI->isArrayAllocation()) { |
| 100 | if (isa<ConstantUInt>(MallocArg) && |
| 101 | cast<ConstantUInt>(MallocArg)->getValue() == 1) { |
| 102 | MallocArg = MI->getOperand(0); // Operand * 1 = Operand |
| 103 | } else if (Constant *CO = dyn_cast<Constant>(MI->getOperand(0))) { |
| 104 | MallocArg = ConstantExpr::getMul(CO, cast<Constant>(MallocArg)); |
| 105 | } else { |
| 106 | // Multiply it by the array size if necessary... |
| 107 | MallocArg = BinaryOperator::create(Instruction::Mul, |
| 108 | MI->getOperand(0), |
| 109 | MallocArg, "", I); |
| 110 | } |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 111 | } |
Chris Lattner | b99df4f | 2004-02-28 18:51:45 +0000 | [diff] [blame] | 112 | |
| 113 | const FunctionType *MallocFTy = MallocFunc->getFunctionType(); |
| 114 | std::vector<Value*> MallocArgs; |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 115 | |
Chris Lattner | b99df4f | 2004-02-28 18:51:45 +0000 | [diff] [blame] | 116 | if (MallocFTy->getNumParams() > 0 || MallocFTy->isVarArg()) { |
| 117 | if (MallocFTy->getNumParams() > 0 && |
| 118 | MallocFTy->getParamType(0) != Type::UIntTy) |
| 119 | MallocArg = new CastInst(MallocArg, MallocFTy->getParamType(0), "",I); |
| 120 | MallocArgs.push_back(MallocArg); |
| 121 | } |
| 122 | |
| 123 | // If malloc is prototyped to take extra arguments, pass nulls. |
| 124 | for (unsigned i = 1; i < MallocFTy->getNumParams(); ++i) |
| 125 | MallocArgs.push_back(Constant::getNullValue(MallocFTy->getParamType(i))); |
| 126 | |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 127 | // Create the call to Malloc... |
Chris Lattner | b99df4f | 2004-02-28 18:51:45 +0000 | [diff] [blame] | 128 | CallInst *MCall = new CallInst(MallocFunc, MallocArgs, "", I); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 129 | |
| 130 | // Create a cast instruction to convert to the right type... |
Chris Lattner | b99df4f | 2004-02-28 18:51:45 +0000 | [diff] [blame] | 131 | Value *MCast; |
| 132 | if (MCall->getType() != Type::VoidTy) |
| 133 | MCast = new CastInst(MCall, MI->getType(), "", I); |
| 134 | else |
| 135 | MCast = Constant::getNullValue(MI->getType()); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 136 | |
| 137 | // Replace all uses of the old malloc inst with the cast inst |
| 138 | MI->replaceAllUsesWith(MCast); |
Chris Lattner | 1d608ab | 2002-09-10 22:38:47 +0000 | [diff] [blame] | 139 | I = --BBIL.erase(I); // remove and delete the malloc instr... |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 140 | Changed = true; |
Chris Lattner | 3dec1f2 | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 141 | ++NumLowered; |
Chris Lattner | e408e25 | 2003-04-23 16:37:45 +0000 | [diff] [blame] | 142 | } else if (FreeInst *FI = dyn_cast<FreeInst>(I)) { |
Chris Lattner | b99df4f | 2004-02-28 18:51:45 +0000 | [diff] [blame] | 143 | const FunctionType *FreeFTy = FreeFunc->getFunctionType(); |
| 144 | std::vector<Value*> FreeArgs; |
| 145 | |
| 146 | if (FreeFTy->getNumParams() > 0 || FreeFTy->isVarArg()) { |
| 147 | Value *MCast = FI->getOperand(0); |
| 148 | if (FreeFTy->getNumParams() > 0 && |
| 149 | FreeFTy->getParamType(0) != MCast->getType()) |
| 150 | MCast = new CastInst(MCast, FreeFTy->getParamType(0), "", I); |
| 151 | FreeArgs.push_back(MCast); |
| 152 | } |
| 153 | |
| 154 | // If malloc is prototyped to take extra arguments, pass nulls. |
| 155 | for (unsigned i = 1; i < FreeFTy->getNumParams(); ++i) |
| 156 | FreeArgs.push_back(Constant::getNullValue(FreeFTy->getParamType(i))); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 157 | |
| 158 | // Insert a call to the free function... |
Chris Lattner | b99df4f | 2004-02-28 18:51:45 +0000 | [diff] [blame] | 159 | new CallInst(FreeFunc, FreeArgs, "", I); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 160 | |
| 161 | // Delete the old free instruction |
Chris Lattner | 1d608ab | 2002-09-10 22:38:47 +0000 | [diff] [blame] | 162 | I = --BBIL.erase(I); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 163 | Changed = true; |
Chris Lattner | 3dec1f2 | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 164 | ++NumLowered; |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | |
Chris Lattner | 42c9c2c | 2001-10-18 05:27:33 +0000 | [diff] [blame] | 168 | return Changed; |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 169 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 170 | |