MemoryBuiltins.h revision 84bcf93e0fd225de2217d1b712c01586a633a6d8
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/IRBuilder.h"
19#include "llvm/InstVisitor.h"
20#include "llvm/Operator.h"
21#include "llvm/ADT/DenseMap.h"
22#include "llvm/ADT/SmallPtrSet.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 visitGlobalVariable(GlobalVariable &GV);
195  SizeOffsetType visitIntToPtrInst(IntToPtrInst&);
196  SizeOffsetType visitLoadInst(LoadInst &I);
197  SizeOffsetType visitPHINode(PHINode&);
198  SizeOffsetType visitSelectInst(SelectInst &I);
199  SizeOffsetType visitUndefValue(UndefValue&);
200  SizeOffsetType visitInstruction(Instruction &I);
201};
202
203typedef std::pair<Value*, Value*> SizeOffsetEvalType;
204
205
206/// \brief Evaluate the size and offset of an object ponted by a Value*.
207/// May create code to compute the result at run-time.
208class ObjectSizeOffsetEvaluator
209  : public InstVisitor<ObjectSizeOffsetEvaluator, SizeOffsetEvalType> {
210
211  typedef IRBuilder<true, TargetFolder> BuilderTy;
212  typedef std::pair<WeakVH, WeakVH> WeakEvalType;
213  typedef DenseMap<const Value*, WeakEvalType> CacheMapTy;
214  typedef SmallPtrSet<const Value*, 8> PtrSetTy;
215
216  const DataLayout *TD;
217  const TargetLibraryInfo *TLI;
218  LLVMContext &Context;
219  BuilderTy Builder;
220  IntegerType *IntTy;
221  Value *Zero;
222  CacheMapTy CacheMap;
223  PtrSetTy SeenVals;
224
225  SizeOffsetEvalType unknown() {
226    return std::make_pair((Value*)0, (Value*)0);
227  }
228  SizeOffsetEvalType compute_(Value *V);
229
230public:
231  ObjectSizeOffsetEvaluator(const DataLayout *TD, const TargetLibraryInfo *TLI,
232                            LLVMContext &Context);
233  SizeOffsetEvalType compute(Value *V);
234
235  bool knownSize(SizeOffsetEvalType SizeOffset) {
236    return SizeOffset.first;
237  }
238
239  bool knownOffset(SizeOffsetEvalType SizeOffset) {
240    return SizeOffset.second;
241  }
242
243  bool anyKnown(SizeOffsetEvalType SizeOffset) {
244    return knownSize(SizeOffset) || knownOffset(SizeOffset);
245  }
246
247  bool bothKnown(SizeOffsetEvalType SizeOffset) {
248    return knownSize(SizeOffset) && knownOffset(SizeOffset);
249  }
250
251  SizeOffsetEvalType visitAllocaInst(AllocaInst &I);
252  SizeOffsetEvalType visitCallSite(CallSite CS);
253  SizeOffsetEvalType visitExtractElementInst(ExtractElementInst &I);
254  SizeOffsetEvalType visitExtractValueInst(ExtractValueInst &I);
255  SizeOffsetEvalType visitGEPOperator(GEPOperator &GEP);
256  SizeOffsetEvalType visitIntToPtrInst(IntToPtrInst&);
257  SizeOffsetEvalType visitLoadInst(LoadInst &I);
258  SizeOffsetEvalType visitPHINode(PHINode &PHI);
259  SizeOffsetEvalType visitSelectInst(SelectInst &I);
260  SizeOffsetEvalType visitInstruction(Instruction &I);
261};
262
263} // End llvm namespace
264
265#endif
266