blob: b4486283feea1c35b6d88493c7e32f79afbe226a [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 Hernandez8e345a12009-11-10 08:32:25 +000019#include "llvm/Analysis/ValueTracking.h"
Victor Hernandez9d0b7042009-11-07 00:16:28 +000020#include "llvm/Target/TargetData.h"
Evan Chengfabcb912009-09-10 04:36:43 +000021using namespace llvm;
22
23//===----------------------------------------------------------------------===//
24// malloc Call Utility Functions.
25//
26
27/// isMalloc - Returns true if the the value is either a malloc call or a
28/// bitcast of the result of a malloc call.
Victor Hernandez88efeae2009-11-03 20:02:35 +000029bool llvm::isMalloc(const Value *I) {
Evan Chengfabcb912009-09-10 04:36:43 +000030 return extractMallocCall(I) || extractMallocCallFromBitCast(I);
31}
32
33static bool isMallocCall(const CallInst *CI) {
34 if (!CI)
35 return false;
36
Victor Hernandez3ad70d52009-11-03 20:39:35 +000037 Function *Callee = CI->getCalledFunction();
38 if (Callee == 0 || !Callee->isDeclaration() || Callee->getName() != "malloc")
Evan Chengfabcb912009-09-10 04:36:43 +000039 return false;
40
Torok Edwin85c005a2009-10-05 21:15:43 +000041 // Check malloc prototype.
Torok Edwin4de86fe2009-10-07 09:22:55 +000042 // FIXME: workaround for PR5130, this will be obsolete when a nobuiltin
43 // attribute will exist.
Victor Hernandez3ad70d52009-11-03 20:39:35 +000044 const FunctionType *FTy = Callee->getFunctionType();
Torok Edwin85c005a2009-10-05 21:15:43 +000045 if (FTy->getNumParams() != 1)
46 return false;
47 if (IntegerType *ITy = dyn_cast<IntegerType>(FTy->param_begin()->get())) {
48 if (ITy->getBitWidth() != 32 && ITy->getBitWidth() != 64)
49 return false;
50 return true;
51 }
52
53 return false;
Evan Chengfabcb912009-09-10 04:36:43 +000054}
55
56/// extractMallocCall - Returns the corresponding CallInst if the instruction
57/// is a malloc call. Since CallInst::CreateMalloc() only creates calls, we
58/// ignore InvokeInst here.
Victor Hernandez88efeae2009-11-03 20:02:35 +000059const CallInst *llvm::extractMallocCall(const Value *I) {
Evan Chengfabcb912009-09-10 04:36:43 +000060 const CallInst *CI = dyn_cast<CallInst>(I);
61 return (isMallocCall(CI)) ? CI : NULL;
62}
63
Victor Hernandez88efeae2009-11-03 20:02:35 +000064CallInst *llvm::extractMallocCall(Value *I) {
Evan Chengfabcb912009-09-10 04:36:43 +000065 CallInst *CI = dyn_cast<CallInst>(I);
66 return (isMallocCall(CI)) ? CI : NULL;
67}
68
Victor Hernandez88efeae2009-11-03 20:02:35 +000069static bool isBitCastOfMallocCall(const BitCastInst *BCI) {
Evan Chengfabcb912009-09-10 04:36:43 +000070 if (!BCI)
71 return false;
72
73 return isMallocCall(dyn_cast<CallInst>(BCI->getOperand(0)));
74}
75
76/// extractMallocCallFromBitCast - Returns the corresponding CallInst if the
77/// instruction is a bitcast of the result of a malloc call.
Victor Hernandez88efeae2009-11-03 20:02:35 +000078CallInst *llvm::extractMallocCallFromBitCast(Value *I) {
Evan Chengfabcb912009-09-10 04:36:43 +000079 BitCastInst *BCI = dyn_cast<BitCastInst>(I);
Victor Hernandez399e45b2009-09-10 20:18:57 +000080 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
81 : NULL;
Evan Chengfabcb912009-09-10 04:36:43 +000082}
83
Victor Hernandez88efeae2009-11-03 20:02:35 +000084const CallInst *llvm::extractMallocCallFromBitCast(const Value *I) {
Evan Chengfabcb912009-09-10 04:36:43 +000085 const BitCastInst *BCI = dyn_cast<BitCastInst>(I);
Victor Hernandez399e45b2009-09-10 20:18:57 +000086 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
87 : NULL;
Evan Chengfabcb912009-09-10 04:36:43 +000088}
89
Victor Hernandez8e345a12009-11-10 08:32:25 +000090static Value *computeArraySize(const CallInst *CI, const TargetData *TD,
91 bool LookThroughSExt = false) {
Evan Chengfabcb912009-09-10 04:36:43 +000092 if (!CI)
Victor Hernandez90f48e72009-10-28 20:18:55 +000093 return NULL;
Evan Chengfabcb912009-09-10 04:36:43 +000094
Victor Hernandez9d0b7042009-11-07 00:16:28 +000095 // The size of the malloc's result type must be known to determine array size.
Victor Hernandez88efeae2009-11-03 20:02:35 +000096 const Type *T = getMallocAllocatedType(CI);
Victor Hernandez9d0b7042009-11-07 00:16:28 +000097 if (!T || !T->isSized() || !TD)
Victor Hernandez90f48e72009-10-28 20:18:55 +000098 return NULL;
Victor Hernandez88d98392009-09-18 19:20:02 +000099
Victor Hernandez8e345a12009-11-10 08:32:25 +0000100 unsigned ElementSize = TD->getTypeAllocSize(T);
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000101 if (const StructType *ST = dyn_cast<StructType>(T))
Victor Hernandez8e345a12009-11-10 08:32:25 +0000102 ElementSize = TD->getStructLayout(ST)->getSizeInBytes();
Victor Hernandez88d98392009-09-18 19:20:02 +0000103
Victor Hernandez8e345a12009-11-10 08:32:25 +0000104 // If malloc calls' arg can be determined to be a multiple of ElementSize,
105 // return the multiple. Otherwise, return NULL.
106 Value *MallocArg = CI->getOperand(1);
107 Value *Multiple = NULL;
Victor Hernandez8e345a12009-11-10 08:32:25 +0000108 if (ComputeMultiple(MallocArg, ElementSize, Multiple,
Dan Gohman3dbb9e62009-11-18 00:58:27 +0000109 LookThroughSExt))
Victor Hernandez8e345a12009-11-10 08:32:25 +0000110 return Multiple;
Victor Hernandez88d98392009-09-18 19:20:02 +0000111
Victor Hernandez90f48e72009-10-28 20:18:55 +0000112 return NULL;
Evan Chengfabcb912009-09-10 04:36:43 +0000113}
114
115/// isArrayMalloc - Returns the corresponding CallInst if the instruction
Victor Hernandez90f48e72009-10-28 20:18:55 +0000116/// is a call to malloc whose array size can be determined and the array size
117/// is not constant 1. Otherwise, return NULL.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000118const CallInst *llvm::isArrayMalloc(const Value *I, const TargetData *TD) {
Evan Chengfabcb912009-09-10 04:36:43 +0000119 const CallInst *CI = extractMallocCall(I);
Victor Hernandez8e345a12009-11-10 08:32:25 +0000120 Value *ArraySize = computeArraySize(CI, TD);
Victor Hernandez90f48e72009-10-28 20:18:55 +0000121
122 if (ArraySize &&
123 ArraySize != ConstantInt::get(CI->getOperand(1)->getType(), 1))
124 return CI;
125
126 // CI is a non-array malloc or we can't figure out that it is an array malloc.
127 return NULL;
Evan Chengfabcb912009-09-10 04:36:43 +0000128}
129
130/// getMallocType - Returns the PointerType resulting from the malloc call.
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000131/// The PointerType depends on the number of bitcast uses of the malloc call:
132/// 0: PointerType is the calls' return type.
133/// 1: PointerType is the bitcast's result type.
134/// >1: Unique PointerType cannot be determined, return NULL.
Victor Hernandez88efeae2009-11-03 20:02:35 +0000135const PointerType *llvm::getMallocType(const CallInst *CI) {
Victor Hernandez8e345a12009-11-10 08:32:25 +0000136 assert(isMalloc(CI) && "getMallocType and not malloc call");
Evan Chengfabcb912009-09-10 04:36:43 +0000137
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000138 const PointerType *MallocType = NULL;
139 unsigned NumOfBitCastUses = 0;
140
Victor Hernandez88d98392009-09-18 19:20:02 +0000141 // Determine if CallInst has a bitcast use.
142 for (Value::use_const_iterator UI = CI->use_begin(), E = CI->use_end();
143 UI != E; )
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000144 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
145 MallocType = cast<PointerType>(BCI->getDestTy());
146 NumOfBitCastUses++;
147 }
Evan Chengfabcb912009-09-10 04:36:43 +0000148
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000149 // Malloc call has 1 bitcast use, so type is the bitcast's destination type.
150 if (NumOfBitCastUses == 1)
151 return MallocType;
Evan Chengfabcb912009-09-10 04:36:43 +0000152
Victor Hernandez60cfc032009-09-22 18:50:03 +0000153 // Malloc call was not bitcast, so type is the malloc function's return type.
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000154 if (NumOfBitCastUses == 0)
Victor Hernandez88d98392009-09-18 19:20:02 +0000155 return cast<PointerType>(CI->getType());
156
157 // Type could not be determined.
158 return NULL;
Evan Chengfabcb912009-09-10 04:36:43 +0000159}
160
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000161/// getMallocAllocatedType - Returns the Type allocated by malloc call.
162/// The Type depends on the number of bitcast uses of the malloc call:
163/// 0: PointerType is the malloc calls' return type.
164/// 1: PointerType is the bitcast's result type.
165/// >1: Unique PointerType cannot be determined, return NULL.
Victor Hernandez88efeae2009-11-03 20:02:35 +0000166const Type *llvm::getMallocAllocatedType(const CallInst *CI) {
167 const PointerType *PT = getMallocType(CI);
Evan Chengfabcb912009-09-10 04:36:43 +0000168 return PT ? PT->getElementType() : NULL;
169}
170
Victor Hernandez90f48e72009-10-28 20:18:55 +0000171/// getMallocArraySize - Returns the array size of a malloc call. If the
172/// argument passed to malloc is a multiple of the size of the malloced type,
173/// then return that multiple. For non-array mallocs, the multiple is
174/// constant 1. Otherwise, return NULL for mallocs whose array size cannot be
Victor Hernandez2491ce02009-10-15 20:14:52 +0000175/// determined.
Victor Hernandez8e345a12009-11-10 08:32:25 +0000176Value *llvm::getMallocArraySize(CallInst *CI, const TargetData *TD,
177 bool LookThroughSExt) {
178 assert(isMalloc(CI) && "getMallocArraySize and not malloc call");
179 return computeArraySize(CI, TD, LookThroughSExt);
Evan Chengfabcb912009-09-10 04:36:43 +0000180}
Victor Hernandez66284e02009-10-24 04:23:03 +0000181
Victor Hernandez046e78c2009-10-26 23:43:48 +0000182//===----------------------------------------------------------------------===//
183// free Call Utility Functions.
184//
185
Victor Hernandez66284e02009-10-24 04:23:03 +0000186/// isFreeCall - Returns true if the the value is a call to the builtin free()
Victor Hernandez88efeae2009-11-03 20:02:35 +0000187bool llvm::isFreeCall(const Value *I) {
Victor Hernandez66284e02009-10-24 04:23:03 +0000188 const CallInst *CI = dyn_cast<CallInst>(I);
189 if (!CI)
190 return false;
Victor Hernandez3ad70d52009-11-03 20:39:35 +0000191 Function *Callee = CI->getCalledFunction();
192 if (Callee == 0 || !Callee->isDeclaration() || Callee->getName() != "free")
Victor Hernandez66284e02009-10-24 04:23:03 +0000193 return false;
194
195 // Check free prototype.
196 // FIXME: workaround for PR5130, this will be obsolete when a nobuiltin
197 // attribute will exist.
Victor Hernandez3ad70d52009-11-03 20:39:35 +0000198 const FunctionType *FTy = Callee->getFunctionType();
199 if (!FTy->getReturnType()->isVoidTy())
Victor Hernandez66284e02009-10-24 04:23:03 +0000200 return false;
201 if (FTy->getNumParams() != 1)
202 return false;
Victor Hernandez3ad70d52009-11-03 20:39:35 +0000203 if (FTy->param_begin()->get() != Type::getInt8PtrTy(Callee->getContext()))
Victor Hernandez66284e02009-10-24 04:23:03 +0000204 return false;
205
206 return true;
207}