Victor Hernandez | f006b18 | 2009-10-27 20:05:49 +0000 | [diff] [blame] | 1 | //===------ MemoryBuiltins.cpp - Identify calls to memory builtins --------===// |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 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 | // |
Victor Hernandez | f006b18 | 2009-10-27 20:05:49 +0000 | [diff] [blame] | 10 | // This family of functions identifies calls to builtin functions that allocate |
Michael Ilseman | 9333ffb | 2013-03-08 21:03:09 +0000 | [diff] [blame] | 11 | // or free memory. |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 15 | #define DEBUG_TYPE "memory-builtins" |
Victor Hernandez | f006b18 | 2009-10-27 20:05:49 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/MemoryBuiltins.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/STLExtras.h" |
| 18 | #include "llvm/ADT/Statistic.h" |
| 19 | #include "llvm/Analysis/ValueTracking.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 20 | #include "llvm/IR/DataLayout.h" |
| 21 | #include "llvm/IR/GlobalVariable.h" |
| 22 | #include "llvm/IR/Instructions.h" |
| 23 | #include "llvm/IR/Intrinsics.h" |
| 24 | #include "llvm/IR/Metadata.h" |
| 25 | #include "llvm/IR/Module.h" |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Debug.h" |
| 27 | #include "llvm/Support/MathExtras.h" |
| 28 | #include "llvm/Support/raw_ostream.h" |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetLibraryInfo.h" |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 30 | #include "llvm/Transforms/Utils/Local.h" |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 31 | using namespace llvm; |
| 32 | |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 33 | enum AllocType { |
Benjamin Kramer | d44f9f2 | 2013-09-24 17:34:29 +0000 | [diff] [blame] | 34 | OpNewLike = 1<<0, // allocates; never returns null |
| 35 | MallocLike = 1<<1 | OpNewLike, // allocates; may return null |
| 36 | CallocLike = 1<<2, // allocates + bzero |
| 37 | ReallocLike = 1<<3, // reallocates |
| 38 | StrDupLike = 1<<4, |
| 39 | AllocLike = MallocLike | CallocLike | StrDupLike, |
Benjamin Kramer | 989779c | 2013-09-24 17:15:14 +0000 | [diff] [blame] | 40 | AnyAlloc = AllocLike | ReallocLike |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 41 | }; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 42 | |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 43 | struct AllocFnsTy { |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 44 | LibFunc::Func Func; |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 45 | AllocType AllocTy; |
| 46 | unsigned char NumParams; |
| 47 | // First and Second size parameters (or -1 if unused) |
Nuno Lopes | ef22f04 | 2012-06-21 18:38:26 +0000 | [diff] [blame] | 48 | signed char FstParam, SndParam; |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 49 | }; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 50 | |
Nuno Lopes | 41a3f25 | 2012-06-28 16:34:03 +0000 | [diff] [blame] | 51 | // FIXME: certain users need more information. E.g., SimplifyLibCalls needs to |
| 52 | // know which functions are nounwind, noalias, nocapture parameters, etc. |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 53 | static const AllocFnsTy AllocationFnData[] = { |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 54 | {LibFunc::malloc, MallocLike, 1, 0, -1}, |
| 55 | {LibFunc::valloc, MallocLike, 1, 0, -1}, |
Benjamin Kramer | 6629210 | 2013-09-24 16:37:51 +0000 | [diff] [blame] | 56 | {LibFunc::Znwj, OpNewLike, 1, 0, -1}, // new(unsigned int) |
Nadav Rotem | e43e2d8 | 2013-04-09 04:43:46 +0000 | [diff] [blame] | 57 | {LibFunc::ZnwjRKSt9nothrow_t, MallocLike, 2, 0, -1}, // new(unsigned int, nothrow) |
Benjamin Kramer | 6629210 | 2013-09-24 16:37:51 +0000 | [diff] [blame] | 58 | {LibFunc::Znwm, OpNewLike, 1, 0, -1}, // new(unsigned long) |
Nadav Rotem | e43e2d8 | 2013-04-09 04:43:46 +0000 | [diff] [blame] | 59 | {LibFunc::ZnwmRKSt9nothrow_t, MallocLike, 2, 0, -1}, // new(unsigned long, nothrow) |
Benjamin Kramer | 6629210 | 2013-09-24 16:37:51 +0000 | [diff] [blame] | 60 | {LibFunc::Znaj, OpNewLike, 1, 0, -1}, // new[](unsigned int) |
Nadav Rotem | e43e2d8 | 2013-04-09 04:43:46 +0000 | [diff] [blame] | 61 | {LibFunc::ZnajRKSt9nothrow_t, MallocLike, 2, 0, -1}, // new[](unsigned int, nothrow) |
Benjamin Kramer | 6629210 | 2013-09-24 16:37:51 +0000 | [diff] [blame] | 62 | {LibFunc::Znam, OpNewLike, 1, 0, -1}, // new[](unsigned long) |
Nadav Rotem | e43e2d8 | 2013-04-09 04:43:46 +0000 | [diff] [blame] | 63 | {LibFunc::ZnamRKSt9nothrow_t, MallocLike, 2, 0, -1}, // new[](unsigned long, nothrow) |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 64 | {LibFunc::posix_memalign, MallocLike, 3, 2, -1}, |
| 65 | {LibFunc::calloc, CallocLike, 2, 0, 1}, |
| 66 | {LibFunc::realloc, ReallocLike, 2, 1, -1}, |
| 67 | {LibFunc::reallocf, ReallocLike, 2, 1, -1}, |
| 68 | {LibFunc::strdup, StrDupLike, 1, -1, -1}, |
| 69 | {LibFunc::strndup, StrDupLike, 2, 1, -1} |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 70 | }; |
| 71 | |
| 72 | |
| 73 | static Function *getCalledFunction(const Value *V, bool LookThroughBitCast) { |
| 74 | if (LookThroughBitCast) |
| 75 | V = V->stripPointerCasts(); |
Nuno Lopes | 2b3e958 | 2012-06-21 21:25:05 +0000 | [diff] [blame] | 76 | |
Nuno Lopes | d845c34 | 2012-06-22 15:50:53 +0000 | [diff] [blame] | 77 | CallSite CS(const_cast<Value*>(V)); |
| 78 | if (!CS.getInstruction()) |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 79 | return 0; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 80 | |
Michael Gottesman | 2253a2f | 2013-06-27 00:25:01 +0000 | [diff] [blame] | 81 | if (CS.isNoBuiltin()) |
Richard Smith | eb351eb | 2013-05-16 04:12:04 +0000 | [diff] [blame] | 82 | return 0; |
| 83 | |
Nuno Lopes | 2b3e958 | 2012-06-21 21:25:05 +0000 | [diff] [blame] | 84 | Function *Callee = CS.getCalledFunction(); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 85 | if (!Callee || !Callee->isDeclaration()) |
| 86 | return 0; |
| 87 | return Callee; |
| 88 | } |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 89 | |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 90 | /// \brief Returns the allocation data for the given value if it is a call to a |
| 91 | /// known allocation function, and NULL otherwise. |
| 92 | static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy, |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 93 | const TargetLibraryInfo *TLI, |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 94 | bool LookThroughBitCast = false) { |
Michael Ilseman | cacf971 | 2013-03-08 21:15:00 +0000 | [diff] [blame] | 95 | // Skip intrinsics |
| 96 | if (isa<IntrinsicInst>(V)) |
| 97 | return 0; |
| 98 | |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 99 | Function *Callee = getCalledFunction(V, LookThroughBitCast); |
| 100 | if (!Callee) |
| 101 | return 0; |
| 102 | |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 103 | // Make sure that the function is available. |
| 104 | StringRef FnName = Callee->getName(); |
| 105 | LibFunc::Func TLIFn; |
| 106 | if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn)) |
| 107 | return 0; |
| 108 | |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 109 | unsigned i = 0; |
| 110 | bool found = false; |
| 111 | for ( ; i < array_lengthof(AllocationFnData); ++i) { |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 112 | if (AllocationFnData[i].Func == TLIFn) { |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 113 | found = true; |
| 114 | break; |
| 115 | } |
| 116 | } |
| 117 | if (!found) |
| 118 | return 0; |
| 119 | |
| 120 | const AllocFnsTy *FnData = &AllocationFnData[i]; |
Benjamin Kramer | d44f9f2 | 2013-09-24 17:34:29 +0000 | [diff] [blame] | 121 | if ((FnData->AllocTy & AllocTy) != FnData->AllocTy) |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 122 | return 0; |
| 123 | |
| 124 | // Check function prototype. |
Nuno Lopes | ef22f04 | 2012-06-21 18:38:26 +0000 | [diff] [blame] | 125 | int FstParam = FnData->FstParam; |
| 126 | int SndParam = FnData->SndParam; |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 127 | FunctionType *FTy = Callee->getFunctionType(); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 128 | |
| 129 | if (FTy->getReturnType() == Type::getInt8PtrTy(FTy->getContext()) && |
| 130 | FTy->getNumParams() == FnData->NumParams && |
Nuno Lopes | ef22f04 | 2012-06-21 18:38:26 +0000 | [diff] [blame] | 131 | (FstParam < 0 || |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 132 | (FTy->getParamType(FstParam)->isIntegerTy(32) || |
| 133 | FTy->getParamType(FstParam)->isIntegerTy(64))) && |
Nuno Lopes | ef22f04 | 2012-06-21 18:38:26 +0000 | [diff] [blame] | 134 | (SndParam < 0 || |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 135 | FTy->getParamType(SndParam)->isIntegerTy(32) || |
| 136 | FTy->getParamType(SndParam)->isIntegerTy(64))) |
| 137 | return FnData; |
| 138 | return 0; |
| 139 | } |
| 140 | |
| 141 | static bool hasNoAliasAttr(const Value *V, bool LookThroughBitCast) { |
Nuno Lopes | e8742d0 | 2012-06-25 16:17:54 +0000 | [diff] [blame] | 142 | ImmutableCallSite CS(LookThroughBitCast ? V->stripPointerCasts() : V); |
Bill Wendling | 034b94b | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 143 | return CS && CS.hasFnAttr(Attribute::NoAlias); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | |
Nuno Lopes | 2b3e958 | 2012-06-21 21:25:05 +0000 | [diff] [blame] | 147 | /// \brief Tests if a value is a call or invoke to a library function that |
| 148 | /// allocates or reallocates memory (either malloc, calloc, realloc, or strdup |
| 149 | /// like). |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 150 | bool llvm::isAllocationFn(const Value *V, const TargetLibraryInfo *TLI, |
| 151 | bool LookThroughBitCast) { |
| 152 | return getAllocationData(V, AnyAlloc, TLI, LookThroughBitCast); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 153 | } |
| 154 | |
Nuno Lopes | 2b3e958 | 2012-06-21 21:25:05 +0000 | [diff] [blame] | 155 | /// \brief Tests if a value is a call or invoke to a function that returns a |
Nuno Lopes | 41a3f25 | 2012-06-28 16:34:03 +0000 | [diff] [blame] | 156 | /// NoAlias pointer (including malloc/calloc/realloc/strdup-like functions). |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 157 | bool llvm::isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI, |
| 158 | bool LookThroughBitCast) { |
Nuno Lopes | 41a3f25 | 2012-06-28 16:34:03 +0000 | [diff] [blame] | 159 | // it's safe to consider realloc as noalias since accessing the original |
| 160 | // pointer is undefined behavior |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 161 | return isAllocationFn(V, TLI, LookThroughBitCast) || |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 162 | hasNoAliasAttr(V, LookThroughBitCast); |
| 163 | } |
| 164 | |
Nuno Lopes | 2b3e958 | 2012-06-21 21:25:05 +0000 | [diff] [blame] | 165 | /// \brief Tests if a value is a call or invoke to a library function that |
| 166 | /// allocates uninitialized memory (such as malloc). |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 167 | bool llvm::isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, |
| 168 | bool LookThroughBitCast) { |
| 169 | return getAllocationData(V, MallocLike, TLI, LookThroughBitCast); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 170 | } |
| 171 | |
Nuno Lopes | 2b3e958 | 2012-06-21 21:25:05 +0000 | [diff] [blame] | 172 | /// \brief Tests if a value is a call or invoke to a library function that |
| 173 | /// allocates zero-filled memory (such as calloc). |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 174 | bool llvm::isCallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, |
| 175 | bool LookThroughBitCast) { |
| 176 | return getAllocationData(V, CallocLike, TLI, LookThroughBitCast); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Nuno Lopes | 2b3e958 | 2012-06-21 21:25:05 +0000 | [diff] [blame] | 179 | /// \brief Tests if a value is a call or invoke to a library function that |
| 180 | /// allocates memory (either malloc, calloc, or strdup like). |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 181 | bool llvm::isAllocLikeFn(const Value *V, const TargetLibraryInfo *TLI, |
| 182 | bool LookThroughBitCast) { |
| 183 | return getAllocationData(V, AllocLike, TLI, LookThroughBitCast); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Nuno Lopes | 2b3e958 | 2012-06-21 21:25:05 +0000 | [diff] [blame] | 186 | /// \brief Tests if a value is a call or invoke to a library function that |
| 187 | /// reallocates memory (such as realloc). |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 188 | bool llvm::isReallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, |
| 189 | bool LookThroughBitCast) { |
| 190 | return getAllocationData(V, ReallocLike, TLI, LookThroughBitCast); |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Benjamin Kramer | 6629210 | 2013-09-24 16:37:51 +0000 | [diff] [blame] | 193 | /// \brief Tests if a value is a call or invoke to a library function that |
| 194 | /// allocates memory and never returns null (such as operator new). |
| 195 | bool llvm::isOperatorNewLikeFn(const Value *V, const TargetLibraryInfo *TLI, |
| 196 | bool LookThroughBitCast) { |
| 197 | return getAllocationData(V, OpNewLike, TLI, LookThroughBitCast); |
| 198 | } |
| 199 | |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 200 | /// extractMallocCall - Returns the corresponding CallInst if the instruction |
| 201 | /// is a malloc call. Since CallInst::CreateMalloc() only creates calls, we |
| 202 | /// ignore InvokeInst here. |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 203 | const CallInst *llvm::extractMallocCall(const Value *I, |
| 204 | const TargetLibraryInfo *TLI) { |
| 205 | return isMallocLikeFn(I, TLI) ? dyn_cast<CallInst>(I) : 0; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 208 | static Value *computeArraySize(const CallInst *CI, const DataLayout *TD, |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 209 | const TargetLibraryInfo *TLI, |
Victor Hernandez | 8e345a1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 210 | bool LookThroughSExt = false) { |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 211 | if (!CI) |
Jakub Staszak | a9cd516 | 2013-03-07 20:01:47 +0000 | [diff] [blame] | 212 | return 0; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 213 | |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 214 | // The size of the malloc's result type must be known to determine array size. |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 215 | Type *T = getMallocAllocatedType(CI, TLI); |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 216 | if (!T || !T->isSized() || !TD) |
Jakub Staszak | a9cd516 | 2013-03-07 20:01:47 +0000 | [diff] [blame] | 217 | return 0; |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 218 | |
Victor Hernandez | 8e345a1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 219 | unsigned ElementSize = TD->getTypeAllocSize(T); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 220 | if (StructType *ST = dyn_cast<StructType>(T)) |
Victor Hernandez | 8e345a1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 221 | ElementSize = TD->getStructLayout(ST)->getSizeInBytes(); |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 222 | |
Gabor Greif | e3401c4 | 2010-06-23 21:41:47 +0000 | [diff] [blame] | 223 | // If malloc call's arg can be determined to be a multiple of ElementSize, |
Victor Hernandez | 8e345a1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 224 | // return the multiple. Otherwise, return NULL. |
Gabor Greif | e3401c4 | 2010-06-23 21:41:47 +0000 | [diff] [blame] | 225 | Value *MallocArg = CI->getArgOperand(0); |
Jakub Staszak | a9cd516 | 2013-03-07 20:01:47 +0000 | [diff] [blame] | 226 | Value *Multiple = 0; |
Victor Hernandez | 8e345a1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 227 | if (ComputeMultiple(MallocArg, ElementSize, Multiple, |
Dan Gohman | 3dbb9e6 | 2009-11-18 00:58:27 +0000 | [diff] [blame] | 228 | LookThroughSExt)) |
Victor Hernandez | 8e345a1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 229 | return Multiple; |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 230 | |
Jakub Staszak | a9cd516 | 2013-03-07 20:01:47 +0000 | [diff] [blame] | 231 | return 0; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Michael Ilseman | 9333ffb | 2013-03-08 21:03:09 +0000 | [diff] [blame] | 234 | /// isArrayMalloc - Returns the corresponding CallInst if the instruction |
Victor Hernandez | 90f48e7 | 2009-10-28 20:18:55 +0000 | [diff] [blame] | 235 | /// is a call to malloc whose array size can be determined and the array size |
| 236 | /// is not constant 1. Otherwise, return NULL. |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 237 | const CallInst *llvm::isArrayMalloc(const Value *I, |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 238 | const DataLayout *TD, |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 239 | const TargetLibraryInfo *TLI) { |
| 240 | const CallInst *CI = extractMallocCall(I, TLI); |
| 241 | Value *ArraySize = computeArraySize(CI, TD, TLI); |
Victor Hernandez | 90f48e7 | 2009-10-28 20:18:55 +0000 | [diff] [blame] | 242 | |
Jakub Staszak | b1b6c17 | 2013-03-07 20:22:39 +0000 | [diff] [blame] | 243 | if (ConstantInt *ConstSize = dyn_cast_or_null<ConstantInt>(ArraySize)) |
| 244 | if (ConstSize->isOne()) |
| 245 | return CI; |
Victor Hernandez | 90f48e7 | 2009-10-28 20:18:55 +0000 | [diff] [blame] | 246 | |
| 247 | // CI is a non-array malloc or we can't figure out that it is an array malloc. |
Jakub Staszak | a9cd516 | 2013-03-07 20:01:47 +0000 | [diff] [blame] | 248 | return 0; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | /// getMallocType - Returns the PointerType resulting from the malloc call. |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 252 | /// The PointerType depends on the number of bitcast uses of the malloc call: |
| 253 | /// 0: PointerType is the calls' return type. |
| 254 | /// 1: PointerType is the bitcast's result type. |
| 255 | /// >1: Unique PointerType cannot be determined, return NULL. |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 256 | PointerType *llvm::getMallocType(const CallInst *CI, |
| 257 | const TargetLibraryInfo *TLI) { |
| 258 | assert(isMallocLikeFn(CI, TLI) && "getMallocType and not malloc call"); |
Michael Ilseman | 9333ffb | 2013-03-08 21:03:09 +0000 | [diff] [blame] | 259 | |
Jakub Staszak | a9cd516 | 2013-03-07 20:01:47 +0000 | [diff] [blame] | 260 | PointerType *MallocType = 0; |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 261 | unsigned NumOfBitCastUses = 0; |
| 262 | |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 263 | // Determine if CallInst has a bitcast use. |
Gabor Greif | 60ad781 | 2010-03-25 23:06:16 +0000 | [diff] [blame] | 264 | for (Value::const_use_iterator UI = CI->use_begin(), E = CI->use_end(); |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 265 | UI != E; ) |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 266 | if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) { |
| 267 | MallocType = cast<PointerType>(BCI->getDestTy()); |
| 268 | NumOfBitCastUses++; |
| 269 | } |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 270 | |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 271 | // Malloc call has 1 bitcast use, so type is the bitcast's destination type. |
| 272 | if (NumOfBitCastUses == 1) |
| 273 | return MallocType; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 274 | |
Victor Hernandez | 60cfc03 | 2009-09-22 18:50:03 +0000 | [diff] [blame] | 275 | // Malloc call was not bitcast, so type is the malloc function's return type. |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 276 | if (NumOfBitCastUses == 0) |
Victor Hernandez | 88d9839 | 2009-09-18 19:20:02 +0000 | [diff] [blame] | 277 | return cast<PointerType>(CI->getType()); |
| 278 | |
| 279 | // Type could not be determined. |
Jakub Staszak | a9cd516 | 2013-03-07 20:01:47 +0000 | [diff] [blame] | 280 | return 0; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Victor Hernandez | 9d0b704 | 2009-11-07 00:16:28 +0000 | [diff] [blame] | 283 | /// getMallocAllocatedType - Returns the Type allocated by malloc call. |
| 284 | /// The Type depends on the number of bitcast uses of the malloc call: |
| 285 | /// 0: PointerType is the malloc calls' return type. |
| 286 | /// 1: PointerType is the bitcast's result type. |
| 287 | /// >1: Unique PointerType cannot be determined, return NULL. |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 288 | Type *llvm::getMallocAllocatedType(const CallInst *CI, |
| 289 | const TargetLibraryInfo *TLI) { |
| 290 | PointerType *PT = getMallocType(CI, TLI); |
Jakub Staszak | a9cd516 | 2013-03-07 20:01:47 +0000 | [diff] [blame] | 291 | return PT ? PT->getElementType() : 0; |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Michael Ilseman | 9333ffb | 2013-03-08 21:03:09 +0000 | [diff] [blame] | 294 | /// getMallocArraySize - Returns the array size of a malloc call. If the |
Victor Hernandez | 90f48e7 | 2009-10-28 20:18:55 +0000 | [diff] [blame] | 295 | /// argument passed to malloc is a multiple of the size of the malloced type, |
| 296 | /// then return that multiple. For non-array mallocs, the multiple is |
| 297 | /// constant 1. Otherwise, return NULL for mallocs whose array size cannot be |
Victor Hernandez | 2491ce0 | 2009-10-15 20:14:52 +0000 | [diff] [blame] | 298 | /// determined. |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 299 | Value *llvm::getMallocArraySize(CallInst *CI, const DataLayout *TD, |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 300 | const TargetLibraryInfo *TLI, |
Victor Hernandez | 8e345a1 | 2009-11-10 08:32:25 +0000 | [diff] [blame] | 301 | bool LookThroughSExt) { |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 302 | assert(isMallocLikeFn(CI, TLI) && "getMallocArraySize and not malloc call"); |
| 303 | return computeArraySize(CI, TD, TLI, LookThroughSExt); |
Evan Cheng | fabcb91 | 2009-09-10 04:36:43 +0000 | [diff] [blame] | 304 | } |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 305 | |
Nuno Lopes | 252ef56 | 2012-05-03 21:19:58 +0000 | [diff] [blame] | 306 | |
Nuno Lopes | 252ef56 | 2012-05-03 21:19:58 +0000 | [diff] [blame] | 307 | /// extractCallocCall - Returns the corresponding CallInst if the instruction |
| 308 | /// is a calloc call. |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 309 | const CallInst *llvm::extractCallocCall(const Value *I, |
| 310 | const TargetLibraryInfo *TLI) { |
| 311 | return isCallocLikeFn(I, TLI) ? cast<CallInst>(I) : 0; |
Nuno Lopes | 252ef56 | 2012-05-03 21:19:58 +0000 | [diff] [blame] | 312 | } |
| 313 | |
Victor Hernandez | 046e78c | 2009-10-26 23:43:48 +0000 | [diff] [blame] | 314 | |
Gabor Greif | 02680f9 | 2010-06-23 21:51:12 +0000 | [diff] [blame] | 315 | /// isFreeCall - Returns non-null if the value is a call to the builtin free() |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 316 | const CallInst *llvm::isFreeCall(const Value *I, const TargetLibraryInfo *TLI) { |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 317 | const CallInst *CI = dyn_cast<CallInst>(I); |
Michael Ilseman | cacf971 | 2013-03-08 21:15:00 +0000 | [diff] [blame] | 318 | if (!CI || isa<IntrinsicInst>(CI)) |
Gabor Greif | 02680f9 | 2010-06-23 21:51:12 +0000 | [diff] [blame] | 319 | return 0; |
Victor Hernandez | 3ad70d5 | 2009-11-03 20:39:35 +0000 | [diff] [blame] | 320 | Function *Callee = CI->getCalledFunction(); |
Nick Lewycky | 42e72ca | 2011-03-15 07:31:32 +0000 | [diff] [blame] | 321 | if (Callee == 0 || !Callee->isDeclaration()) |
| 322 | return 0; |
| 323 | |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 324 | StringRef FnName = Callee->getName(); |
| 325 | LibFunc::Func TLIFn; |
| 326 | if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn)) |
| 327 | return 0; |
| 328 | |
Richard Smith | 72c8331 | 2013-07-21 23:11:42 +0000 | [diff] [blame] | 329 | unsigned ExpectedNumParams; |
| 330 | if (TLIFn == LibFunc::free || |
| 331 | TLIFn == LibFunc::ZdlPv || // operator delete(void*) |
| 332 | TLIFn == LibFunc::ZdaPv) // operator delete[](void*) |
| 333 | ExpectedNumParams = 1; |
| 334 | else if (TLIFn == LibFunc::ZdlPvRKSt9nothrow_t || // delete(void*, nothrow) |
| 335 | TLIFn == LibFunc::ZdaPvRKSt9nothrow_t) // delete[](void*, nothrow) |
| 336 | ExpectedNumParams = 2; |
| 337 | else |
Gabor Greif | 02680f9 | 2010-06-23 21:51:12 +0000 | [diff] [blame] | 338 | return 0; |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 339 | |
| 340 | // Check free prototype. |
Michael Ilseman | 9333ffb | 2013-03-08 21:03:09 +0000 | [diff] [blame] | 341 | // FIXME: workaround for PR5130, this will be obsolete when a nobuiltin |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 342 | // attribute will exist. |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 343 | FunctionType *FTy = Callee->getFunctionType(); |
Victor Hernandez | 3ad70d5 | 2009-11-03 20:39:35 +0000 | [diff] [blame] | 344 | if (!FTy->getReturnType()->isVoidTy()) |
Gabor Greif | 02680f9 | 2010-06-23 21:51:12 +0000 | [diff] [blame] | 345 | return 0; |
Richard Smith | 72c8331 | 2013-07-21 23:11:42 +0000 | [diff] [blame] | 346 | if (FTy->getNumParams() != ExpectedNumParams) |
Gabor Greif | 02680f9 | 2010-06-23 21:51:12 +0000 | [diff] [blame] | 347 | return 0; |
Chris Lattner | ebb2189 | 2011-06-18 21:46:23 +0000 | [diff] [blame] | 348 | if (FTy->getParamType(0) != Type::getInt8PtrTy(Callee->getContext())) |
Gabor Greif | 02680f9 | 2010-06-23 21:51:12 +0000 | [diff] [blame] | 349 | return 0; |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 350 | |
Gabor Greif | 02680f9 | 2010-06-23 21:51:12 +0000 | [diff] [blame] | 351 | return CI; |
Victor Hernandez | 66284e0 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 352 | } |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 353 | |
| 354 | |
| 355 | |
| 356 | //===----------------------------------------------------------------------===// |
| 357 | // Utility functions to compute size of objects. |
| 358 | // |
| 359 | |
| 360 | |
| 361 | /// \brief Compute the size of the object pointed by Ptr. Returns true and the |
| 362 | /// object size in Size if successful, and false otherwise. |
| 363 | /// If RoundToAlign is true, then Size is rounded up to the aligment of allocas, |
| 364 | /// byval arguments, and global variables. |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 365 | bool llvm::getObjectSize(const Value *Ptr, uint64_t &Size, const DataLayout *TD, |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 366 | const TargetLibraryInfo *TLI, bool RoundToAlign) { |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 367 | if (!TD) |
| 368 | return false; |
| 369 | |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 370 | ObjectSizeOffsetVisitor Visitor(TD, TLI, Ptr->getContext(), RoundToAlign); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 371 | SizeOffsetType Data = Visitor.compute(const_cast<Value*>(Ptr)); |
| 372 | if (!Visitor.bothKnown(Data)) |
| 373 | return false; |
| 374 | |
| 375 | APInt ObjSize = Data.first, Offset = Data.second; |
| 376 | // check for overflow |
| 377 | if (Offset.slt(0) || ObjSize.ult(Offset)) |
| 378 | Size = 0; |
| 379 | else |
| 380 | Size = (ObjSize - Offset).getZExtValue(); |
| 381 | return true; |
| 382 | } |
| 383 | |
| 384 | |
| 385 | STATISTIC(ObjectVisitorArgument, |
| 386 | "Number of arguments with unsolved size and offset"); |
| 387 | STATISTIC(ObjectVisitorLoad, |
| 388 | "Number of load instructions with unsolved size and offset"); |
| 389 | |
| 390 | |
| 391 | APInt ObjectSizeOffsetVisitor::align(APInt Size, uint64_t Align) { |
| 392 | if (RoundToAlign && Align) |
| 393 | return APInt(IntTyBits, RoundUpToAlignment(Size.getZExtValue(), Align)); |
| 394 | return Size; |
| 395 | } |
| 396 | |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 397 | ObjectSizeOffsetVisitor::ObjectSizeOffsetVisitor(const DataLayout *TD, |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 398 | const TargetLibraryInfo *TLI, |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 399 | LLVMContext &Context, |
Chandler Carruth | ece6c6b | 2012-11-01 08:07:29 +0000 | [diff] [blame] | 400 | bool RoundToAlign) |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 401 | : TD(TD), TLI(TLI), RoundToAlign(RoundToAlign) { |
Chandler Carruth | ece6c6b | 2012-11-01 08:07:29 +0000 | [diff] [blame] | 402 | IntegerType *IntTy = TD->getIntPtrType(Context); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 403 | IntTyBits = IntTy->getBitWidth(); |
| 404 | Zero = APInt::getNullValue(IntTyBits); |
| 405 | } |
| 406 | |
| 407 | SizeOffsetType ObjectSizeOffsetVisitor::compute(Value *V) { |
| 408 | V = V->stripPointerCasts(); |
Nadav Rotem | 8e4df48 | 2013-04-09 18:16:05 +0000 | [diff] [blame] | 409 | if (Instruction *I = dyn_cast<Instruction>(V)) { |
| 410 | // If we have already seen this instruction, bail out. Cycles can happen in |
| 411 | // unreachable code after constant propagation. |
| 412 | if (!SeenInsts.insert(I)) |
| 413 | return unknown(); |
Nuno Lopes | 0a9ff4c | 2012-12-31 20:45:10 +0000 | [diff] [blame] | 414 | |
Benjamin Kramer | 168843c | 2012-08-17 19:26:41 +0000 | [diff] [blame] | 415 | if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) |
Nadav Rotem | 8e4df48 | 2013-04-09 18:16:05 +0000 | [diff] [blame] | 416 | return visitGEPOperator(*GEP); |
| 417 | return visit(*I); |
Benjamin Kramer | 168843c | 2012-08-17 19:26:41 +0000 | [diff] [blame] | 418 | } |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 419 | if (Argument *A = dyn_cast<Argument>(V)) |
| 420 | return visitArgument(*A); |
| 421 | if (ConstantPointerNull *P = dyn_cast<ConstantPointerNull>(V)) |
| 422 | return visitConstantPointerNull(*P); |
Nuno Lopes | 41be2fb | 2012-12-31 16:23:48 +0000 | [diff] [blame] | 423 | if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) |
| 424 | return visitGlobalAlias(*GA); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 425 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) |
| 426 | return visitGlobalVariable(*GV); |
| 427 | if (UndefValue *UV = dyn_cast<UndefValue>(V)) |
| 428 | return visitUndefValue(*UV); |
Benjamin Kramer | 168843c | 2012-08-17 19:26:41 +0000 | [diff] [blame] | 429 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) { |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 430 | if (CE->getOpcode() == Instruction::IntToPtr) |
| 431 | return unknown(); // clueless |
Nadav Rotem | 8e4df48 | 2013-04-09 18:16:05 +0000 | [diff] [blame] | 432 | if (CE->getOpcode() == Instruction::GetElementPtr) |
| 433 | return visitGEPOperator(cast<GEPOperator>(*CE)); |
Benjamin Kramer | 168843c | 2012-08-17 19:26:41 +0000 | [diff] [blame] | 434 | } |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 435 | |
| 436 | DEBUG(dbgs() << "ObjectSizeOffsetVisitor::compute() unhandled value: " << *V |
| 437 | << '\n'); |
| 438 | return unknown(); |
| 439 | } |
| 440 | |
| 441 | SizeOffsetType ObjectSizeOffsetVisitor::visitAllocaInst(AllocaInst &I) { |
| 442 | if (!I.getAllocatedType()->isSized()) |
| 443 | return unknown(); |
| 444 | |
| 445 | APInt Size(IntTyBits, TD->getTypeAllocSize(I.getAllocatedType())); |
| 446 | if (!I.isArrayAllocation()) |
| 447 | return std::make_pair(align(Size, I.getAlignment()), Zero); |
| 448 | |
| 449 | Value *ArraySize = I.getArraySize(); |
| 450 | if (const ConstantInt *C = dyn_cast<ConstantInt>(ArraySize)) { |
| 451 | Size *= C->getValue().zextOrSelf(IntTyBits); |
| 452 | return std::make_pair(align(Size, I.getAlignment()), Zero); |
| 453 | } |
| 454 | return unknown(); |
| 455 | } |
| 456 | |
| 457 | SizeOffsetType ObjectSizeOffsetVisitor::visitArgument(Argument &A) { |
| 458 | // no interprocedural analysis is done at the moment |
| 459 | if (!A.hasByValAttr()) { |
| 460 | ++ObjectVisitorArgument; |
| 461 | return unknown(); |
| 462 | } |
| 463 | PointerType *PT = cast<PointerType>(A.getType()); |
| 464 | APInt Size(IntTyBits, TD->getTypeAllocSize(PT->getElementType())); |
| 465 | return std::make_pair(align(Size, A.getParamAlignment()), Zero); |
| 466 | } |
| 467 | |
| 468 | SizeOffsetType ObjectSizeOffsetVisitor::visitCallSite(CallSite CS) { |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 469 | const AllocFnsTy *FnData = getAllocationData(CS.getInstruction(), AnyAlloc, |
| 470 | TLI); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 471 | if (!FnData) |
| 472 | return unknown(); |
| 473 | |
| 474 | // handle strdup-like functions separately |
| 475 | if (FnData->AllocTy == StrDupLike) { |
Nuno Lopes | 9827c8e | 2012-07-24 16:28:13 +0000 | [diff] [blame] | 476 | APInt Size(IntTyBits, GetStringLength(CS.getArgument(0))); |
| 477 | if (!Size) |
| 478 | return unknown(); |
| 479 | |
| 480 | // strndup limits strlen |
| 481 | if (FnData->FstParam > 0) { |
| 482 | ConstantInt *Arg= dyn_cast<ConstantInt>(CS.getArgument(FnData->FstParam)); |
| 483 | if (!Arg) |
| 484 | return unknown(); |
| 485 | |
| 486 | APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits); |
| 487 | if (Size.ugt(MaxSize)) |
| 488 | Size = MaxSize + 1; |
| 489 | } |
| 490 | return std::make_pair(Size, Zero); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | ConstantInt *Arg = dyn_cast<ConstantInt>(CS.getArgument(FnData->FstParam)); |
| 494 | if (!Arg) |
| 495 | return unknown(); |
| 496 | |
Nuno Lopes | 034dd6c | 2012-06-21 16:47:58 +0000 | [diff] [blame] | 497 | APInt Size = Arg->getValue().zextOrSelf(IntTyBits); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 498 | // size determined by just 1 parameter |
Nuno Lopes | ef22f04 | 2012-06-21 18:38:26 +0000 | [diff] [blame] | 499 | if (FnData->SndParam < 0) |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 500 | return std::make_pair(Size, Zero); |
| 501 | |
| 502 | Arg = dyn_cast<ConstantInt>(CS.getArgument(FnData->SndParam)); |
| 503 | if (!Arg) |
| 504 | return unknown(); |
| 505 | |
Nuno Lopes | 034dd6c | 2012-06-21 16:47:58 +0000 | [diff] [blame] | 506 | Size *= Arg->getValue().zextOrSelf(IntTyBits); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 507 | return std::make_pair(Size, Zero); |
| 508 | |
| 509 | // TODO: handle more standard functions (+ wchar cousins): |
Nuno Lopes | 6e699bf | 2012-07-25 18:49:28 +0000 | [diff] [blame] | 510 | // - strdup / strndup |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 511 | // - strcpy / strncpy |
| 512 | // - strcat / strncat |
| 513 | // - memcpy / memmove |
Nuno Lopes | 6e699bf | 2012-07-25 18:49:28 +0000 | [diff] [blame] | 514 | // - strcat / strncat |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 515 | // - memset |
| 516 | } |
| 517 | |
| 518 | SizeOffsetType |
| 519 | ObjectSizeOffsetVisitor::visitConstantPointerNull(ConstantPointerNull&) { |
| 520 | return std::make_pair(Zero, Zero); |
| 521 | } |
| 522 | |
| 523 | SizeOffsetType |
Nuno Lopes | 41a3f25 | 2012-06-28 16:34:03 +0000 | [diff] [blame] | 524 | ObjectSizeOffsetVisitor::visitExtractElementInst(ExtractElementInst&) { |
| 525 | return unknown(); |
| 526 | } |
| 527 | |
| 528 | SizeOffsetType |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 529 | ObjectSizeOffsetVisitor::visitExtractValueInst(ExtractValueInst&) { |
| 530 | // Easy cases were already folded by previous passes. |
| 531 | return unknown(); |
| 532 | } |
| 533 | |
| 534 | SizeOffsetType ObjectSizeOffsetVisitor::visitGEPOperator(GEPOperator &GEP) { |
| 535 | SizeOffsetType PtrData = compute(GEP.getPointerOperand()); |
Nuno Lopes | 98281a2 | 2012-12-30 16:25:48 +0000 | [diff] [blame] | 536 | APInt Offset(IntTyBits, 0); |
| 537 | if (!bothKnown(PtrData) || !GEP.accumulateConstantOffset(*TD, Offset)) |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 538 | return unknown(); |
| 539 | |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 540 | return std::make_pair(PtrData.first, PtrData.second + Offset); |
| 541 | } |
| 542 | |
Nuno Lopes | 41be2fb | 2012-12-31 16:23:48 +0000 | [diff] [blame] | 543 | SizeOffsetType ObjectSizeOffsetVisitor::visitGlobalAlias(GlobalAlias &GA) { |
| 544 | if (GA.mayBeOverridden()) |
| 545 | return unknown(); |
| 546 | return compute(GA.getAliasee()); |
| 547 | } |
| 548 | |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 549 | SizeOffsetType ObjectSizeOffsetVisitor::visitGlobalVariable(GlobalVariable &GV){ |
| 550 | if (!GV.hasDefinitiveInitializer()) |
| 551 | return unknown(); |
| 552 | |
| 553 | APInt Size(IntTyBits, TD->getTypeAllocSize(GV.getType()->getElementType())); |
| 554 | return std::make_pair(align(Size, GV.getAlignment()), Zero); |
| 555 | } |
| 556 | |
| 557 | SizeOffsetType ObjectSizeOffsetVisitor::visitIntToPtrInst(IntToPtrInst&) { |
| 558 | // clueless |
| 559 | return unknown(); |
| 560 | } |
| 561 | |
| 562 | SizeOffsetType ObjectSizeOffsetVisitor::visitLoadInst(LoadInst&) { |
| 563 | ++ObjectVisitorLoad; |
| 564 | return unknown(); |
| 565 | } |
| 566 | |
Nadav Rotem | 8e4df48 | 2013-04-09 18:16:05 +0000 | [diff] [blame] | 567 | SizeOffsetType ObjectSizeOffsetVisitor::visitPHINode(PHINode&) { |
| 568 | // too complex to analyze statically. |
| 569 | return unknown(); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | SizeOffsetType ObjectSizeOffsetVisitor::visitSelectInst(SelectInst &I) { |
| 573 | SizeOffsetType TrueSide = compute(I.getTrueValue()); |
| 574 | SizeOffsetType FalseSide = compute(I.getFalseValue()); |
Nuno Lopes | 2e594fa | 2012-12-31 18:01:36 +0000 | [diff] [blame] | 575 | if (bothKnown(TrueSide) && bothKnown(FalseSide) && TrueSide == FalseSide) |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 576 | return TrueSide; |
| 577 | return unknown(); |
| 578 | } |
| 579 | |
| 580 | SizeOffsetType ObjectSizeOffsetVisitor::visitUndefValue(UndefValue&) { |
| 581 | return std::make_pair(Zero, Zero); |
| 582 | } |
| 583 | |
| 584 | SizeOffsetType ObjectSizeOffsetVisitor::visitInstruction(Instruction &I) { |
| 585 | DEBUG(dbgs() << "ObjectSizeOffsetVisitor unknown instruction:" << I << '\n'); |
| 586 | return unknown(); |
| 587 | } |
| 588 | |
| 589 | |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 590 | ObjectSizeOffsetEvaluator::ObjectSizeOffsetEvaluator(const DataLayout *TD, |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 591 | const TargetLibraryInfo *TLI, |
Chandler Carruth | ece6c6b | 2012-11-01 08:07:29 +0000 | [diff] [blame] | 592 | LLVMContext &Context) |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 593 | : TD(TD), TLI(TLI), Context(Context), Builder(Context, TargetFolder(TD)) { |
Chandler Carruth | ece6c6b | 2012-11-01 08:07:29 +0000 | [diff] [blame] | 594 | IntTy = TD->getIntPtrType(Context); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 595 | Zero = ConstantInt::get(IntTy, 0); |
| 596 | } |
| 597 | |
| 598 | SizeOffsetEvalType ObjectSizeOffsetEvaluator::compute(Value *V) { |
| 599 | SizeOffsetEvalType Result = compute_(V); |
| 600 | |
| 601 | if (!bothKnown(Result)) { |
| 602 | // erase everything that was computed in this iteration from the cache, so |
| 603 | // that no dangling references are left behind. We could be a bit smarter if |
| 604 | // we kept a dependency graph. It's probably not worth the complexity. |
| 605 | for (PtrSetTy::iterator I=SeenVals.begin(), E=SeenVals.end(); I != E; ++I) { |
| 606 | CacheMapTy::iterator CacheIt = CacheMap.find(*I); |
| 607 | // non-computable results can be safely cached |
| 608 | if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) |
| 609 | CacheMap.erase(CacheIt); |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | SeenVals.clear(); |
| 614 | return Result; |
| 615 | } |
| 616 | |
| 617 | SizeOffsetEvalType ObjectSizeOffsetEvaluator::compute_(Value *V) { |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 618 | ObjectSizeOffsetVisitor Visitor(TD, TLI, Context); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 619 | SizeOffsetType Const = Visitor.compute(V); |
| 620 | if (Visitor.bothKnown(Const)) |
| 621 | return std::make_pair(ConstantInt::get(Context, Const.first), |
| 622 | ConstantInt::get(Context, Const.second)); |
| 623 | |
| 624 | V = V->stripPointerCasts(); |
| 625 | |
| 626 | // check cache |
| 627 | CacheMapTy::iterator CacheIt = CacheMap.find(V); |
| 628 | if (CacheIt != CacheMap.end()) |
| 629 | return CacheIt->second; |
| 630 | |
| 631 | // always generate code immediately before the instruction being |
| 632 | // processed, so that the generated code dominates the same BBs |
| 633 | Instruction *PrevInsertPoint = Builder.GetInsertPoint(); |
| 634 | if (Instruction *I = dyn_cast<Instruction>(V)) |
| 635 | Builder.SetInsertPoint(I); |
| 636 | |
| 637 | // record the pointers that were handled in this run, so that they can be |
| 638 | // cleaned later if something fails |
| 639 | SeenVals.insert(V); |
| 640 | |
| 641 | // now compute the size and offset |
| 642 | SizeOffsetEvalType Result; |
| 643 | if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) { |
| 644 | Result = visitGEPOperator(*GEP); |
| 645 | } else if (Instruction *I = dyn_cast<Instruction>(V)) { |
| 646 | Result = visit(*I); |
| 647 | } else if (isa<Argument>(V) || |
| 648 | (isa<ConstantExpr>(V) && |
| 649 | cast<ConstantExpr>(V)->getOpcode() == Instruction::IntToPtr) || |
Nuno Lopes | 41be2fb | 2012-12-31 16:23:48 +0000 | [diff] [blame] | 650 | isa<GlobalAlias>(V) || |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 651 | isa<GlobalVariable>(V)) { |
| 652 | // ignore values where we cannot do more than what ObjectSizeVisitor can |
| 653 | Result = unknown(); |
| 654 | } else { |
| 655 | DEBUG(dbgs() << "ObjectSizeOffsetEvaluator::compute() unhandled value: " |
| 656 | << *V << '\n'); |
| 657 | Result = unknown(); |
| 658 | } |
| 659 | |
| 660 | if (PrevInsertPoint) |
| 661 | Builder.SetInsertPoint(PrevInsertPoint); |
| 662 | |
| 663 | // Don't reuse CacheIt since it may be invalid at this point. |
| 664 | CacheMap[V] = Result; |
| 665 | return Result; |
| 666 | } |
| 667 | |
| 668 | SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitAllocaInst(AllocaInst &I) { |
| 669 | if (!I.getAllocatedType()->isSized()) |
| 670 | return unknown(); |
| 671 | |
| 672 | // must be a VLA |
| 673 | assert(I.isArrayAllocation()); |
| 674 | Value *ArraySize = I.getArraySize(); |
| 675 | Value *Size = ConstantInt::get(ArraySize->getType(), |
| 676 | TD->getTypeAllocSize(I.getAllocatedType())); |
| 677 | Size = Builder.CreateMul(Size, ArraySize); |
| 678 | return std::make_pair(Size, Zero); |
| 679 | } |
| 680 | |
| 681 | SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitCallSite(CallSite CS) { |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 682 | const AllocFnsTy *FnData = getAllocationData(CS.getInstruction(), AnyAlloc, |
| 683 | TLI); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 684 | if (!FnData) |
| 685 | return unknown(); |
| 686 | |
| 687 | // handle strdup-like functions separately |
| 688 | if (FnData->AllocTy == StrDupLike) { |
Nuno Lopes | 6e699bf | 2012-07-25 18:49:28 +0000 | [diff] [blame] | 689 | // TODO |
| 690 | return unknown(); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 691 | } |
| 692 | |
Nuno Lopes | 034dd6c | 2012-06-21 16:47:58 +0000 | [diff] [blame] | 693 | Value *FirstArg = CS.getArgument(FnData->FstParam); |
| 694 | FirstArg = Builder.CreateZExt(FirstArg, IntTy); |
Nuno Lopes | ef22f04 | 2012-06-21 18:38:26 +0000 | [diff] [blame] | 695 | if (FnData->SndParam < 0) |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 696 | return std::make_pair(FirstArg, Zero); |
| 697 | |
| 698 | Value *SecondArg = CS.getArgument(FnData->SndParam); |
Nuno Lopes | 034dd6c | 2012-06-21 16:47:58 +0000 | [diff] [blame] | 699 | SecondArg = Builder.CreateZExt(SecondArg, IntTy); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 700 | Value *Size = Builder.CreateMul(FirstArg, SecondArg); |
| 701 | return std::make_pair(Size, Zero); |
| 702 | |
| 703 | // TODO: handle more standard functions (+ wchar cousins): |
Nuno Lopes | 6e699bf | 2012-07-25 18:49:28 +0000 | [diff] [blame] | 704 | // - strdup / strndup |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 705 | // - strcpy / strncpy |
| 706 | // - strcat / strncat |
| 707 | // - memcpy / memmove |
Nuno Lopes | 6e699bf | 2012-07-25 18:49:28 +0000 | [diff] [blame] | 708 | // - strcat / strncat |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 709 | // - memset |
| 710 | } |
| 711 | |
| 712 | SizeOffsetEvalType |
Nuno Lopes | 41a3f25 | 2012-06-28 16:34:03 +0000 | [diff] [blame] | 713 | ObjectSizeOffsetEvaluator::visitExtractElementInst(ExtractElementInst&) { |
| 714 | return unknown(); |
| 715 | } |
| 716 | |
| 717 | SizeOffsetEvalType |
| 718 | ObjectSizeOffsetEvaluator::visitExtractValueInst(ExtractValueInst&) { |
| 719 | return unknown(); |
| 720 | } |
| 721 | |
| 722 | SizeOffsetEvalType |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 723 | ObjectSizeOffsetEvaluator::visitGEPOperator(GEPOperator &GEP) { |
| 724 | SizeOffsetEvalType PtrData = compute_(GEP.getPointerOperand()); |
| 725 | if (!bothKnown(PtrData)) |
| 726 | return unknown(); |
| 727 | |
Nuno Lopes | c606c3f | 2012-07-20 23:07:40 +0000 | [diff] [blame] | 728 | Value *Offset = EmitGEPOffset(&Builder, *TD, &GEP, /*NoAssumptions=*/true); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 729 | Offset = Builder.CreateAdd(PtrData.second, Offset); |
| 730 | return std::make_pair(PtrData.first, Offset); |
| 731 | } |
| 732 | |
| 733 | SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitIntToPtrInst(IntToPtrInst&) { |
| 734 | // clueless |
| 735 | return unknown(); |
| 736 | } |
| 737 | |
| 738 | SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitLoadInst(LoadInst&) { |
| 739 | return unknown(); |
| 740 | } |
| 741 | |
| 742 | SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitPHINode(PHINode &PHI) { |
| 743 | // create 2 PHIs: one for size and another for offset |
| 744 | PHINode *SizePHI = Builder.CreatePHI(IntTy, PHI.getNumIncomingValues()); |
| 745 | PHINode *OffsetPHI = Builder.CreatePHI(IntTy, PHI.getNumIncomingValues()); |
| 746 | |
| 747 | // insert right away in the cache to handle recursive PHIs |
| 748 | CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI); |
| 749 | |
| 750 | // compute offset/size for each PHI incoming pointer |
| 751 | for (unsigned i = 0, e = PHI.getNumIncomingValues(); i != e; ++i) { |
| 752 | Builder.SetInsertPoint(PHI.getIncomingBlock(i)->getFirstInsertionPt()); |
| 753 | SizeOffsetEvalType EdgeData = compute_(PHI.getIncomingValue(i)); |
| 754 | |
| 755 | if (!bothKnown(EdgeData)) { |
| 756 | OffsetPHI->replaceAllUsesWith(UndefValue::get(IntTy)); |
| 757 | OffsetPHI->eraseFromParent(); |
| 758 | SizePHI->replaceAllUsesWith(UndefValue::get(IntTy)); |
| 759 | SizePHI->eraseFromParent(); |
| 760 | return unknown(); |
| 761 | } |
| 762 | SizePHI->addIncoming(EdgeData.first, PHI.getIncomingBlock(i)); |
| 763 | OffsetPHI->addIncoming(EdgeData.second, PHI.getIncomingBlock(i)); |
| 764 | } |
Nuno Lopes | 0dff532 | 2012-07-03 17:13:25 +0000 | [diff] [blame] | 765 | |
| 766 | Value *Size = SizePHI, *Offset = OffsetPHI, *Tmp; |
| 767 | if ((Tmp = SizePHI->hasConstantValue())) { |
| 768 | Size = Tmp; |
| 769 | SizePHI->replaceAllUsesWith(Size); |
| 770 | SizePHI->eraseFromParent(); |
| 771 | } |
| 772 | if ((Tmp = OffsetPHI->hasConstantValue())) { |
| 773 | Offset = Tmp; |
| 774 | OffsetPHI->replaceAllUsesWith(Offset); |
| 775 | OffsetPHI->eraseFromParent(); |
| 776 | } |
| 777 | return std::make_pair(Size, Offset); |
Nuno Lopes | 9e72a79 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitSelectInst(SelectInst &I) { |
| 781 | SizeOffsetEvalType TrueSide = compute_(I.getTrueValue()); |
| 782 | SizeOffsetEvalType FalseSide = compute_(I.getFalseValue()); |
| 783 | |
| 784 | if (!bothKnown(TrueSide) || !bothKnown(FalseSide)) |
| 785 | return unknown(); |
| 786 | if (TrueSide == FalseSide) |
| 787 | return TrueSide; |
| 788 | |
| 789 | Value *Size = Builder.CreateSelect(I.getCondition(), TrueSide.first, |
| 790 | FalseSide.first); |
| 791 | Value *Offset = Builder.CreateSelect(I.getCondition(), TrueSide.second, |
| 792 | FalseSide.second); |
| 793 | return std::make_pair(Size, Offset); |
| 794 | } |
| 795 | |
| 796 | SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitInstruction(Instruction &I) { |
| 797 | DEBUG(dbgs() << "ObjectSizeOffsetEvaluator unknown instruction:" << I <<'\n'); |
| 798 | return unknown(); |
| 799 | } |