blob: cf2ad62b617e24f13add98d07aae9ba23c0a92be [file] [log] [blame]
Victor Hernandezf006b182009-10-27 20:05:49 +00001//===------ MemoryBuiltins.cpp - Identify calls to memory builtins --------===//
Evan Chengfabcb912009-09-10 04:36:43 +00002//
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//
Victor Hernandezf006b182009-10-27 20:05:49 +000010// This family of functions identifies calls to builtin functions that allocate
11// or free memory.
Evan Chengfabcb912009-09-10 04:36:43 +000012//
13//===----------------------------------------------------------------------===//
14
Victor Hernandezf006b182009-10-27 20:05:49 +000015#include "llvm/Analysis/MemoryBuiltins.h"
Evan Chengfabcb912009-09-10 04:36:43 +000016#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:
Victor Hernandez2491ce02009-10-15 20:14:52 +0000133/// 1. a constant not equal to the size of the malloced type
Evan Chengfabcb912009-09-10 04:36:43 +0000134/// or
Victor Hernandez2491ce02009-10-15 20:14:52 +0000135/// 2. the result of a multiplication by the size of the malloced type
Evan Chengfabcb912009-09-10 04:36:43 +0000136/// 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
Victor Hernandez2491ce02009-10-15 20:14:52 +0000186/// isSafeToGetMallocArraySize - Returns true if the array size of a malloc can
187/// be determined. It can be determined in these 3 cases of malloc codegen:
188/// 1. non-array malloc: The malloc's size argument is a constant and equals the /// size of the type being malloced.
189/// 2. array malloc: This is a malloc call with one bitcast use AND the malloc
190/// call's size argument is a constant multiple of the size of the malloced
191/// type.
192/// 3. array malloc: This is a malloc call with one bitcast use AND the malloc
193/// call's size argument is the result of a multiplication by the size of the
194/// malloced type.
195/// Otherwise returns false.
196static bool isSafeToGetMallocArraySize(const CallInst *CI,
197 LLVMContext &Context,
198 const TargetData* TD) {
199 if (!CI)
200 return false;
201
202 // Type must be known to determine array size.
203 const Type* T = getMallocAllocatedType(CI);
204 if (!T) return false;
205
206 Value* MallocArg = CI->getOperand(1);
207 Constant *ElementSize = ConstantExpr::getSizeOf(T);
208 ElementSize = ConstantExpr::getTruncOrBitCast(ElementSize,
209 MallocArg->getType());
210
211 // First, check if it is a non-array malloc.
212 if (isa<ConstantExpr>(MallocArg) && (MallocArg == ElementSize))
213 return true;
214
215 // Second, check if it can be determined that this is an array malloc.
216 return isArrayMallocHelper(CI, Context, TD);
217}
218
Evan Chengfabcb912009-09-10 04:36:43 +0000219/// isConstantOne - Return true only if val is constant int 1.
220static bool isConstantOne(Value *val) {
221 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
222}
223
Victor Hernandez2491ce02009-10-15 20:14:52 +0000224/// getMallocArraySize - Returns the array size of a malloc call. For array
225/// mallocs, the size is computated in 1 of 3 ways:
226/// 1. If the element type is of size 1, then array size is the argument to
Evan Chengfabcb912009-09-10 04:36:43 +0000227/// malloc.
228/// 2. Else if the malloc's argument is a constant, the array size is that
229/// argument divided by the element type's size.
230/// 3. Else the malloc argument must be a multiplication and the array size is
231/// the first operand of the multiplication.
Victor Hernandez2491ce02009-10-15 20:14:52 +0000232/// For non-array mallocs, the computed size is constant 1.
233/// This function returns NULL for all mallocs whose array size cannot be
234/// determined.
Victor Hernandez88d98392009-09-18 19:20:02 +0000235Value* llvm::getMallocArraySize(CallInst* CI, LLVMContext &Context,
236 const TargetData* TD) {
Victor Hernandez136526c2009-10-16 18:08:17 +0000237 if (!isSafeToGetMallocArraySize(CI, Context, TD))
Victor Hernandez2491ce02009-10-15 20:14:52 +0000238 return NULL;
239
Evan Chengfabcb912009-09-10 04:36:43 +0000240 // Match CreateMalloc's use of constant 1 array-size for non-array mallocs.
Victor Hernandez88d98392009-09-18 19:20:02 +0000241 if (!isArrayMalloc(CI, Context, TD))
Evan Chengfabcb912009-09-10 04:36:43 +0000242 return ConstantInt::get(CI->getOperand(1)->getType(), 1);
243
244 Value* MallocArg = CI->getOperand(1);
245 assert(getMallocAllocatedType(CI) && "getMallocArraySize and no type");
246 Constant *ElementSize = ConstantExpr::getSizeOf(getMallocAllocatedType(CI));
Victor Hernandez88d98392009-09-18 19:20:02 +0000247 ElementSize = ConstantExpr::getTruncOrBitCast(ElementSize,
Evan Chengfabcb912009-09-10 04:36:43 +0000248 MallocArg->getType());
249
250 Constant* CO = dyn_cast<Constant>(MallocArg);
251 BinaryOperator* BO = dyn_cast<BinaryOperator>(MallocArg);
Benjamin Kramerb84c5ae2009-09-10 11:31:39 +0000252 assert((isConstantOne(ElementSize) || CO || BO) &&
Evan Chengfabcb912009-09-10 04:36:43 +0000253 "getMallocArraySize and malformed malloc IR");
254
255 if (isConstantOne(ElementSize))
256 return MallocArg;
Victor Hernandez88d98392009-09-18 19:20:02 +0000257
258 if (CO)
259 return CO->getOperand(0);
260
261 // TODO: Detect case where MallocArg mul has been transformed to shl.
Evan Chengfabcb912009-09-10 04:36:43 +0000262
Evan Chengfabcb912009-09-10 04:36:43 +0000263 assert(BO && "getMallocArraySize not constant but not multiplication either");
264 return BO->getOperand(0);
265}
Victor Hernandez66284e02009-10-24 04:23:03 +0000266
Victor Hernandez046e78c2009-10-26 23:43:48 +0000267//===----------------------------------------------------------------------===//
268// free Call Utility Functions.
269//
270
Victor Hernandez66284e02009-10-24 04:23:03 +0000271/// isFreeCall - Returns true if the the value is a call to the builtin free()
272bool llvm::isFreeCall(const Value* I) {
273 const CallInst *CI = dyn_cast<CallInst>(I);
274 if (!CI)
275 return false;
276
277 const Module* M = CI->getParent()->getParent()->getParent();
278 Function *FreeFunc = M->getFunction("free");
279
280 if (CI->getOperand(0) != FreeFunc)
281 return false;
282
283 // Check free prototype.
284 // FIXME: workaround for PR5130, this will be obsolete when a nobuiltin
285 // attribute will exist.
286 const FunctionType *FTy = FreeFunc->getFunctionType();
287 if (FTy->getReturnType() != Type::getVoidTy(M->getContext()))
288 return false;
289 if (FTy->getNumParams() != 1)
290 return false;
291 if (FTy->param_begin()->get() != Type::getInt8PtrTy(M->getContext()))
292 return false;
293
294 return true;
295}