Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 1 | //===- LowerAllocations.cpp - Reduce malloc & free insts to calls ---------===// |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 3 | // The LowerAllocations transformation is a target dependant tranformation |
| 4 | // because it depends on the size of data types and alignment constraints. |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 5 | // |
| 6 | //===----------------------------------------------------------------------===// |
| 7 | |
Chris Lattner | d7db863 | 2002-01-22 01:04:08 +0000 | [diff] [blame] | 8 | #include "llvm/Transforms/ChangeAllocations.h" |
Chris Lattner | 793c6b8 | 2002-01-31 00:45:11 +0000 | [diff] [blame] | 9 | #include "llvm/Module.h" |
Chris Lattner | 0ac5429 | 2002-04-09 19:08:28 +0000 | [diff] [blame] | 10 | #include "llvm/Function.h" |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 11 | #include "llvm/BasicBlock.h" |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 12 | #include "llvm/DerivedTypes.h" |
| 13 | #include "llvm/iMemory.h" |
| 14 | #include "llvm/iOther.h" |
Chris Lattner | 497c60c | 2002-05-07 18:12:18 +0000 | [diff] [blame] | 15 | #include "llvm/Constants.h" |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 16 | #include "llvm/Pass.h" |
Chris Lattner | 497c60c | 2002-05-07 18:12:18 +0000 | [diff] [blame] | 17 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 3dec1f2 | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 18 | #include "Support/StatisticReporter.h" |
| 19 | |
| 20 | static Statistic<> NumLowered("lowerallocs\t- Number of allocations lowered"); |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 21 | using std::vector; |
| 22 | |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 23 | namespace { |
| 24 | |
| 25 | // LowerAllocations - Turn malloc and free instructions into %malloc and %free |
| 26 | // calls. |
| 27 | // |
| 28 | class LowerAllocations : public BasicBlockPass { |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 29 | Function *MallocFunc; // Functions in the module we are processing |
| 30 | Function *FreeFunc; // Initialized by doInitialization |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 31 | |
| 32 | const TargetData &DataLayout; |
| 33 | public: |
| 34 | inline LowerAllocations(const TargetData &TD) : DataLayout(TD) { |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 35 | MallocFunc = FreeFunc = 0; |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 36 | } |
| 37 | |
Chris Lattner | 96c466b | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 38 | const char *getPassName() const { return "Lower Allocations"; } |
| 39 | |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 40 | // doPassInitialization - For the lower allocations pass, this ensures that a |
| 41 | // module contains a declaration for a malloc and a free function. |
| 42 | // |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 43 | bool doInitialization(Module &M); |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 44 | |
| 45 | // runOnBasicBlock - This method does the actual work of converting |
| 46 | // instructions over, assuming that the pass has already been initialized. |
| 47 | // |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 48 | bool runOnBasicBlock(BasicBlock &BB); |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 49 | }; |
| 50 | |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 51 | } |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 52 | |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 53 | // createLowerAllocationsPass - Interface to this file... |
| 54 | Pass *createLowerAllocationsPass(const TargetData &TD) { |
| 55 | return new LowerAllocations(TD); |
| 56 | } |
Chris Lattner | 96c466b | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 57 | |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 58 | |
Chris Lattner | f4de63f | 2002-01-21 07:31:50 +0000 | [diff] [blame] | 59 | // doInitialization - For the lower allocations pass, this ensures that a |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 60 | // module contains a declaration for a malloc and a free function. |
| 61 | // |
| 62 | // This function is always successful. |
| 63 | // |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 64 | bool LowerAllocations::doInitialization(Module &M) { |
Chris Lattner | be591a7 | 2002-03-29 03:38:05 +0000 | [diff] [blame] | 65 | const FunctionType *MallocType = |
| 66 | FunctionType::get(PointerType::get(Type::SByteTy), |
| 67 | vector<const Type*>(1, Type::UIntTy), false); |
| 68 | const FunctionType *FreeType = |
| 69 | FunctionType::get(Type::VoidTy, |
| 70 | vector<const Type*>(1, PointerType::get(Type::SByteTy)), |
| 71 | false); |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 72 | |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 73 | MallocFunc = M.getOrInsertFunction("malloc", MallocType); |
| 74 | FreeFunc = M.getOrInsertFunction("free" , FreeType); |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 75 | |
Chris Lattner | ade686e | 2002-05-07 19:02:48 +0000 | [diff] [blame] | 76 | return true; |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 77 | } |
| 78 | |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 79 | // runOnBasicBlock - This method does the actual work of converting |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 80 | // instructions over, assuming that the pass has already been initialized. |
| 81 | // |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 82 | bool LowerAllocations::runOnBasicBlock(BasicBlock &BB) { |
Chris Lattner | 42c9c2c | 2001-10-18 05:27:33 +0000 | [diff] [blame] | 83 | bool Changed = false; |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 84 | assert(MallocFunc && FreeFunc && "Pass not initialized!"); |
| 85 | |
| 86 | BasicBlock::InstListType &BBIL = BB.getInstList(); |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 87 | |
| 88 | // Loop over all of the instructions, looking for malloc or free instructions |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 89 | for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I) { |
| 90 | if (MallocInst *MI = dyn_cast<MallocInst>(&*I)) { |
| 91 | BBIL.remove(I); // remove the malloc instr... |
| 92 | |
| 93 | const Type *AllocTy = MI->getType()->getElementType(); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 94 | |
| 95 | // Get the number of bytes to be allocated for one element of the |
| 96 | // requested type... |
| 97 | unsigned Size = DataLayout.getTypeSize(AllocTy); |
| 98 | |
| 99 | // malloc(type) becomes sbyte *malloc(constint) |
| 100 | Value *MallocArg = ConstantUInt::get(Type::UIntTy, Size); |
| 101 | if (MI->getNumOperands() && Size == 1) { |
| 102 | MallocArg = MI->getOperand(0); // Operand * 1 = Operand |
| 103 | } else if (MI->getNumOperands()) { |
| 104 | // Multiply it by the array size if neccesary... |
| 105 | MallocArg = BinaryOperator::create(Instruction::Mul,MI->getOperand(0), |
| 106 | MallocArg); |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 107 | I = ++BBIL.insert(I, cast<Instruction>(MallocArg)); |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 108 | } |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 109 | |
| 110 | // Create the call to Malloc... |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 111 | CallInst *MCall = new CallInst(MallocFunc, |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 112 | vector<Value*>(1, MallocArg)); |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 113 | I = BBIL.insert(I, MCall); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 114 | |
| 115 | // Create a cast instruction to convert to the right type... |
| 116 | CastInst *MCast = new CastInst(MCall, MI->getType()); |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 117 | I = BBIL.insert(++I, MCast); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 118 | |
| 119 | // Replace all uses of the old malloc inst with the cast inst |
| 120 | MI->replaceAllUsesWith(MCast); |
| 121 | delete MI; // Delete the malloc inst |
| 122 | Changed = true; |
Chris Lattner | 3dec1f2 | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 123 | ++NumLowered; |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 124 | } else if (FreeInst *FI = dyn_cast<FreeInst>(&*I)) { |
| 125 | BBIL.remove(I); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 126 | |
| 127 | // Cast the argument to free into a ubyte*... |
| 128 | CastInst *MCast = new CastInst(FI->getOperand(0), |
| 129 | PointerType::get(Type::UByteTy)); |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 130 | I = ++BBIL.insert(I, MCast); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 131 | |
| 132 | // Insert a call to the free function... |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 133 | CallInst *FCall = new CallInst(FreeFunc, vector<Value*>(1, MCast)); |
| 134 | I = BBIL.insert(I, FCall); |
Chris Lattner | 8445372 | 2002-01-21 23:34:02 +0000 | [diff] [blame] | 135 | |
| 136 | // Delete the old free instruction |
| 137 | delete FI; |
| 138 | Changed = true; |
Chris Lattner | 3dec1f2 | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 139 | ++NumLowered; |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 140 | } |
| 141 | } |
| 142 | |
Chris Lattner | 42c9c2c | 2001-10-18 05:27:33 +0000 | [diff] [blame] | 143 | return Changed; |
Chris Lattner | 1bffea0 | 2001-10-15 17:31:51 +0000 | [diff] [blame] | 144 | } |