blob: 89051d17883873af14423956db4bc000cd43d802 [file] [log] [blame]
Evan Chengfabcb912009-09-10 04:36:43 +00001//===-- MallocHelper.cpp - Functions to identify malloc calls -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This family of functions identifies calls to malloc, bitcasts of malloc
11// calls, and the types and array sizes associated with them.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Analysis/MallocHelper.h"
16#include "llvm/Constants.h"
17#include "llvm/Instructions.h"
18#include "llvm/Module.h"
Victor Hernandez88d98392009-09-18 19:20:02 +000019#include "llvm/Analysis/ConstantFolding.h"
Evan Chengfabcb912009-09-10 04:36:43 +000020using namespace llvm;
21
22//===----------------------------------------------------------------------===//
23// malloc Call Utility Functions.
24//
25
26/// isMalloc - Returns true if the the value is either a malloc call or a
27/// bitcast of the result of a malloc call.
Evan Chengfabcb912009-09-10 04:36:43 +000028bool llvm::isMalloc(const Value* I) {
29 return extractMallocCall(I) || extractMallocCallFromBitCast(I);
30}
31
32static bool isMallocCall(const CallInst *CI) {
33 if (!CI)
34 return false;
35
36 const Module* M = CI->getParent()->getParent()->getParent();
Torok Edwin85c005a2009-10-05 21:15:43 +000037 Function *MallocFunc = M->getFunction("malloc");
Evan Chengfabcb912009-09-10 04:36:43 +000038
39 if (CI->getOperand(0) != MallocFunc)
40 return false;
41
Torok Edwin85c005a2009-10-05 21:15:43 +000042 // Check malloc prototype.
Torok Edwin4de86fe2009-10-07 09:22:55 +000043 // FIXME: workaround for PR5130, this will be obsolete when a nobuiltin
44 // attribute will exist.
Torok Edwin85c005a2009-10-05 21:15:43 +000045 const FunctionType *FTy = MallocFunc->getFunctionType();
46 if (FTy->getNumParams() != 1)
47 return false;
48 if (IntegerType *ITy = dyn_cast<IntegerType>(FTy->param_begin()->get())) {
49 if (ITy->getBitWidth() != 32 && ITy->getBitWidth() != 64)
50 return false;
51 return true;
52 }
53
54 return false;
Evan Chengfabcb912009-09-10 04:36:43 +000055}
56
57/// extractMallocCall - Returns the corresponding CallInst if the instruction
58/// is a malloc call. Since CallInst::CreateMalloc() only creates calls, we
59/// ignore InvokeInst here.
60const CallInst* llvm::extractMallocCall(const Value* I) {
61 const CallInst *CI = dyn_cast<CallInst>(I);
62 return (isMallocCall(CI)) ? CI : NULL;
63}
64
65CallInst* llvm::extractMallocCall(Value* I) {
66 CallInst *CI = dyn_cast<CallInst>(I);
67 return (isMallocCall(CI)) ? CI : NULL;
68}
69
70static bool isBitCastOfMallocCall(const BitCastInst* BCI) {
71 if (!BCI)
72 return false;
73
74 return isMallocCall(dyn_cast<CallInst>(BCI->getOperand(0)));
75}
76
77/// extractMallocCallFromBitCast - Returns the corresponding CallInst if the
78/// instruction is a bitcast of the result of a malloc call.
79CallInst* llvm::extractMallocCallFromBitCast(Value* I) {
80 BitCastInst *BCI = dyn_cast<BitCastInst>(I);
Victor Hernandez399e45b2009-09-10 20:18:57 +000081 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
82 : NULL;
Evan Chengfabcb912009-09-10 04:36:43 +000083}
84
85const CallInst* llvm::extractMallocCallFromBitCast(const Value* I) {
86 const BitCastInst *BCI = dyn_cast<BitCastInst>(I);
Victor Hernandez399e45b2009-09-10 20:18:57 +000087 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
88 : NULL;
Evan Chengfabcb912009-09-10 04:36:43 +000089}
90
Victor Hernandez88d98392009-09-18 19:20:02 +000091static bool isArrayMallocHelper(const CallInst *CI, LLVMContext &Context,
92 const TargetData* TD) {
Evan Chengfabcb912009-09-10 04:36:43 +000093 if (!CI)
94 return false;
95
Evan Chengfabcb912009-09-10 04:36:43 +000096 const Type* T = getMallocAllocatedType(CI);
Victor Hernandez88d98392009-09-18 19:20:02 +000097
98 // We can only indentify an array malloc if we know the type of the malloc
99 // call.
Evan Chengfabcb912009-09-10 04:36:43 +0000100 if (!T) return false;
Victor Hernandez88d98392009-09-18 19:20:02 +0000101
102 Value* MallocArg = CI->getOperand(1);
Evan Chengfabcb912009-09-10 04:36:43 +0000103 Constant *ElementSize = ConstantExpr::getSizeOf(T);
Victor Hernandez88d98392009-09-18 19:20:02 +0000104 ElementSize = ConstantExpr::getTruncOrBitCast(ElementSize,
105 MallocArg->getType());
106 Constant *FoldedElementSize = ConstantFoldConstantExpression(
107 cast<ConstantExpr>(ElementSize),
108 Context, TD);
109
110
Evan Chengfabcb912009-09-10 04:36:43 +0000111 if (isa<ConstantExpr>(MallocArg))
Victor Hernandez88d98392009-09-18 19:20:02 +0000112 return (MallocArg != ElementSize);
Evan Chengfabcb912009-09-10 04:36:43 +0000113
114 BinaryOperator *BI = dyn_cast<BinaryOperator>(MallocArg);
115 if (!BI)
116 return false;
117
Victor Hernandez88d98392009-09-18 19:20:02 +0000118 if (BI->getOpcode() == Instruction::Mul)
119 // ArraySize * ElementSize
120 if (BI->getOperand(1) == ElementSize ||
121 (FoldedElementSize && BI->getOperand(1) == FoldedElementSize))
122 return true;
123
124 // TODO: Detect case where MallocArg mul has been transformed to shl.
125
126 return false;
Evan Chengfabcb912009-09-10 04:36:43 +0000127}
128
129/// isArrayMalloc - Returns the corresponding CallInst if the instruction
130/// matches the malloc call IR generated by CallInst::CreateMalloc(). This
131/// means that it is a malloc call with one bitcast use AND the malloc call's
132/// size argument is:
133/// 1. a constant not equal to the malloc's allocated type
134/// or
135/// 2. the result of a multiplication by the malloc's allocated type
136/// Otherwise it returns NULL.
137/// The unique bitcast is needed to determine the type/size of the array
138/// allocation.
Victor Hernandez88d98392009-09-18 19:20:02 +0000139CallInst* llvm::isArrayMalloc(Value* I, LLVMContext &Context,
140 const TargetData* TD) {
Evan Chengfabcb912009-09-10 04:36:43 +0000141 CallInst *CI = extractMallocCall(I);
Victor Hernandez88d98392009-09-18 19:20:02 +0000142 return (isArrayMallocHelper(CI, Context, TD)) ? CI : NULL;
Evan Chengfabcb912009-09-10 04:36:43 +0000143}
144
Victor Hernandez88d98392009-09-18 19:20:02 +0000145const CallInst* llvm::isArrayMalloc(const Value* I, LLVMContext &Context,
146 const TargetData* TD) {
Evan Chengfabcb912009-09-10 04:36:43 +0000147 const CallInst *CI = extractMallocCall(I);
Victor Hernandez88d98392009-09-18 19:20:02 +0000148 return (isArrayMallocHelper(CI, Context, TD)) ? CI : NULL;
Evan Chengfabcb912009-09-10 04:36:43 +0000149}
150
151/// getMallocType - Returns the PointerType resulting from the malloc call.
152/// This PointerType is the result type of the call's only bitcast use.
153/// If there is no unique bitcast use, then return NULL.
154const PointerType* llvm::getMallocType(const CallInst* CI) {
155 assert(isMalloc(CI) && "GetMallocType and not malloc call");
156
157 const BitCastInst* BCI = NULL;
Victor Hernandez88d98392009-09-18 19:20:02 +0000158
159 // Determine if CallInst has a bitcast use.
160 for (Value::use_const_iterator UI = CI->use_begin(), E = CI->use_end();
161 UI != E; )
162 if ((BCI = dyn_cast<BitCastInst>(cast<Instruction>(*UI++))))
163 break;
Evan Chengfabcb912009-09-10 04:36:43 +0000164
Victor Hernandez88d98392009-09-18 19:20:02 +0000165 // Malloc call has 1 bitcast use and no other uses, so type is the bitcast's
166 // destination type.
167 if (BCI && CI->hasOneUse())
168 return cast<PointerType>(BCI->getDestTy());
Evan Chengfabcb912009-09-10 04:36:43 +0000169
Victor Hernandez60cfc032009-09-22 18:50:03 +0000170 // Malloc call was not bitcast, so type is the malloc function's return type.
Victor Hernandez88d98392009-09-18 19:20:02 +0000171 if (!BCI)
172 return cast<PointerType>(CI->getType());
173
174 // Type could not be determined.
175 return NULL;
Evan Chengfabcb912009-09-10 04:36:43 +0000176}
177
178/// getMallocAllocatedType - Returns the Type allocated by malloc call. This
179/// Type is the result type of the call's only bitcast use. If there is no
180/// unique bitcast use, then return NULL.
181const Type* llvm::getMallocAllocatedType(const CallInst* CI) {
182 const PointerType* PT = getMallocType(CI);
183 return PT ? PT->getElementType() : NULL;
184}
185
186/// isConstantOne - Return true only if val is constant int 1.
187static bool isConstantOne(Value *val) {
188 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
189}
190
191/// getMallocArraySize - Returns the array size of a malloc call. The array
192/// size is computated in 1 of 3 ways:
193/// 1. If the element type if of size 1, then array size is the argument to
194/// malloc.
195/// 2. Else if the malloc's argument is a constant, the array size is that
196/// argument divided by the element type's size.
197/// 3. Else the malloc argument must be a multiplication and the array size is
198/// the first operand of the multiplication.
199/// This function returns constant 1 if:
200/// 1. The malloc call's allocated type cannot be determined.
201/// 2. IR wasn't created by a call to CallInst::CreateMalloc() with a non-NULL
202/// ArraySize.
Victor Hernandez88d98392009-09-18 19:20:02 +0000203Value* llvm::getMallocArraySize(CallInst* CI, LLVMContext &Context,
204 const TargetData* TD) {
Evan Chengfabcb912009-09-10 04:36:43 +0000205 // Match CreateMalloc's use of constant 1 array-size for non-array mallocs.
Victor Hernandez88d98392009-09-18 19:20:02 +0000206 if (!isArrayMalloc(CI, Context, TD))
Evan Chengfabcb912009-09-10 04:36:43 +0000207 return ConstantInt::get(CI->getOperand(1)->getType(), 1);
208
209 Value* MallocArg = CI->getOperand(1);
210 assert(getMallocAllocatedType(CI) && "getMallocArraySize and no type");
211 Constant *ElementSize = ConstantExpr::getSizeOf(getMallocAllocatedType(CI));
Victor Hernandez88d98392009-09-18 19:20:02 +0000212 ElementSize = ConstantExpr::getTruncOrBitCast(ElementSize,
Evan Chengfabcb912009-09-10 04:36:43 +0000213 MallocArg->getType());
214
215 Constant* CO = dyn_cast<Constant>(MallocArg);
216 BinaryOperator* BO = dyn_cast<BinaryOperator>(MallocArg);
Benjamin Kramerb84c5ae2009-09-10 11:31:39 +0000217 assert((isConstantOne(ElementSize) || CO || BO) &&
Evan Chengfabcb912009-09-10 04:36:43 +0000218 "getMallocArraySize and malformed malloc IR");
219
220 if (isConstantOne(ElementSize))
221 return MallocArg;
Victor Hernandez88d98392009-09-18 19:20:02 +0000222
223 if (CO)
224 return CO->getOperand(0);
225
226 // TODO: Detect case where MallocArg mul has been transformed to shl.
Evan Chengfabcb912009-09-10 04:36:43 +0000227
Evan Chengfabcb912009-09-10 04:36:43 +0000228 assert(BO && "getMallocArraySize not constant but not multiplication either");
229 return BO->getOperand(0);
230}