MemoryBuiltins.h revision 41be2fb1f9e9b8f796effb81c2bee6cf397136cf
1//===- llvm/Analysis/MemoryBuiltins.h- Calls to memory builtins -*- C++ -*-===//
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 builtin functions that allocate
11// or free memory.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_ANALYSIS_MEMORYBUILTINS_H
16#define LLVM_ANALYSIS_MEMORYBUILTINS_H
17
18#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/SmallPtrSet.h"
20#include "llvm/IRBuilder.h"
21#include "llvm/InstVisitor.h"
22#include "llvm/Operator.h"
23#include "llvm/Support/DataTypes.h"
24#include "llvm/Support/TargetFolder.h"
25#include "llvm/Support/ValueHandle.h"
26
27namespace llvm {
28class CallInst;
29class PointerType;
30class DataLayout;
31class TargetLibraryInfo;
32class Type;
33class Value;
34
35
36/// \brief Tests if a value is a call or invoke to a library function that
37/// allocates or reallocates memory (either malloc, calloc, realloc, or strdup
38/// like).
39bool isAllocationFn(const Value *V, const TargetLibraryInfo *TLI,
40                    bool LookThroughBitCast = false);
41
42/// \brief Tests if a value is a call or invoke to a function that returns a
43/// NoAlias pointer (including malloc/calloc/realloc/strdup-like functions).
44bool isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI,
45                 bool LookThroughBitCast = false);
46
47/// \brief Tests if a value is a call or invoke to a library function that
48/// allocates uninitialized memory (such as malloc).
49bool isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
50                    bool LookThroughBitCast = false);
51
52/// \brief Tests if a value is a call or invoke to a library function that
53/// allocates zero-filled memory (such as calloc).
54bool isCallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
55                    bool LookThroughBitCast = false);
56
57/// \brief Tests if a value is a call or invoke to a library function that
58/// allocates memory (either malloc, calloc, or strdup like).
59bool isAllocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
60                   bool LookThroughBitCast = false);
61
62/// \brief Tests if a value is a call or invoke to a library function that
63/// reallocates memory (such as realloc).
64bool isReallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
65                     bool LookThroughBitCast = false);
66
67
68//===----------------------------------------------------------------------===//
69//  malloc Call Utility Functions.
70//
71
72/// extractMallocCall - Returns the corresponding CallInst if the instruction
73/// is a malloc call.  Since CallInst::CreateMalloc() only creates calls, we
74/// ignore InvokeInst here.
75const CallInst *extractMallocCall(const Value *I, const TargetLibraryInfo *TLI);
76static inline CallInst *extractMallocCall(Value *I,
77                                          const TargetLibraryInfo *TLI) {
78  return const_cast<CallInst*>(extractMallocCall((const Value*)I, TLI));
79}
80
81/// isArrayMalloc - Returns the corresponding CallInst if the instruction
82/// is a call to malloc whose array size can be determined and the array size
83/// is not constant 1.  Otherwise, return NULL.
84const CallInst *isArrayMalloc(const Value *I, const DataLayout *TD,
85                              const TargetLibraryInfo *TLI);
86
87/// getMallocType - Returns the PointerType resulting from the malloc call.
88/// The PointerType depends on the number of bitcast uses of the malloc call:
89///   0: PointerType is the malloc calls' return type.
90///   1: PointerType is the bitcast's result type.
91///  >1: Unique PointerType cannot be determined, return NULL.
92PointerType *getMallocType(const CallInst *CI, const TargetLibraryInfo *TLI);
93
94/// getMallocAllocatedType - Returns the Type allocated by malloc call.
95/// The Type depends on the number of bitcast uses of the malloc call:
96///   0: PointerType is the malloc calls' return type.
97///   1: PointerType is the bitcast's result type.
98///  >1: Unique PointerType cannot be determined, return NULL.
99Type *getMallocAllocatedType(const CallInst *CI, const TargetLibraryInfo *TLI);
100
101/// getMallocArraySize - Returns the array size of a malloc call.  If the
102/// argument passed to malloc is a multiple of the size of the malloced type,
103/// then return that multiple.  For non-array mallocs, the multiple is
104/// constant 1.  Otherwise, return NULL for mallocs whose array size cannot be
105/// determined.
106Value *getMallocArraySize(CallInst *CI, const DataLayout *TD,
107                          const TargetLibraryInfo *TLI,
108                          bool LookThroughSExt = false);
109
110
111//===----------------------------------------------------------------------===//
112//  calloc Call Utility Functions.
113//
114
115/// extractCallocCall - Returns the corresponding CallInst if the instruction
116/// is a calloc call.
117const CallInst *extractCallocCall(const Value *I, const TargetLibraryInfo *TLI);
118static inline CallInst *extractCallocCall(Value *I,
119                                          const TargetLibraryInfo *TLI) {
120  return const_cast<CallInst*>(extractCallocCall((const Value*)I, TLI));
121}
122
123
124//===----------------------------------------------------------------------===//
125//  free Call Utility Functions.
126//
127
128/// isFreeCall - Returns non-null if the value is a call to the builtin free()
129const CallInst *isFreeCall(const Value *I, const TargetLibraryInfo *TLI);
130
131static inline CallInst *isFreeCall(Value *I, const TargetLibraryInfo *TLI) {
132  return const_cast<CallInst*>(isFreeCall((const Value*)I, TLI));
133}
134
135
136//===----------------------------------------------------------------------===//
137//  Utility functions to compute size of objects.
138//
139
140/// \brief Compute the size of the object pointed by Ptr. Returns true and the
141/// object size in Size if successful, and false otherwise.
142/// If RoundToAlign is true, then Size is rounded up to the aligment of allocas,
143/// byval arguments, and global variables.
144bool getObjectSize(const Value *Ptr, uint64_t &Size, const DataLayout *TD,
145                   const TargetLibraryInfo *TLI, bool RoundToAlign = false);
146
147
148
149typedef std::pair<APInt, APInt> SizeOffsetType;
150
151/// \brief Evaluate the size and offset of an object ponted by a Value*
152/// statically. Fails if size or offset are not known at compile time.
153class ObjectSizeOffsetVisitor
154  : public InstVisitor<ObjectSizeOffsetVisitor, SizeOffsetType> {
155
156  const DataLayout *TD;
157  const TargetLibraryInfo *TLI;
158  bool RoundToAlign;
159  unsigned IntTyBits;
160  APInt Zero;
161  SmallPtrSet<Instruction *, 8> SeenInsts;
162
163  APInt align(APInt Size, uint64_t Align);
164
165  SizeOffsetType unknown() {
166    return std::make_pair(APInt(), APInt());
167  }
168
169public:
170  ObjectSizeOffsetVisitor(const DataLayout *TD, const TargetLibraryInfo *TLI,
171                          LLVMContext &Context, bool RoundToAlign = false);
172
173  SizeOffsetType compute(Value *V);
174
175  bool knownSize(SizeOffsetType &SizeOffset) {
176    return SizeOffset.first.getBitWidth() > 1;
177  }
178
179  bool knownOffset(SizeOffsetType &SizeOffset) {
180    return SizeOffset.second.getBitWidth() > 1;
181  }
182
183  bool bothKnown(SizeOffsetType &SizeOffset) {
184    return knownSize(SizeOffset) && knownOffset(SizeOffset);
185  }
186
187  SizeOffsetType visitAllocaInst(AllocaInst &I);
188  SizeOffsetType visitArgument(Argument &A);
189  SizeOffsetType visitCallSite(CallSite CS);
190  SizeOffsetType visitConstantPointerNull(ConstantPointerNull&);
191  SizeOffsetType visitExtractElementInst(ExtractElementInst &I);
192  SizeOffsetType visitExtractValueInst(ExtractValueInst &I);
193  SizeOffsetType visitGEPOperator(GEPOperator &GEP);
194  SizeOffsetType visitGlobalAlias(GlobalAlias &GA);
195  SizeOffsetType visitGlobalVariable(GlobalVariable &GV);
196  SizeOffsetType visitIntToPtrInst(IntToPtrInst&);
197  SizeOffsetType visitLoadInst(LoadInst &I);
198  SizeOffsetType visitPHINode(PHINode&);
199  SizeOffsetType visitSelectInst(SelectInst &I);
200  SizeOffsetType visitUndefValue(UndefValue&);
201  SizeOffsetType visitInstruction(Instruction &I);
202};
203
204typedef std::pair<Value*, Value*> SizeOffsetEvalType;
205
206
207/// \brief Evaluate the size and offset of an object ponted by a Value*.
208/// May create code to compute the result at run-time.
209class ObjectSizeOffsetEvaluator
210  : public InstVisitor<ObjectSizeOffsetEvaluator, SizeOffsetEvalType> {
211
212  typedef IRBuilder<true, TargetFolder> BuilderTy;
213  typedef std::pair<WeakVH, WeakVH> WeakEvalType;
214  typedef DenseMap<const Value*, WeakEvalType> CacheMapTy;
215  typedef SmallPtrSet<const Value*, 8> PtrSetTy;
216
217  const DataLayout *TD;
218  const TargetLibraryInfo *TLI;
219  LLVMContext &Context;
220  BuilderTy Builder;
221  IntegerType *IntTy;
222  Value *Zero;
223  CacheMapTy CacheMap;
224  PtrSetTy SeenVals;
225
226  SizeOffsetEvalType unknown() {
227    return std::make_pair((Value*)0, (Value*)0);
228  }
229  SizeOffsetEvalType compute_(Value *V);
230
231public:
232  ObjectSizeOffsetEvaluator(const DataLayout *TD, const TargetLibraryInfo *TLI,
233                            LLVMContext &Context);
234  SizeOffsetEvalType compute(Value *V);
235
236  bool knownSize(SizeOffsetEvalType SizeOffset) {
237    return SizeOffset.first;
238  }
239
240  bool knownOffset(SizeOffsetEvalType SizeOffset) {
241    return SizeOffset.second;
242  }
243
244  bool anyKnown(SizeOffsetEvalType SizeOffset) {
245    return knownSize(SizeOffset) || knownOffset(SizeOffset);
246  }
247
248  bool bothKnown(SizeOffsetEvalType SizeOffset) {
249    return knownSize(SizeOffset) && knownOffset(SizeOffset);
250  }
251
252  SizeOffsetEvalType visitAllocaInst(AllocaInst &I);
253  SizeOffsetEvalType visitCallSite(CallSite CS);
254  SizeOffsetEvalType visitExtractElementInst(ExtractElementInst &I);
255  SizeOffsetEvalType visitExtractValueInst(ExtractValueInst &I);
256  SizeOffsetEvalType visitGEPOperator(GEPOperator &GEP);
257  SizeOffsetEvalType visitIntToPtrInst(IntToPtrInst&);
258  SizeOffsetEvalType visitLoadInst(LoadInst &I);
259  SizeOffsetEvalType visitPHINode(PHINode &PHI);
260  SizeOffsetEvalType visitSelectInst(SelectInst &I);
261  SizeOffsetEvalType visitInstruction(Instruction &I);
262};
263
264} // End llvm namespace
265
266#endif
267