blob: edce5e144c7c94d03c1f26391f582d58d5ce67f0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- LowerAllocations.cpp - Reduce malloc & free insts to calls ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// The LowerAllocations transformation is a target-dependent tranformation
11// because it depends on the size of data types and alignment constraints.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "lowerallocs"
16#include "llvm/Transforms/Scalar.h"
17#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
18#include "llvm/Module.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Instructions.h"
21#include "llvm/Constants.h"
22#include "llvm/Pass.h"
23#include "llvm/ADT/Statistic.h"
24#include "llvm/Target/TargetData.h"
25#include "llvm/Support/Compiler.h"
26using namespace llvm;
27
28STATISTIC(NumLowered, "Number of allocations lowered");
29
30namespace {
31 /// LowerAllocations - Turn malloc and free instructions into %malloc and
32 /// %free calls.
33 ///
34 class VISIBILITY_HIDDEN LowerAllocations : public BasicBlockPass {
35 Constant *MallocFunc; // Functions in the module we are processing
36 Constant *FreeFunc; // Initialized by doInitialization
37 bool LowerMallocArgToInteger;
38 public:
39 static char ID; // Pass ID, replacement for typeid
Dan Gohman34c280e2007-08-01 15:32:29 +000040 explicit LowerAllocations(bool LowerToInt = false)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041 : BasicBlockPass((intptr_t)&ID), MallocFunc(0), FreeFunc(0),
42 LowerMallocArgToInteger(LowerToInt) {}
43
44 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
45 AU.addRequired<TargetData>();
46 AU.setPreservesCFG();
47
48 // This is a cluster of orthogonal Transforms:
49 AU.addPreserved<UnifyFunctionExitNodes>();
50 AU.addPreservedID(PromoteMemoryToRegisterID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051 AU.addPreservedID(LowerSwitchID);
52 AU.addPreservedID(LowerInvokePassID);
53 }
54
55 /// doPassInitialization - For the lower allocations pass, this ensures that
56 /// a module contains a declaration for a malloc and a free function.
57 ///
58 bool doInitialization(Module &M);
59
60 virtual bool doInitialization(Function &F) {
61 return BasicBlockPass::doInitialization(F);
62 }
63
64 /// runOnBasicBlock - This method does the actual work of converting
65 /// instructions over, assuming that the pass has already been initialized.
66 ///
67 bool runOnBasicBlock(BasicBlock &BB);
68 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069}
70
Dan Gohman089efff2008-05-13 00:00:25 +000071char LowerAllocations::ID = 0;
72static RegisterPass<LowerAllocations>
73X("lowerallocs", "Lower allocations from instructions to calls");
74
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075// Publically exposed interface to pass...
76const PassInfo *llvm::LowerAllocationsID = X.getPassInfo();
77// createLowerAllocationsPass - Interface to this file...
78Pass *llvm::createLowerAllocationsPass(bool LowerMallocArgToInteger) {
79 return new LowerAllocations(LowerMallocArgToInteger);
80}
81
82
83// doInitialization - For the lower allocations pass, this ensures that a
84// module contains a declaration for a malloc and a free function.
85//
86// This function is always successful.
87//
88bool LowerAllocations::doInitialization(Module &M) {
Christopher Lambbb2f2222007-12-17 01:12:55 +000089 const Type *BPTy = PointerType::getUnqual(Type::Int8Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000090 // Prototype malloc as "char* malloc(...)", because we don't know in
91 // doInitialization whether size_t is int or long.
92 FunctionType *FT = FunctionType::get(BPTy, std::vector<const Type*>(), true);
93 MallocFunc = M.getOrInsertFunction("malloc", FT);
94 FreeFunc = M.getOrInsertFunction("free" , Type::VoidTy, BPTy, (Type *)0);
95 return true;
96}
97
98// runOnBasicBlock - This method does the actual work of converting
99// instructions over, assuming that the pass has already been initialized.
100//
101bool LowerAllocations::runOnBasicBlock(BasicBlock &BB) {
102 bool Changed = false;
103 assert(MallocFunc && FreeFunc && "Pass not initialized!");
104
105 BasicBlock::InstListType &BBIL = BB.getInstList();
106
107 const TargetData &TD = getAnalysis<TargetData>();
108 const Type *IntPtrTy = TD.getIntPtrType();
109
110 // Loop over all of the instructions, looking for malloc or free instructions
111 for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I) {
112 if (MallocInst *MI = dyn_cast<MallocInst>(I)) {
113 const Type *AllocTy = MI->getType()->getElementType();
114
115 // malloc(type) becomes sbyte *malloc(size)
116 Value *MallocArg;
117 if (LowerMallocArgToInteger)
Duncan Sandsf99fdc62007-11-01 20:53:16 +0000118 MallocArg = ConstantInt::get(Type::Int64Ty, TD.getABITypeSize(AllocTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000119 else
120 MallocArg = ConstantExpr::getSizeOf(AllocTy);
121 MallocArg = ConstantExpr::getTruncOrBitCast(cast<Constant>(MallocArg),
122 IntPtrTy);
123
124 if (MI->isArrayAllocation()) {
125 if (isa<ConstantInt>(MallocArg) &&
126 cast<ConstantInt>(MallocArg)->isOne()) {
127 MallocArg = MI->getOperand(0); // Operand * 1 = Operand
128 } else if (Constant *CO = dyn_cast<Constant>(MI->getOperand(0))) {
129 CO = ConstantExpr::getIntegerCast(CO, IntPtrTy, false /*ZExt*/);
130 MallocArg = ConstantExpr::getMul(CO, cast<Constant>(MallocArg));
131 } else {
132 Value *Scale = MI->getOperand(0);
133 if (Scale->getType() != IntPtrTy)
134 Scale = CastInst::createIntegerCast(Scale, IntPtrTy, false /*ZExt*/,
135 "", I);
136
137 // Multiply it by the array size if necessary...
138 MallocArg = BinaryOperator::create(Instruction::Mul, Scale,
139 MallocArg, "", I);
140 }
141 }
142
143 // Create the call to Malloc.
Gabor Greifd6da1d02008-04-06 20:25:17 +0000144 CallInst *MCall = CallInst::Create(MallocFunc, MallocArg, "", I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 MCall->setTailCall();
146
147 // Create a cast instruction to convert to the right type...
148 Value *MCast;
149 if (MCall->getType() != Type::VoidTy)
150 MCast = new BitCastInst(MCall, MI->getType(), "", I);
151 else
152 MCast = Constant::getNullValue(MI->getType());
153
154 // Replace all uses of the old malloc inst with the cast inst
155 MI->replaceAllUsesWith(MCast);
156 I = --BBIL.erase(I); // remove and delete the malloc instr...
157 Changed = true;
158 ++NumLowered;
159 } else if (FreeInst *FI = dyn_cast<FreeInst>(I)) {
Christopher Lambbb2f2222007-12-17 01:12:55 +0000160 Value *PtrCast =
161 new BitCastInst(FI->getOperand(0),
162 PointerType::getUnqual(Type::Int8Ty), "", I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163
164 // Insert a call to the free function...
Gabor Greifd6da1d02008-04-06 20:25:17 +0000165 CallInst::Create(FreeFunc, PtrCast, "", I)->setTailCall();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166
167 // Delete the old free instruction
168 I = --BBIL.erase(I);
169 Changed = true;
170 ++NumLowered;
171 }
172 }
173
174 return Changed;
175}
176