blob: 8c0c374d530f344b9fcdefcdeeae0f4761b218f7 [file] [log] [blame]
Eugene Zelenkobb1b2d02017-08-16 22:07:40 +00001//===- MemoryBuiltins.cpp - Identify calls to memory builtins -------------===//
Evan Cheng1d9d4bd2009-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 Hernandezf390e042009-10-27 20:05:49 +000010// This family of functions identifies calls to builtin functions that allocate
Michael Ilsemand9745242013-03-08 21:03:09 +000011// or free memory.
Evan Cheng1d9d4bd2009-09-10 04:36:43 +000012//
13//===----------------------------------------------------------------------===//
14
Victor Hernandezf390e042009-10-27 20:05:49 +000015#include "llvm/Analysis/MemoryBuiltins.h"
Eugene Zelenkobb1b2d02017-08-16 22:07:40 +000016#include "llvm/ADT/APInt.h"
17#include "llvm/ADT/None.h"
18#include "llvm/ADT/Optional.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/Statistic.h"
Eugene Zelenkobb1b2d02017-08-16 22:07:40 +000021#include "llvm/ADT/StringRef.h"
22#include "llvm/Analysis/TargetFolder.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000023#include "llvm/Analysis/TargetLibraryInfo.h"
David Blaikie2be39222018-03-21 22:34:23 +000024#include "llvm/Analysis/Utils/Local.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/Analysis/ValueTracking.h"
Eugene Zelenkobb1b2d02017-08-16 22:07:40 +000026#include "llvm/IR/Argument.h"
27#include "llvm/IR/Attributes.h"
28#include "llvm/IR/Constants.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/DataLayout.h"
Eugene Zelenkobb1b2d02017-08-16 22:07:40 +000030#include "llvm/IR/DerivedTypes.h"
31#include "llvm/IR/Function.h"
32#include "llvm/IR/GlobalAlias.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/GlobalVariable.h"
Eugene Zelenkobb1b2d02017-08-16 22:07:40 +000034#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/Instructions.h"
Eugene Zelenkobb1b2d02017-08-16 22:07:40 +000036#include "llvm/IR/IntrinsicInst.h"
37#include "llvm/IR/Operator.h"
38#include "llvm/IR/Type.h"
39#include "llvm/IR/Value.h"
40#include "llvm/Support/Casting.h"
Nuno Lopes55fff832012-06-21 15:45:28 +000041#include "llvm/Support/Debug.h"
42#include "llvm/Support/MathExtras.h"
43#include "llvm/Support/raw_ostream.h"
Eugene Zelenkobb1b2d02017-08-16 22:07:40 +000044#include <cassert>
45#include <cstdint>
46#include <iterator>
47#include <utility>
48
Evan Cheng1d9d4bd2009-09-10 04:36:43 +000049using namespace llvm;
50
Chandler Carruthf1221bd2014-04-22 02:48:03 +000051#define DEBUG_TYPE "memory-builtins"
52
George Burgess IV2ae15e02015-11-17 19:48:06 +000053enum AllocType : uint8_t {
Benjamin Kramer2939dd32013-09-24 17:34:29 +000054 OpNewLike = 1<<0, // allocates; never returns null
55 MallocLike = 1<<1 | OpNewLike, // allocates; may return null
56 CallocLike = 1<<2, // allocates + bzero
57 ReallocLike = 1<<3, // reallocates
58 StrDupLike = 1<<4,
Craig Topper09bb7602017-04-18 21:43:46 +000059 MallocOrCallocLike = MallocLike | CallocLike,
Benjamin Kramer2939dd32013-09-24 17:34:29 +000060 AllocLike = MallocLike | CallocLike | StrDupLike,
Benjamin Kramer4d4df042013-09-24 17:15:14 +000061 AnyAlloc = AllocLike | ReallocLike
Nuno Lopes55fff832012-06-21 15:45:28 +000062};
Evan Cheng1d9d4bd2009-09-10 04:36:43 +000063
Nuno Lopes55fff832012-06-21 15:45:28 +000064struct AllocFnsTy {
Nuno Lopes55fff832012-06-21 15:45:28 +000065 AllocType AllocTy;
George Burgess IV278199f2016-04-12 01:05:35 +000066 unsigned NumParams;
Nuno Lopes55fff832012-06-21 15:45:28 +000067 // First and Second size parameters (or -1 if unused)
George Burgess IV278199f2016-04-12 01:05:35 +000068 int FstParam, SndParam;
Nuno Lopes55fff832012-06-21 15:45:28 +000069};
Evan Cheng1d9d4bd2009-09-10 04:36:43 +000070
Nuno Lopes181d67e2012-06-28 16:34:03 +000071// FIXME: certain users need more information. E.g., SimplifyLibCalls needs to
72// know which functions are nounwind, noalias, nocapture parameters, etc.
David L. Jonesd21529f2017-01-23 23:16:46 +000073static const std::pair<LibFunc, AllocFnsTy> AllocationFnData[] = {
74 {LibFunc_malloc, {MallocLike, 1, 0, -1}},
75 {LibFunc_valloc, {MallocLike, 1, 0, -1}},
76 {LibFunc_Znwj, {OpNewLike, 1, 0, -1}}, // new(unsigned int)
77 {LibFunc_ZnwjRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new(unsigned int, nothrow)
78 {LibFunc_Znwm, {OpNewLike, 1, 0, -1}}, // new(unsigned long)
79 {LibFunc_ZnwmRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new(unsigned long, nothrow)
80 {LibFunc_Znaj, {OpNewLike, 1, 0, -1}}, // new[](unsigned int)
81 {LibFunc_ZnajRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new[](unsigned int, nothrow)
82 {LibFunc_Znam, {OpNewLike, 1, 0, -1}}, // new[](unsigned long)
83 {LibFunc_ZnamRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new[](unsigned long, nothrow)
84 {LibFunc_msvc_new_int, {OpNewLike, 1, 0, -1}}, // new(unsigned int)
85 {LibFunc_msvc_new_int_nothrow, {MallocLike, 2, 0, -1}}, // new(unsigned int, nothrow)
86 {LibFunc_msvc_new_longlong, {OpNewLike, 1, 0, -1}}, // new(unsigned long long)
87 {LibFunc_msvc_new_longlong_nothrow, {MallocLike, 2, 0, -1}}, // new(unsigned long long, nothrow)
88 {LibFunc_msvc_new_array_int, {OpNewLike, 1, 0, -1}}, // new[](unsigned int)
89 {LibFunc_msvc_new_array_int_nothrow, {MallocLike, 2, 0, -1}}, // new[](unsigned int, nothrow)
90 {LibFunc_msvc_new_array_longlong, {OpNewLike, 1, 0, -1}}, // new[](unsigned long long)
91 {LibFunc_msvc_new_array_longlong_nothrow, {MallocLike, 2, 0, -1}}, // new[](unsigned long long, nothrow)
92 {LibFunc_calloc, {CallocLike, 2, 0, 1}},
93 {LibFunc_realloc, {ReallocLike, 2, 1, -1}},
94 {LibFunc_reallocf, {ReallocLike, 2, 1, -1}},
95 {LibFunc_strdup, {StrDupLike, 1, -1, -1}},
96 {LibFunc_strndup, {StrDupLike, 2, 1, -1}}
Benjamin Kramer01df8172013-09-24 17:49:08 +000097 // TODO: Handle "int posix_memalign(void **, size_t, size_t)"
Nuno Lopes55fff832012-06-21 15:45:28 +000098};
99
Craig Toppereae6db02017-04-18 20:17:23 +0000100static const Function *getCalledFunction(const Value *V, bool LookThroughBitCast,
101 bool &IsNoBuiltin) {
George Burgess IVce044892016-12-27 06:10:50 +0000102 // Don't care about intrinsics in this case.
103 if (isa<IntrinsicInst>(V))
104 return nullptr;
105
Nuno Lopes55fff832012-06-21 15:45:28 +0000106 if (LookThroughBitCast)
107 V = V->stripPointerCasts();
Nuno Lopesdc6085e2012-06-21 21:25:05 +0000108
Craig Toppereae6db02017-04-18 20:17:23 +0000109 ImmutableCallSite CS(V);
Nuno Lopes15dbcb42012-06-22 15:50:53 +0000110 if (!CS.getInstruction())
Craig Topper9f008862014-04-15 04:59:12 +0000111 return nullptr;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000112
George Burgess IVed160242016-12-27 06:32:14 +0000113 IsNoBuiltin = CS.isNoBuiltin();
Richard Smithe04f0d32013-05-16 04:12:04 +0000114
Benjamin Kramerfd063062018-02-20 22:00:33 +0000115 if (const Function *Callee = CS.getCalledFunction())
116 return Callee;
117 return nullptr;
Nuno Lopes55fff832012-06-21 15:45:28 +0000118}
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000119
George Burgess IV278199f2016-04-12 01:05:35 +0000120/// Returns the allocation data for the given value if it's either a call to a
121/// known allocation function, or a call to a function with the allocsize
122/// attribute.
George Burgess IVce044892016-12-27 06:10:50 +0000123static Optional<AllocFnsTy>
124getAllocationDataForFunction(const Function *Callee, AllocType AllocTy,
125 const TargetLibraryInfo *TLI) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000126 // Make sure that the function is available.
127 StringRef FnName = Callee->getName();
David L. Jonesd21529f2017-01-23 23:16:46 +0000128 LibFunc TLIFn;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000129 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))
George Burgess IV278199f2016-04-12 01:05:35 +0000130 return None;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000131
George Burgess IV45a540f2016-12-20 18:46:27 +0000132 const auto *Iter = find_if(
David L. Jonesd21529f2017-01-23 23:16:46 +0000133 AllocationFnData, [TLIFn](const std::pair<LibFunc, AllocFnsTy> &P) {
George Burgess IV45a540f2016-12-20 18:46:27 +0000134 return P.first == TLIFn;
135 });
Benjamin Kramer74b6d3b2015-10-24 19:03:15 +0000136
George Burgess IV278199f2016-04-12 01:05:35 +0000137 if (Iter == std::end(AllocationFnData))
138 return None;
Nuno Lopes55fff832012-06-21 15:45:28 +0000139
George Burgess IV278199f2016-04-12 01:05:35 +0000140 const AllocFnsTy *FnData = &Iter->second;
Benjamin Kramer2939dd32013-09-24 17:34:29 +0000141 if ((FnData->AllocTy & AllocTy) != FnData->AllocTy)
George Burgess IV278199f2016-04-12 01:05:35 +0000142 return None;
Nuno Lopes55fff832012-06-21 15:45:28 +0000143
144 // Check function prototype.
Nuno Lopesf06b7312012-06-21 18:38:26 +0000145 int FstParam = FnData->FstParam;
146 int SndParam = FnData->SndParam;
Chris Lattner229907c2011-07-18 04:54:35 +0000147 FunctionType *FTy = Callee->getFunctionType();
Nuno Lopes55fff832012-06-21 15:45:28 +0000148
149 if (FTy->getReturnType() == Type::getInt8PtrTy(FTy->getContext()) &&
150 FTy->getNumParams() == FnData->NumParams &&
Nuno Lopesf06b7312012-06-21 18:38:26 +0000151 (FstParam < 0 ||
Nuno Lopes55fff832012-06-21 15:45:28 +0000152 (FTy->getParamType(FstParam)->isIntegerTy(32) ||
153 FTy->getParamType(FstParam)->isIntegerTy(64))) &&
Nuno Lopesf06b7312012-06-21 18:38:26 +0000154 (SndParam < 0 ||
Nuno Lopes55fff832012-06-21 15:45:28 +0000155 FTy->getParamType(SndParam)->isIntegerTy(32) ||
156 FTy->getParamType(SndParam)->isIntegerTy(64)))
George Burgess IV278199f2016-04-12 01:05:35 +0000157 return *FnData;
158 return None;
Nuno Lopes55fff832012-06-21 15:45:28 +0000159}
160
George Burgess IVce044892016-12-27 06:10:50 +0000161static Optional<AllocFnsTy> getAllocationData(const Value *V, AllocType AllocTy,
162 const TargetLibraryInfo *TLI,
163 bool LookThroughBitCast = false) {
George Burgess IVed160242016-12-27 06:32:14 +0000164 bool IsNoBuiltinCall;
165 if (const Function *Callee =
166 getCalledFunction(V, LookThroughBitCast, IsNoBuiltinCall))
167 if (!IsNoBuiltinCall)
168 return getAllocationDataForFunction(Callee, AllocTy, TLI);
George Burgess IVce044892016-12-27 06:10:50 +0000169 return None;
170}
171
George Burgess IVccae43a2016-12-23 01:18:09 +0000172static Optional<AllocFnsTy> getAllocationSize(const Value *V,
173 const TargetLibraryInfo *TLI) {
George Burgess IVed160242016-12-27 06:32:14 +0000174 bool IsNoBuiltinCall;
175 const Function *Callee =
176 getCalledFunction(V, /*LookThroughBitCast=*/false, IsNoBuiltinCall);
George Burgess IVce044892016-12-27 06:10:50 +0000177 if (!Callee)
178 return None;
179
George Burgess IVccae43a2016-12-23 01:18:09 +0000180 // Prefer to use existing information over allocsize. This will give us an
181 // accurate AllocTy.
George Burgess IVed160242016-12-27 06:32:14 +0000182 if (!IsNoBuiltinCall)
183 if (Optional<AllocFnsTy> Data =
184 getAllocationDataForFunction(Callee, AnyAlloc, TLI))
185 return Data;
George Burgess IVccae43a2016-12-23 01:18:09 +0000186
George Burgess IVce044892016-12-27 06:10:50 +0000187 Attribute Attr = Callee->getFnAttribute(Attribute::AllocSize);
188 if (Attr == Attribute())
George Burgess IVccae43a2016-12-23 01:18:09 +0000189 return None;
190
George Burgess IVccae43a2016-12-23 01:18:09 +0000191 std::pair<unsigned, Optional<unsigned>> Args = Attr.getAllocSizeArgs();
192
193 AllocFnsTy Result;
194 // Because allocsize only tells us how many bytes are allocated, we're not
195 // really allowed to assume anything, so we use MallocLike.
196 Result.AllocTy = MallocLike;
197 Result.NumParams = Callee->getNumOperands();
198 Result.FstParam = Args.first;
199 Result.SndParam = Args.second.getValueOr(-1);
200 return Result;
201}
202
Nuno Lopes55fff832012-06-21 15:45:28 +0000203static bool hasNoAliasAttr(const Value *V, bool LookThroughBitCast) {
Nuno Lopes9ecc8762012-06-25 16:17:54 +0000204 ImmutableCallSite CS(LookThroughBitCast ? V->stripPointerCasts() : V);
Reid Klecknerfb502d22017-04-14 20:19:02 +0000205 return CS && CS.hasRetAttr(Attribute::NoAlias);
Nuno Lopes55fff832012-06-21 15:45:28 +0000206}
207
Nuno Lopesdc6085e2012-06-21 21:25:05 +0000208/// \brief Tests if a value is a call or invoke to a library function that
209/// allocates or reallocates memory (either malloc, calloc, realloc, or strdup
210/// like).
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000211bool llvm::isAllocationFn(const Value *V, const TargetLibraryInfo *TLI,
212 bool LookThroughBitCast) {
George Burgess IV278199f2016-04-12 01:05:35 +0000213 return getAllocationData(V, AnyAlloc, TLI, LookThroughBitCast).hasValue();
Nuno Lopes55fff832012-06-21 15:45:28 +0000214}
215
Nuno Lopesdc6085e2012-06-21 21:25:05 +0000216/// \brief Tests if a value is a call or invoke to a function that returns a
Nuno Lopes181d67e2012-06-28 16:34:03 +0000217/// NoAlias pointer (including malloc/calloc/realloc/strdup-like functions).
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000218bool llvm::isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI,
219 bool LookThroughBitCast) {
Nuno Lopes181d67e2012-06-28 16:34:03 +0000220 // it's safe to consider realloc as noalias since accessing the original
221 // pointer is undefined behavior
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000222 return isAllocationFn(V, TLI, LookThroughBitCast) ||
Nuno Lopes55fff832012-06-21 15:45:28 +0000223 hasNoAliasAttr(V, LookThroughBitCast);
224}
225
Nuno Lopesdc6085e2012-06-21 21:25:05 +0000226/// \brief Tests if a value is a call or invoke to a library function that
227/// allocates uninitialized memory (such as malloc).
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000228bool llvm::isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
229 bool LookThroughBitCast) {
George Burgess IV278199f2016-04-12 01:05:35 +0000230 return getAllocationData(V, MallocLike, TLI, LookThroughBitCast).hasValue();
Nuno Lopes55fff832012-06-21 15:45:28 +0000231}
232
Nuno Lopesdc6085e2012-06-21 21:25:05 +0000233/// \brief Tests if a value is a call or invoke to a library function that
234/// allocates zero-filled memory (such as calloc).
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000235bool llvm::isCallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
236 bool LookThroughBitCast) {
George Burgess IV278199f2016-04-12 01:05:35 +0000237 return getAllocationData(V, CallocLike, TLI, LookThroughBitCast).hasValue();
Nuno Lopes55fff832012-06-21 15:45:28 +0000238}
239
Nuno Lopesdc6085e2012-06-21 21:25:05 +0000240/// \brief Tests if a value is a call or invoke to a library function that
Vedant Kumar1a8456d2018-03-02 18:57:02 +0000241/// allocates memory similar to malloc or calloc.
Craig Topper09bb7602017-04-18 21:43:46 +0000242bool llvm::isMallocOrCallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
243 bool LookThroughBitCast) {
244 return getAllocationData(V, MallocOrCallocLike, TLI,
245 LookThroughBitCast).hasValue();
246}
247
248/// \brief Tests if a value is a call or invoke to a library function that
Nuno Lopesdc6085e2012-06-21 21:25:05 +0000249/// allocates memory (either malloc, calloc, or strdup like).
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000250bool llvm::isAllocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
251 bool LookThroughBitCast) {
George Burgess IV278199f2016-04-12 01:05:35 +0000252 return getAllocationData(V, AllocLike, TLI, LookThroughBitCast).hasValue();
Nuno Lopes55fff832012-06-21 15:45:28 +0000253}
254
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000255/// extractMallocCall - Returns the corresponding CallInst if the instruction
256/// is a malloc call. Since CallInst::CreateMalloc() only creates calls, we
257/// ignore InvokeInst here.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000258const CallInst *llvm::extractMallocCall(const Value *I,
259 const TargetLibraryInfo *TLI) {
Craig Topper9f008862014-04-15 04:59:12 +0000260 return isMallocLikeFn(I, TLI) ? dyn_cast<CallInst>(I) : nullptr;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000261}
262
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000263static Value *computeArraySize(const CallInst *CI, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000264 const TargetLibraryInfo *TLI,
Victor Hernandezfcc77b12009-11-10 08:32:25 +0000265 bool LookThroughSExt = false) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000266 if (!CI)
Craig Topper9f008862014-04-15 04:59:12 +0000267 return nullptr;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000268
Victor Hernandezf3db9152009-11-07 00:16:28 +0000269 // The size of the malloc's result type must be known to determine array size.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000270 Type *T = getMallocAllocatedType(CI, TLI);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000271 if (!T || !T->isSized())
Craig Topper9f008862014-04-15 04:59:12 +0000272 return nullptr;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000273
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000274 unsigned ElementSize = DL.getTypeAllocSize(T);
Chris Lattner229907c2011-07-18 04:54:35 +0000275 if (StructType *ST = dyn_cast<StructType>(T))
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000276 ElementSize = DL.getStructLayout(ST)->getSizeInBytes();
Victor Hernandez788eaab2009-09-18 19:20:02 +0000277
Gabor Greifad7884a2010-06-23 21:41:47 +0000278 // If malloc call's arg can be determined to be a multiple of ElementSize,
Victor Hernandezfcc77b12009-11-10 08:32:25 +0000279 // return the multiple. Otherwise, return NULL.
Gabor Greifad7884a2010-06-23 21:41:47 +0000280 Value *MallocArg = CI->getArgOperand(0);
Craig Topper9f008862014-04-15 04:59:12 +0000281 Value *Multiple = nullptr;
Sanjay Patel490193d2016-07-07 16:19:09 +0000282 if (ComputeMultiple(MallocArg, ElementSize, Multiple, LookThroughSExt))
Victor Hernandezfcc77b12009-11-10 08:32:25 +0000283 return Multiple;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000284
Craig Topper9f008862014-04-15 04:59:12 +0000285 return nullptr;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000286}
287
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000288/// getMallocType - Returns the PointerType resulting from the malloc call.
Victor Hernandezf3db9152009-11-07 00:16:28 +0000289/// The PointerType depends on the number of bitcast uses of the malloc call:
290/// 0: PointerType is the calls' return type.
291/// 1: PointerType is the bitcast's result type.
292/// >1: Unique PointerType cannot be determined, return NULL.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000293PointerType *llvm::getMallocType(const CallInst *CI,
294 const TargetLibraryInfo *TLI) {
295 assert(isMallocLikeFn(CI, TLI) && "getMallocType and not malloc call");
Michael Ilsemand9745242013-03-08 21:03:09 +0000296
Craig Topper9f008862014-04-15 04:59:12 +0000297 PointerType *MallocType = nullptr;
Victor Hernandezf3db9152009-11-07 00:16:28 +0000298 unsigned NumOfBitCastUses = 0;
299
Victor Hernandez788eaab2009-09-18 19:20:02 +0000300 // Determine if CallInst has a bitcast use.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000301 for (Value::const_user_iterator UI = CI->user_begin(), E = CI->user_end();
302 UI != E;)
Victor Hernandezf3db9152009-11-07 00:16:28 +0000303 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
304 MallocType = cast<PointerType>(BCI->getDestTy());
305 NumOfBitCastUses++;
306 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000307
Victor Hernandezf3db9152009-11-07 00:16:28 +0000308 // Malloc call has 1 bitcast use, so type is the bitcast's destination type.
309 if (NumOfBitCastUses == 1)
310 return MallocType;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000311
Victor Hernandezddc2ce42009-09-22 18:50:03 +0000312 // Malloc call was not bitcast, so type is the malloc function's return type.
Victor Hernandezf3db9152009-11-07 00:16:28 +0000313 if (NumOfBitCastUses == 0)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000314 return cast<PointerType>(CI->getType());
315
316 // Type could not be determined.
Craig Topper9f008862014-04-15 04:59:12 +0000317 return nullptr;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000318}
319
Victor Hernandezf3db9152009-11-07 00:16:28 +0000320/// getMallocAllocatedType - Returns the Type allocated by malloc call.
321/// The Type depends on the number of bitcast uses of the malloc call:
322/// 0: PointerType is the malloc calls' return type.
323/// 1: PointerType is the bitcast's result type.
324/// >1: Unique PointerType cannot be determined, return NULL.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000325Type *llvm::getMallocAllocatedType(const CallInst *CI,
326 const TargetLibraryInfo *TLI) {
327 PointerType *PT = getMallocType(CI, TLI);
Craig Topper9f008862014-04-15 04:59:12 +0000328 return PT ? PT->getElementType() : nullptr;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000329}
330
Michael Ilsemand9745242013-03-08 21:03:09 +0000331/// getMallocArraySize - Returns the array size of a malloc call. If the
Victor Hernandez0d025422009-10-28 20:18:55 +0000332/// argument passed to malloc is a multiple of the size of the malloced type,
333/// then return that multiple. For non-array mallocs, the multiple is
334/// constant 1. Otherwise, return NULL for mallocs whose array size cannot be
Victor Hernandez13020b12009-10-15 20:14:52 +0000335/// determined.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000336Value *llvm::getMallocArraySize(CallInst *CI, const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000337 const TargetLibraryInfo *TLI,
Victor Hernandezfcc77b12009-11-10 08:32:25 +0000338 bool LookThroughSExt) {
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000339 assert(isMallocLikeFn(CI, TLI) && "getMallocArraySize and not malloc call");
Matt Arsenault40dddd72013-10-03 19:50:01 +0000340 return computeArraySize(CI, DL, TLI, LookThroughSExt);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000341}
Victor Hernandeze2971492009-10-24 04:23:03 +0000342
Nuno Lopesd2b71e72012-05-03 21:19:58 +0000343/// extractCallocCall - Returns the corresponding CallInst if the instruction
344/// is a calloc call.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000345const CallInst *llvm::extractCallocCall(const Value *I,
346 const TargetLibraryInfo *TLI) {
Craig Topper9f008862014-04-15 04:59:12 +0000347 return isCallocLikeFn(I, TLI) ? cast<CallInst>(I) : nullptr;
Nuno Lopesd2b71e72012-05-03 21:19:58 +0000348}
349
Gabor Greif5f5a8642010-06-23 21:51:12 +0000350/// isFreeCall - Returns non-null if the value is a call to the builtin free()
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000351const CallInst *llvm::isFreeCall(const Value *I, const TargetLibraryInfo *TLI) {
Benjamin Kramerfd063062018-02-20 22:00:33 +0000352 bool IsNoBuiltinCall;
353 const Function *Callee =
354 getCalledFunction(I, /*LookThroughBitCast=*/false, IsNoBuiltinCall);
355 if (Callee == nullptr || IsNoBuiltinCall)
Craig Topper9f008862014-04-15 04:59:12 +0000356 return nullptr;
Nick Lewyckyc1f86582011-03-15 07:31:32 +0000357
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000358 StringRef FnName = Callee->getName();
David L. Jonesd21529f2017-01-23 23:16:46 +0000359 LibFunc TLIFn;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000360 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))
Craig Topper9f008862014-04-15 04:59:12 +0000361 return nullptr;
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000362
Richard Smith70523c72013-07-21 23:11:42 +0000363 unsigned ExpectedNumParams;
David L. Jonesd21529f2017-01-23 23:16:46 +0000364 if (TLIFn == LibFunc_free ||
365 TLIFn == LibFunc_ZdlPv || // operator delete(void*)
366 TLIFn == LibFunc_ZdaPv || // operator delete[](void*)
367 TLIFn == LibFunc_msvc_delete_ptr32 || // operator delete(void*)
368 TLIFn == LibFunc_msvc_delete_ptr64 || // operator delete(void*)
369 TLIFn == LibFunc_msvc_delete_array_ptr32 || // operator delete[](void*)
370 TLIFn == LibFunc_msvc_delete_array_ptr64) // operator delete[](void*)
Richard Smith70523c72013-07-21 23:11:42 +0000371 ExpectedNumParams = 1;
David L. Jonesd21529f2017-01-23 23:16:46 +0000372 else if (TLIFn == LibFunc_ZdlPvj || // delete(void*, uint)
373 TLIFn == LibFunc_ZdlPvm || // delete(void*, ulong)
374 TLIFn == LibFunc_ZdlPvRKSt9nothrow_t || // delete(void*, nothrow)
375 TLIFn == LibFunc_ZdaPvj || // delete[](void*, uint)
376 TLIFn == LibFunc_ZdaPvm || // delete[](void*, ulong)
377 TLIFn == LibFunc_ZdaPvRKSt9nothrow_t || // delete[](void*, nothrow)
378 TLIFn == LibFunc_msvc_delete_ptr32_int || // delete(void*, uint)
379 TLIFn == LibFunc_msvc_delete_ptr64_longlong || // delete(void*, ulonglong)
380 TLIFn == LibFunc_msvc_delete_ptr32_nothrow || // delete(void*, nothrow)
381 TLIFn == LibFunc_msvc_delete_ptr64_nothrow || // delete(void*, nothrow)
382 TLIFn == LibFunc_msvc_delete_array_ptr32_int || // delete[](void*, uint)
383 TLIFn == LibFunc_msvc_delete_array_ptr64_longlong || // delete[](void*, ulonglong)
384 TLIFn == LibFunc_msvc_delete_array_ptr32_nothrow || // delete[](void*, nothrow)
385 TLIFn == LibFunc_msvc_delete_array_ptr64_nothrow) // delete[](void*, nothrow)
Richard Smith70523c72013-07-21 23:11:42 +0000386 ExpectedNumParams = 2;
387 else
Craig Topper9f008862014-04-15 04:59:12 +0000388 return nullptr;
Victor Hernandeze2971492009-10-24 04:23:03 +0000389
390 // Check free prototype.
Michael Ilsemand9745242013-03-08 21:03:09 +0000391 // FIXME: workaround for PR5130, this will be obsolete when a nobuiltin
Victor Hernandeze2971492009-10-24 04:23:03 +0000392 // attribute will exist.
Chris Lattner229907c2011-07-18 04:54:35 +0000393 FunctionType *FTy = Callee->getFunctionType();
Victor Hernandez33188582009-11-03 20:39:35 +0000394 if (!FTy->getReturnType()->isVoidTy())
Craig Topper9f008862014-04-15 04:59:12 +0000395 return nullptr;
Richard Smith70523c72013-07-21 23:11:42 +0000396 if (FTy->getNumParams() != ExpectedNumParams)
Craig Topper9f008862014-04-15 04:59:12 +0000397 return nullptr;
Chris Lattner67733f62011-06-18 21:46:23 +0000398 if (FTy->getParamType(0) != Type::getInt8PtrTy(Callee->getContext()))
Craig Topper9f008862014-04-15 04:59:12 +0000399 return nullptr;
Victor Hernandeze2971492009-10-24 04:23:03 +0000400
Benjamin Kramerfd063062018-02-20 22:00:33 +0000401 return dyn_cast<CallInst>(I);
Victor Hernandeze2971492009-10-24 04:23:03 +0000402}
Nuno Lopes55fff832012-06-21 15:45:28 +0000403
Nuno Lopes55fff832012-06-21 15:45:28 +0000404//===----------------------------------------------------------------------===//
405// Utility functions to compute size of objects.
406//
Petar Jovanovic644b8c12016-04-13 12:25:25 +0000407static APInt getSizeWithOverflow(const SizeOffsetType &Data) {
408 if (Data.second.isNegative() || Data.first.ult(Data.second))
409 return APInt(Data.first.getBitWidth(), 0);
410 return Data.first - Data.second;
411}
Nuno Lopes55fff832012-06-21 15:45:28 +0000412
413/// \brief Compute the size of the object pointed by Ptr. Returns true and the
414/// object size in Size if successful, and false otherwise.
Hiroshi Inoueef1c2ba2017-07-01 07:12:15 +0000415/// If RoundToAlign is true, then Size is rounded up to the alignment of
416/// allocas, byval arguments, and global variables.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000417bool llvm::getObjectSize(const Value *Ptr, uint64_t &Size, const DataLayout &DL,
George Burgess IV56c7e882017-03-21 20:08:59 +0000418 const TargetLibraryInfo *TLI, ObjectSizeOpts Opts) {
419 ObjectSizeOffsetVisitor Visitor(DL, TLI, Ptr->getContext(), Opts);
Nuno Lopes55fff832012-06-21 15:45:28 +0000420 SizeOffsetType Data = Visitor.compute(const_cast<Value*>(Ptr));
421 if (!Visitor.bothKnown(Data))
422 return false;
423
Petar Jovanovic644b8c12016-04-13 12:25:25 +0000424 Size = getSizeWithOverflow(Data).getZExtValue();
Nuno Lopes55fff832012-06-21 15:45:28 +0000425 return true;
426}
427
George Burgess IV3f089142016-12-20 23:46:36 +0000428ConstantInt *llvm::lowerObjectSizeCall(IntrinsicInst *ObjectSize,
429 const DataLayout &DL,
430 const TargetLibraryInfo *TLI,
431 bool MustSucceed) {
432 assert(ObjectSize->getIntrinsicID() == Intrinsic::objectsize &&
433 "ObjectSize must be a call to llvm.objectsize!");
434
435 bool MaxVal = cast<ConstantInt>(ObjectSize->getArgOperand(1))->isZero();
George Burgess IV56c7e882017-03-21 20:08:59 +0000436 ObjectSizeOpts EvalOptions;
George Burgess IV3f089142016-12-20 23:46:36 +0000437 // Unless we have to fold this to something, try to be as accurate as
438 // possible.
439 if (MustSucceed)
George Burgess IV56c7e882017-03-21 20:08:59 +0000440 EvalOptions.EvalMode =
441 MaxVal ? ObjectSizeOpts::Mode::Max : ObjectSizeOpts::Mode::Min;
George Burgess IV3f089142016-12-20 23:46:36 +0000442 else
George Burgess IV56c7e882017-03-21 20:08:59 +0000443 EvalOptions.EvalMode = ObjectSizeOpts::Mode::Exact;
444
445 EvalOptions.NullIsUnknownSize =
446 cast<ConstantInt>(ObjectSize->getArgOperand(2))->isOne();
George Burgess IV3f089142016-12-20 23:46:36 +0000447
448 // FIXME: Does it make sense to just return a failure value if the size won't
449 // fit in the output and `!MustSucceed`?
450 uint64_t Size;
451 auto *ResultType = cast<IntegerType>(ObjectSize->getType());
George Burgess IV56c7e882017-03-21 20:08:59 +0000452 if (getObjectSize(ObjectSize->getArgOperand(0), Size, DL, TLI, EvalOptions) &&
George Burgess IV3f089142016-12-20 23:46:36 +0000453 isUIntN(ResultType->getBitWidth(), Size))
454 return ConstantInt::get(ResultType, Size);
455
456 if (!MustSucceed)
457 return nullptr;
458
459 return ConstantInt::get(ResultType, MaxVal ? -1ULL : 0);
460}
461
Nuno Lopes55fff832012-06-21 15:45:28 +0000462STATISTIC(ObjectVisitorArgument,
463 "Number of arguments with unsolved size and offset");
464STATISTIC(ObjectVisitorLoad,
465 "Number of load instructions with unsolved size and offset");
466
Nuno Lopes55fff832012-06-21 15:45:28 +0000467APInt ObjectSizeOffsetVisitor::align(APInt Size, uint64_t Align) {
George Burgess IV56c7e882017-03-21 20:08:59 +0000468 if (Options.RoundToAlign && Align)
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000469 return APInt(IntTyBits, alignTo(Size.getZExtValue(), Align));
Nuno Lopes55fff832012-06-21 15:45:28 +0000470 return Size;
471}
472
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000473ObjectSizeOffsetVisitor::ObjectSizeOffsetVisitor(const DataLayout &DL,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000474 const TargetLibraryInfo *TLI,
Nuno Lopes55fff832012-06-21 15:45:28 +0000475 LLVMContext &Context,
George Burgess IV56c7e882017-03-21 20:08:59 +0000476 ObjectSizeOpts Options)
477 : DL(DL), TLI(TLI), Options(Options) {
Matt Arsenaultd3ee7af2013-12-14 00:27:48 +0000478 // Pointer size must be rechecked for each object visited since it could have
479 // a different address space.
Nuno Lopes55fff832012-06-21 15:45:28 +0000480}
481
482SizeOffsetType ObjectSizeOffsetVisitor::compute(Value *V) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000483 IntTyBits = DL.getPointerTypeSizeInBits(V->getType());
Matt Arsenaultd3ee7af2013-12-14 00:27:48 +0000484 Zero = APInt::getNullValue(IntTyBits);
485
Nuno Lopes55fff832012-06-21 15:45:28 +0000486 V = V->stripPointerCasts();
Nadav Rotemabcc64f2013-04-09 18:16:05 +0000487 if (Instruction *I = dyn_cast<Instruction>(V)) {
488 // If we have already seen this instruction, bail out. Cycles can happen in
489 // unreachable code after constant propagation.
David Blaikie70573dc2014-11-19 07:49:26 +0000490 if (!SeenInsts.insert(I).second)
Nadav Rotemabcc64f2013-04-09 18:16:05 +0000491 return unknown();
Nuno Lopesd896a402012-12-31 20:45:10 +0000492
Benjamin Kramer34764fe2012-08-17 19:26:41 +0000493 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V))
Nadav Rotemabcc64f2013-04-09 18:16:05 +0000494 return visitGEPOperator(*GEP);
495 return visit(*I);
Benjamin Kramer34764fe2012-08-17 19:26:41 +0000496 }
Nuno Lopes55fff832012-06-21 15:45:28 +0000497 if (Argument *A = dyn_cast<Argument>(V))
498 return visitArgument(*A);
499 if (ConstantPointerNull *P = dyn_cast<ConstantPointerNull>(V))
500 return visitConstantPointerNull(*P);
Nuno Lopese9d6dbf2012-12-31 16:23:48 +0000501 if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
502 return visitGlobalAlias(*GA);
Nuno Lopes55fff832012-06-21 15:45:28 +0000503 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
504 return visitGlobalVariable(*GV);
505 if (UndefValue *UV = dyn_cast<UndefValue>(V))
506 return visitUndefValue(*UV);
Benjamin Kramer34764fe2012-08-17 19:26:41 +0000507 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
Nuno Lopes55fff832012-06-21 15:45:28 +0000508 if (CE->getOpcode() == Instruction::IntToPtr)
509 return unknown(); // clueless
Nadav Rotemabcc64f2013-04-09 18:16:05 +0000510 if (CE->getOpcode() == Instruction::GetElementPtr)
511 return visitGEPOperator(cast<GEPOperator>(*CE));
Benjamin Kramer34764fe2012-08-17 19:26:41 +0000512 }
Nuno Lopes55fff832012-06-21 15:45:28 +0000513
514 DEBUG(dbgs() << "ObjectSizeOffsetVisitor::compute() unhandled value: " << *V
515 << '\n');
516 return unknown();
517}
518
Mikael Holmenad7e7182017-07-12 06:19:10 +0000519/// When we're compiling N-bit code, and the user uses parameters that are
520/// greater than N bits (e.g. uint64_t on a 32-bit build), we can run into
521/// trouble with APInt size issues. This function handles resizing + overflow
522/// checks for us. Check and zext or trunc \p I depending on IntTyBits and
523/// I's value.
524bool ObjectSizeOffsetVisitor::CheckedZextOrTrunc(APInt &I) {
525 // More bits than we can handle. Checking the bit width isn't necessary, but
526 // it's faster than checking active bits, and should give `false` in the
527 // vast majority of cases.
528 if (I.getBitWidth() > IntTyBits && I.getActiveBits() > IntTyBits)
529 return false;
530 if (I.getBitWidth() != IntTyBits)
531 I = I.zextOrTrunc(IntTyBits);
532 return true;
533}
534
Nuno Lopes55fff832012-06-21 15:45:28 +0000535SizeOffsetType ObjectSizeOffsetVisitor::visitAllocaInst(AllocaInst &I) {
536 if (!I.getAllocatedType()->isSized())
537 return unknown();
538
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000539 APInt Size(IntTyBits, DL.getTypeAllocSize(I.getAllocatedType()));
Nuno Lopes55fff832012-06-21 15:45:28 +0000540 if (!I.isArrayAllocation())
541 return std::make_pair(align(Size, I.getAlignment()), Zero);
542
543 Value *ArraySize = I.getArraySize();
544 if (const ConstantInt *C = dyn_cast<ConstantInt>(ArraySize)) {
Mikael Holmenad7e7182017-07-12 06:19:10 +0000545 APInt NumElems = C->getValue();
546 if (!CheckedZextOrTrunc(NumElems))
547 return unknown();
548
549 bool Overflow;
550 Size = Size.umul_ov(NumElems, Overflow);
551 return Overflow ? unknown() : std::make_pair(align(Size, I.getAlignment()),
552 Zero);
Nuno Lopes55fff832012-06-21 15:45:28 +0000553 }
554 return unknown();
555}
556
557SizeOffsetType ObjectSizeOffsetVisitor::visitArgument(Argument &A) {
Sanjay Patel490193d2016-07-07 16:19:09 +0000558 // No interprocedural analysis is done at the moment.
Reid Kleckner26af2ca2014-01-28 02:38:36 +0000559 if (!A.hasByValOrInAllocaAttr()) {
Nuno Lopes55fff832012-06-21 15:45:28 +0000560 ++ObjectVisitorArgument;
561 return unknown();
562 }
563 PointerType *PT = cast<PointerType>(A.getType());
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000564 APInt Size(IntTyBits, DL.getTypeAllocSize(PT->getElementType()));
Nuno Lopes55fff832012-06-21 15:45:28 +0000565 return std::make_pair(align(Size, A.getParamAlignment()), Zero);
566}
567
568SizeOffsetType ObjectSizeOffsetVisitor::visitCallSite(CallSite CS) {
George Burgess IVccae43a2016-12-23 01:18:09 +0000569 Optional<AllocFnsTy> FnData = getAllocationSize(CS.getInstruction(), TLI);
Nuno Lopes55fff832012-06-21 15:45:28 +0000570 if (!FnData)
571 return unknown();
572
Sanjay Patel490193d2016-07-07 16:19:09 +0000573 // Handle strdup-like functions separately.
Nuno Lopes55fff832012-06-21 15:45:28 +0000574 if (FnData->AllocTy == StrDupLike) {
Nuno Lopes2a4b09c2012-07-24 16:28:13 +0000575 APInt Size(IntTyBits, GetStringLength(CS.getArgument(0)));
576 if (!Size)
577 return unknown();
578
Sanjay Patel490193d2016-07-07 16:19:09 +0000579 // Strndup limits strlen.
Nuno Lopes2a4b09c2012-07-24 16:28:13 +0000580 if (FnData->FstParam > 0) {
George Burgess IV278199f2016-04-12 01:05:35 +0000581 ConstantInt *Arg =
582 dyn_cast<ConstantInt>(CS.getArgument(FnData->FstParam));
Nuno Lopes2a4b09c2012-07-24 16:28:13 +0000583 if (!Arg)
584 return unknown();
585
586 APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits);
587 if (Size.ugt(MaxSize))
588 Size = MaxSize + 1;
589 }
590 return std::make_pair(Size, Zero);
Nuno Lopes55fff832012-06-21 15:45:28 +0000591 }
592
593 ConstantInt *Arg = dyn_cast<ConstantInt>(CS.getArgument(FnData->FstParam));
594 if (!Arg)
595 return unknown();
596
George Burgess IV278199f2016-04-12 01:05:35 +0000597 APInt Size = Arg->getValue();
598 if (!CheckedZextOrTrunc(Size))
599 return unknown();
600
Sanjay Patel490193d2016-07-07 16:19:09 +0000601 // Size is determined by just 1 parameter.
Nuno Lopesf06b7312012-06-21 18:38:26 +0000602 if (FnData->SndParam < 0)
Nuno Lopes55fff832012-06-21 15:45:28 +0000603 return std::make_pair(Size, Zero);
604
605 Arg = dyn_cast<ConstantInt>(CS.getArgument(FnData->SndParam));
606 if (!Arg)
607 return unknown();
608
George Burgess IV278199f2016-04-12 01:05:35 +0000609 APInt NumElems = Arg->getValue();
610 if (!CheckedZextOrTrunc(NumElems))
611 return unknown();
612
613 bool Overflow;
614 Size = Size.umul_ov(NumElems, Overflow);
615 return Overflow ? unknown() : std::make_pair(Size, Zero);
Nuno Lopes55fff832012-06-21 15:45:28 +0000616
617 // TODO: handle more standard functions (+ wchar cousins):
Nuno Lopesf0626f22012-07-25 18:49:28 +0000618 // - strdup / strndup
Nuno Lopes55fff832012-06-21 15:45:28 +0000619 // - strcpy / strncpy
620 // - strcat / strncat
621 // - memcpy / memmove
Nuno Lopesf0626f22012-07-25 18:49:28 +0000622 // - strcat / strncat
Nuno Lopes55fff832012-06-21 15:45:28 +0000623 // - memset
624}
625
626SizeOffsetType
George Burgess IV56c7e882017-03-21 20:08:59 +0000627ObjectSizeOffsetVisitor::visitConstantPointerNull(ConstantPointerNull& CPN) {
628 if (Options.NullIsUnknownSize && CPN.getType()->getAddressSpace() == 0)
629 return unknown();
Nuno Lopes55fff832012-06-21 15:45:28 +0000630 return std::make_pair(Zero, Zero);
631}
632
633SizeOffsetType
Nuno Lopes181d67e2012-06-28 16:34:03 +0000634ObjectSizeOffsetVisitor::visitExtractElementInst(ExtractElementInst&) {
635 return unknown();
636}
637
638SizeOffsetType
Nuno Lopes55fff832012-06-21 15:45:28 +0000639ObjectSizeOffsetVisitor::visitExtractValueInst(ExtractValueInst&) {
640 // Easy cases were already folded by previous passes.
641 return unknown();
642}
643
644SizeOffsetType ObjectSizeOffsetVisitor::visitGEPOperator(GEPOperator &GEP) {
645 SizeOffsetType PtrData = compute(GEP.getPointerOperand());
Nuno Lopesb6ad9822012-12-30 16:25:48 +0000646 APInt Offset(IntTyBits, 0);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000647 if (!bothKnown(PtrData) || !GEP.accumulateConstantOffset(DL, Offset))
Nuno Lopes55fff832012-06-21 15:45:28 +0000648 return unknown();
649
Nuno Lopes55fff832012-06-21 15:45:28 +0000650 return std::make_pair(PtrData.first, PtrData.second + Offset);
651}
652
Nuno Lopese9d6dbf2012-12-31 16:23:48 +0000653SizeOffsetType ObjectSizeOffsetVisitor::visitGlobalAlias(GlobalAlias &GA) {
Sanjoy Das5ce32722016-04-08 00:48:30 +0000654 if (GA.isInterposable())
Nuno Lopese9d6dbf2012-12-31 16:23:48 +0000655 return unknown();
656 return compute(GA.getAliasee());
657}
658
Nuno Lopes55fff832012-06-21 15:45:28 +0000659SizeOffsetType ObjectSizeOffsetVisitor::visitGlobalVariable(GlobalVariable &GV){
660 if (!GV.hasDefinitiveInitializer())
661 return unknown();
662
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000663 APInt Size(IntTyBits, DL.getTypeAllocSize(GV.getType()->getElementType()));
Nuno Lopes55fff832012-06-21 15:45:28 +0000664 return std::make_pair(align(Size, GV.getAlignment()), Zero);
665}
666
667SizeOffsetType ObjectSizeOffsetVisitor::visitIntToPtrInst(IntToPtrInst&) {
668 // clueless
669 return unknown();
670}
671
672SizeOffsetType ObjectSizeOffsetVisitor::visitLoadInst(LoadInst&) {
673 ++ObjectVisitorLoad;
674 return unknown();
675}
676
Nadav Rotemabcc64f2013-04-09 18:16:05 +0000677SizeOffsetType ObjectSizeOffsetVisitor::visitPHINode(PHINode&) {
678 // too complex to analyze statically.
679 return unknown();
Nuno Lopes55fff832012-06-21 15:45:28 +0000680}
681
682SizeOffsetType ObjectSizeOffsetVisitor::visitSelectInst(SelectInst &I) {
683 SizeOffsetType TrueSide = compute(I.getTrueValue());
684 SizeOffsetType FalseSide = compute(I.getFalseValue());
Petar Jovanovic644b8c12016-04-13 12:25:25 +0000685 if (bothKnown(TrueSide) && bothKnown(FalseSide)) {
686 if (TrueSide == FalseSide) {
687 return TrueSide;
688 }
689
690 APInt TrueResult = getSizeWithOverflow(TrueSide);
691 APInt FalseResult = getSizeWithOverflow(FalseSide);
692
693 if (TrueResult == FalseResult) {
694 return TrueSide;
695 }
George Burgess IV56c7e882017-03-21 20:08:59 +0000696 if (Options.EvalMode == ObjectSizeOpts::Mode::Min) {
Petar Jovanovic644b8c12016-04-13 12:25:25 +0000697 if (TrueResult.slt(FalseResult))
698 return TrueSide;
699 return FalseSide;
700 }
George Burgess IV56c7e882017-03-21 20:08:59 +0000701 if (Options.EvalMode == ObjectSizeOpts::Mode::Max) {
Petar Jovanovic644b8c12016-04-13 12:25:25 +0000702 if (TrueResult.sgt(FalseResult))
703 return TrueSide;
704 return FalseSide;
705 }
706 }
Nuno Lopes55fff832012-06-21 15:45:28 +0000707 return unknown();
708}
709
710SizeOffsetType ObjectSizeOffsetVisitor::visitUndefValue(UndefValue&) {
711 return std::make_pair(Zero, Zero);
712}
713
714SizeOffsetType ObjectSizeOffsetVisitor::visitInstruction(Instruction &I) {
715 DEBUG(dbgs() << "ObjectSizeOffsetVisitor unknown instruction:" << I << '\n');
716 return unknown();
717}
718
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000719ObjectSizeOffsetEvaluator::ObjectSizeOffsetEvaluator(
720 const DataLayout &DL, const TargetLibraryInfo *TLI, LLVMContext &Context,
721 bool RoundToAlign)
722 : DL(DL), TLI(TLI), Context(Context), Builder(Context, TargetFolder(DL)),
723 RoundToAlign(RoundToAlign) {
Matt Arsenaultd3ee7af2013-12-14 00:27:48 +0000724 // IntTy and Zero must be set for each compute() since the address space may
725 // be different for later objects.
Nuno Lopes55fff832012-06-21 15:45:28 +0000726}
727
728SizeOffsetEvalType ObjectSizeOffsetEvaluator::compute(Value *V) {
Matt Arsenaultd3ee7af2013-12-14 00:27:48 +0000729 // XXX - Are vectors of pointers possible here?
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000730 IntTy = cast<IntegerType>(DL.getIntPtrType(V->getType()));
Matt Arsenaultd3ee7af2013-12-14 00:27:48 +0000731 Zero = ConstantInt::get(IntTy, 0);
732
Nuno Lopes55fff832012-06-21 15:45:28 +0000733 SizeOffsetEvalType Result = compute_(V);
734
735 if (!bothKnown(Result)) {
Sanjay Patel490193d2016-07-07 16:19:09 +0000736 // Erase everything that was computed in this iteration from the cache, so
Nuno Lopes55fff832012-06-21 15:45:28 +0000737 // that no dangling references are left behind. We could be a bit smarter if
738 // we kept a dependency graph. It's probably not worth the complexity.
Benjamin Krameraa209152016-06-26 17:27:42 +0000739 for (const Value *SeenVal : SeenVals) {
740 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal);
Nuno Lopes55fff832012-06-21 15:45:28 +0000741 // non-computable results can be safely cached
742 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second))
743 CacheMap.erase(CacheIt);
744 }
745 }
746
747 SeenVals.clear();
748 return Result;
749}
750
751SizeOffsetEvalType ObjectSizeOffsetEvaluator::compute_(Value *V) {
George Burgess IV56c7e882017-03-21 20:08:59 +0000752 ObjectSizeOpts ObjSizeOptions;
753 ObjSizeOptions.RoundToAlign = RoundToAlign;
754
755 ObjectSizeOffsetVisitor Visitor(DL, TLI, Context, ObjSizeOptions);
Nuno Lopes55fff832012-06-21 15:45:28 +0000756 SizeOffsetType Const = Visitor.compute(V);
757 if (Visitor.bothKnown(Const))
758 return std::make_pair(ConstantInt::get(Context, Const.first),
759 ConstantInt::get(Context, Const.second));
760
761 V = V->stripPointerCasts();
762
Sanjay Patel490193d2016-07-07 16:19:09 +0000763 // Check cache.
Nuno Lopes55fff832012-06-21 15:45:28 +0000764 CacheMapTy::iterator CacheIt = CacheMap.find(V);
765 if (CacheIt != CacheMap.end())
766 return CacheIt->second;
767
Sanjay Patel490193d2016-07-07 16:19:09 +0000768 // Always generate code immediately before the instruction being
769 // processed, so that the generated code dominates the same BBs.
Duncan P. N. Exon Smith5a82c912015-10-10 00:53:03 +0000770 BuilderTy::InsertPointGuard Guard(Builder);
Nuno Lopes55fff832012-06-21 15:45:28 +0000771 if (Instruction *I = dyn_cast<Instruction>(V))
772 Builder.SetInsertPoint(I);
773
Sanjay Patel490193d2016-07-07 16:19:09 +0000774 // Now compute the size and offset.
Nuno Lopes55fff832012-06-21 15:45:28 +0000775 SizeOffsetEvalType Result;
Benjamin Kramer155c9d52013-09-29 19:39:13 +0000776
777 // Record the pointers that were handled in this run, so that they can be
778 // cleaned later if something fails. We also use this set to break cycles that
779 // can occur in dead code.
David Blaikie70573dc2014-11-19 07:49:26 +0000780 if (!SeenVals.insert(V).second) {
Benjamin Kramer155c9d52013-09-29 19:39:13 +0000781 Result = unknown();
782 } else if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Nuno Lopes55fff832012-06-21 15:45:28 +0000783 Result = visitGEPOperator(*GEP);
784 } else if (Instruction *I = dyn_cast<Instruction>(V)) {
785 Result = visit(*I);
786 } else if (isa<Argument>(V) ||
787 (isa<ConstantExpr>(V) &&
788 cast<ConstantExpr>(V)->getOpcode() == Instruction::IntToPtr) ||
Nuno Lopese9d6dbf2012-12-31 16:23:48 +0000789 isa<GlobalAlias>(V) ||
Nuno Lopes55fff832012-06-21 15:45:28 +0000790 isa<GlobalVariable>(V)) {
Sanjay Patel490193d2016-07-07 16:19:09 +0000791 // Ignore values where we cannot do more than ObjectSizeVisitor.
Nuno Lopes55fff832012-06-21 15:45:28 +0000792 Result = unknown();
793 } else {
794 DEBUG(dbgs() << "ObjectSizeOffsetEvaluator::compute() unhandled value: "
795 << *V << '\n');
796 Result = unknown();
797 }
798
Nuno Lopes55fff832012-06-21 15:45:28 +0000799 // Don't reuse CacheIt since it may be invalid at this point.
800 CacheMap[V] = Result;
801 return Result;
802}
803
804SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitAllocaInst(AllocaInst &I) {
805 if (!I.getAllocatedType()->isSized())
806 return unknown();
807
808 // must be a VLA
809 assert(I.isArrayAllocation());
810 Value *ArraySize = I.getArraySize();
811 Value *Size = ConstantInt::get(ArraySize->getType(),
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000812 DL.getTypeAllocSize(I.getAllocatedType()));
Nuno Lopes55fff832012-06-21 15:45:28 +0000813 Size = Builder.CreateMul(Size, ArraySize);
814 return std::make_pair(Size, Zero);
815}
816
817SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitCallSite(CallSite CS) {
George Burgess IVccae43a2016-12-23 01:18:09 +0000818 Optional<AllocFnsTy> FnData = getAllocationSize(CS.getInstruction(), TLI);
Nuno Lopes55fff832012-06-21 15:45:28 +0000819 if (!FnData)
820 return unknown();
821
Sanjay Patel490193d2016-07-07 16:19:09 +0000822 // Handle strdup-like functions separately.
Nuno Lopes55fff832012-06-21 15:45:28 +0000823 if (FnData->AllocTy == StrDupLike) {
Nuno Lopesf0626f22012-07-25 18:49:28 +0000824 // TODO
825 return unknown();
Nuno Lopes55fff832012-06-21 15:45:28 +0000826 }
827
Nuno Lopesa6aa3d32012-06-21 16:47:58 +0000828 Value *FirstArg = CS.getArgument(FnData->FstParam);
829 FirstArg = Builder.CreateZExt(FirstArg, IntTy);
Nuno Lopesf06b7312012-06-21 18:38:26 +0000830 if (FnData->SndParam < 0)
Nuno Lopes55fff832012-06-21 15:45:28 +0000831 return std::make_pair(FirstArg, Zero);
832
833 Value *SecondArg = CS.getArgument(FnData->SndParam);
Nuno Lopesa6aa3d32012-06-21 16:47:58 +0000834 SecondArg = Builder.CreateZExt(SecondArg, IntTy);
Nuno Lopes55fff832012-06-21 15:45:28 +0000835 Value *Size = Builder.CreateMul(FirstArg, SecondArg);
836 return std::make_pair(Size, Zero);
837
838 // TODO: handle more standard functions (+ wchar cousins):
Nuno Lopesf0626f22012-07-25 18:49:28 +0000839 // - strdup / strndup
Nuno Lopes55fff832012-06-21 15:45:28 +0000840 // - strcpy / strncpy
841 // - strcat / strncat
842 // - memcpy / memmove
Nuno Lopesf0626f22012-07-25 18:49:28 +0000843 // - strcat / strncat
Nuno Lopes55fff832012-06-21 15:45:28 +0000844 // - memset
845}
846
847SizeOffsetEvalType
Nuno Lopes181d67e2012-06-28 16:34:03 +0000848ObjectSizeOffsetEvaluator::visitExtractElementInst(ExtractElementInst&) {
849 return unknown();
850}
851
852SizeOffsetEvalType
853ObjectSizeOffsetEvaluator::visitExtractValueInst(ExtractValueInst&) {
854 return unknown();
855}
856
857SizeOffsetEvalType
Nuno Lopes55fff832012-06-21 15:45:28 +0000858ObjectSizeOffsetEvaluator::visitGEPOperator(GEPOperator &GEP) {
859 SizeOffsetEvalType PtrData = compute_(GEP.getPointerOperand());
860 if (!bothKnown(PtrData))
861 return unknown();
862
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000863 Value *Offset = EmitGEPOffset(&Builder, DL, &GEP, /*NoAssumptions=*/true);
Nuno Lopes55fff832012-06-21 15:45:28 +0000864 Offset = Builder.CreateAdd(PtrData.second, Offset);
865 return std::make_pair(PtrData.first, Offset);
866}
867
868SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitIntToPtrInst(IntToPtrInst&) {
869 // clueless
870 return unknown();
871}
872
873SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitLoadInst(LoadInst&) {
874 return unknown();
875}
876
877SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitPHINode(PHINode &PHI) {
Sanjay Patel490193d2016-07-07 16:19:09 +0000878 // Create 2 PHIs: one for size and another for offset.
Nuno Lopes55fff832012-06-21 15:45:28 +0000879 PHINode *SizePHI = Builder.CreatePHI(IntTy, PHI.getNumIncomingValues());
880 PHINode *OffsetPHI = Builder.CreatePHI(IntTy, PHI.getNumIncomingValues());
881
Sanjay Patel490193d2016-07-07 16:19:09 +0000882 // Insert right away in the cache to handle recursive PHIs.
Nuno Lopes55fff832012-06-21 15:45:28 +0000883 CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI);
884
Sanjay Patel490193d2016-07-07 16:19:09 +0000885 // Compute offset/size for each PHI incoming pointer.
Nuno Lopes55fff832012-06-21 15:45:28 +0000886 for (unsigned i = 0, e = PHI.getNumIncomingValues(); i != e; ++i) {
Duncan P. N. Exon Smith5a82c912015-10-10 00:53:03 +0000887 Builder.SetInsertPoint(&*PHI.getIncomingBlock(i)->getFirstInsertionPt());
Nuno Lopes55fff832012-06-21 15:45:28 +0000888 SizeOffsetEvalType EdgeData = compute_(PHI.getIncomingValue(i));
889
890 if (!bothKnown(EdgeData)) {
891 OffsetPHI->replaceAllUsesWith(UndefValue::get(IntTy));
892 OffsetPHI->eraseFromParent();
893 SizePHI->replaceAllUsesWith(UndefValue::get(IntTy));
894 SizePHI->eraseFromParent();
895 return unknown();
896 }
897 SizePHI->addIncoming(EdgeData.first, PHI.getIncomingBlock(i));
898 OffsetPHI->addIncoming(EdgeData.second, PHI.getIncomingBlock(i));
899 }
Nuno Lopes9291ff42012-07-03 17:13:25 +0000900
901 Value *Size = SizePHI, *Offset = OffsetPHI, *Tmp;
902 if ((Tmp = SizePHI->hasConstantValue())) {
903 Size = Tmp;
904 SizePHI->replaceAllUsesWith(Size);
905 SizePHI->eraseFromParent();
906 }
907 if ((Tmp = OffsetPHI->hasConstantValue())) {
908 Offset = Tmp;
909 OffsetPHI->replaceAllUsesWith(Offset);
910 OffsetPHI->eraseFromParent();
911 }
912 return std::make_pair(Size, Offset);
Nuno Lopes55fff832012-06-21 15:45:28 +0000913}
914
915SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitSelectInst(SelectInst &I) {
916 SizeOffsetEvalType TrueSide = compute_(I.getTrueValue());
917 SizeOffsetEvalType FalseSide = compute_(I.getFalseValue());
918
919 if (!bothKnown(TrueSide) || !bothKnown(FalseSide))
920 return unknown();
921 if (TrueSide == FalseSide)
922 return TrueSide;
923
924 Value *Size = Builder.CreateSelect(I.getCondition(), TrueSide.first,
925 FalseSide.first);
926 Value *Offset = Builder.CreateSelect(I.getCondition(), TrueSide.second,
927 FalseSide.second);
928 return std::make_pair(Size, Offset);
929}
930
931SizeOffsetEvalType ObjectSizeOffsetEvaluator::visitInstruction(Instruction &I) {
932 DEBUG(dbgs() << "ObjectSizeOffsetEvaluator unknown instruction:" << I <<'\n');
933 return unknown();
934}