blob: 9440ae3ef2af9c1443492c4b3557eea4125c7503 [file] [log] [blame]
Peter Collingbourne9f7ec142016-02-03 02:51:00 +00001//===- Evaluator.cpp - LLVM IR evaluator ----------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Function evaluator for LLVM IR.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Transforms/Utils/Evaluator.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000015#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/STLExtras.h"
17#include "llvm/ADT/SmallPtrSet.h"
18#include "llvm/ADT/SmallVector.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000019#include "llvm/Analysis/ConstantFolding.h"
20#include "llvm/IR/BasicBlock.h"
21#include "llvm/IR/CallSite.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000022#include "llvm/IR/Constant.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000023#include "llvm/IR/Constants.h"
Craig Topperb5c2bfa2017-03-20 05:08:41 +000024#include "llvm/IR/DataLayout.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000025#include "llvm/IR/DerivedTypes.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000026#include "llvm/IR/Function.h"
27#include "llvm/IR/GlobalValue.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000028#include "llvm/IR/GlobalVariable.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000029#include "llvm/IR/InstrTypes.h"
30#include "llvm/IR/Instruction.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000031#include "llvm/IR/Instructions.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000032#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000033#include "llvm/IR/Intrinsics.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000034#include "llvm/IR/Operator.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000035#include "llvm/IR/Type.h"
36#include "llvm/IR/User.h"
37#include "llvm/IR/Value.h"
38#include "llvm/Support/Casting.h"
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000039#include "llvm/Support/Debug.h"
Peter Collingbourne83cc9812016-02-03 03:16:37 +000040#include "llvm/Support/raw_ostream.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000041#include <iterator>
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000042
43#define DEBUG_TYPE "evaluator"
44
45using namespace llvm;
46
47static inline bool
48isSimpleEnoughValueToCommit(Constant *C,
49 SmallPtrSetImpl<Constant *> &SimpleConstants,
50 const DataLayout &DL);
51
52/// Return true if the specified constant can be handled by the code generator.
53/// We don't want to generate something like:
54/// void *X = &X/42;
55/// because the code generator doesn't have a relocation that can handle that.
56///
57/// This function should be called if C was not found (but just got inserted)
58/// in SimpleConstants to avoid having to rescan the same constants all the
59/// time.
60static bool
61isSimpleEnoughValueToCommitHelper(Constant *C,
62 SmallPtrSetImpl<Constant *> &SimpleConstants,
63 const DataLayout &DL) {
64 // Simple global addresses are supported, do not allow dllimport or
65 // thread-local globals.
66 if (auto *GV = dyn_cast<GlobalValue>(C))
67 return !GV->hasDLLImportStorageClass() && !GV->isThreadLocal();
68
69 // Simple integer, undef, constant aggregate zero, etc are all supported.
70 if (C->getNumOperands() == 0 || isa<BlockAddress>(C))
71 return true;
72
73 // Aggregate values are safe if all their elements are.
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +000074 if (isa<ConstantAggregate>(C)) {
Peter Collingbourne9f7ec142016-02-03 02:51:00 +000075 for (Value *Op : C->operands())
76 if (!isSimpleEnoughValueToCommit(cast<Constant>(Op), SimpleConstants, DL))
77 return false;
78 return true;
79 }
80
81 // We don't know exactly what relocations are allowed in constant expressions,
82 // so we allow &global+constantoffset, which is safe and uniformly supported
83 // across targets.
84 ConstantExpr *CE = cast<ConstantExpr>(C);
85 switch (CE->getOpcode()) {
86 case Instruction::BitCast:
87 // Bitcast is fine if the casted value is fine.
88 return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, DL);
89
90 case Instruction::IntToPtr:
91 case Instruction::PtrToInt:
92 // int <=> ptr is fine if the int type is the same size as the
93 // pointer type.
94 if (DL.getTypeSizeInBits(CE->getType()) !=
95 DL.getTypeSizeInBits(CE->getOperand(0)->getType()))
96 return false;
97 return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, DL);
98
99 // GEP is fine if it is simple + constant offset.
100 case Instruction::GetElementPtr:
101 for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
102 if (!isa<ConstantInt>(CE->getOperand(i)))
103 return false;
104 return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, DL);
105
106 case Instruction::Add:
107 // We allow simple+cst.
108 if (!isa<ConstantInt>(CE->getOperand(1)))
109 return false;
110 return isSimpleEnoughValueToCommit(CE->getOperand(0), SimpleConstants, DL);
111 }
112 return false;
113}
114
115static inline bool
116isSimpleEnoughValueToCommit(Constant *C,
117 SmallPtrSetImpl<Constant *> &SimpleConstants,
118 const DataLayout &DL) {
119 // If we already checked this constant, we win.
120 if (!SimpleConstants.insert(C).second)
121 return true;
122 // Check the constant.
123 return isSimpleEnoughValueToCommitHelper(C, SimpleConstants, DL);
124}
125
126/// Return true if this constant is simple enough for us to understand. In
127/// particular, if it is a cast to anything other than from one pointer type to
128/// another pointer type, we punt. We basically just support direct accesses to
129/// globals and GEP's of globals. This should be kept up to date with
130/// CommitValueTo.
131static bool isSimpleEnoughPointerToCommit(Constant *C) {
132 // Conservatively, avoid aggregate types. This is because we don't
133 // want to worry about them partially overlapping other stores.
134 if (!cast<PointerType>(C->getType())->getElementType()->isSingleValueType())
135 return false;
136
137 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
138 // Do not allow weak/*_odr/linkonce linkage or external globals.
139 return GV->hasUniqueInitializer();
140
141 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
142 // Handle a constantexpr gep.
143 if (CE->getOpcode() == Instruction::GetElementPtr &&
144 isa<GlobalVariable>(CE->getOperand(0)) &&
145 cast<GEPOperator>(CE)->isInBounds()) {
146 GlobalVariable *GV = cast<GlobalVariable>(CE->getOperand(0));
147 // Do not allow weak/*_odr/linkonce/dllimport/dllexport linkage or
148 // external globals.
149 if (!GV->hasUniqueInitializer())
150 return false;
151
152 // The first index must be zero.
153 ConstantInt *CI = dyn_cast<ConstantInt>(*std::next(CE->op_begin()));
154 if (!CI || !CI->isZero()) return false;
155
156 // The remaining indices must be compile-time known integers within the
157 // notional bounds of the corresponding static array types.
158 if (!CE->isGEPWithNoNotionalOverIndexing())
159 return false;
160
161 return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE);
162
163 // A constantexpr bitcast from a pointer to another pointer is a no-op,
164 // and we know how to evaluate it by moving the bitcast from the pointer
165 // operand to the value operand.
166 } else if (CE->getOpcode() == Instruction::BitCast &&
167 isa<GlobalVariable>(CE->getOperand(0))) {
168 // Do not allow weak/*_odr/linkonce/dllimport/dllexport linkage or
169 // external globals.
170 return cast<GlobalVariable>(CE->getOperand(0))->hasUniqueInitializer();
171 }
172 }
173
174 return false;
175}
176
Eugene Leviant6f42a2c2018-03-13 10:19:50 +0000177static Constant *getInitializer(Constant *C) {
178 auto *GV = dyn_cast<GlobalVariable>(C);
179 return GV && GV->hasDefinitiveInitializer() ? GV->getInitializer() : nullptr;
180}
181
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000182/// Return the value that would be computed by a load from P after the stores
183/// reflected by 'memory' have been performed. If we can't decide, return null.
184Constant *Evaluator::ComputeLoadResult(Constant *P) {
185 // If this memory location has been recently stored, use the stored value: it
186 // is the most up-to-date.
187 DenseMap<Constant*, Constant*>::const_iterator I = MutatedMemory.find(P);
188 if (I != MutatedMemory.end()) return I->second;
189
190 // Access it.
191 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) {
192 if (GV->hasDefinitiveInitializer())
193 return GV->getInitializer();
194 return nullptr;
195 }
196
Eugene Leviant6f42a2c2018-03-13 10:19:50 +0000197 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(P)) {
198 switch (CE->getOpcode()) {
199 // Handle a constantexpr getelementptr.
200 case Instruction::GetElementPtr:
201 if (auto *I = getInitializer(CE->getOperand(0)))
202 return ConstantFoldLoadThroughGEPConstantExpr(I, CE);
203 break;
204 // Handle a constantexpr bitcast.
205 case Instruction::BitCast:
Mircea Trofinaa3fea6c2018-04-06 15:54:47 +0000206 Constant *Val = getVal(CE->getOperand(0));
207 auto MM = MutatedMemory.find(Val);
208 auto *I = (MM != MutatedMemory.end()) ? MM->second
209 : getInitializer(CE->getOperand(0));
210 if (I)
Eugene Leviant6f42a2c2018-03-13 10:19:50 +0000211 return ConstantFoldLoadThroughBitcast(
212 I, P->getType()->getPointerElementType(), DL);
213 break;
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000214 }
Eugene Leviant6f42a2c2018-03-13 10:19:50 +0000215 }
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000216
217 return nullptr; // don't know how to evaluate.
218}
219
220/// Evaluate all instructions in block BB, returning true if successful, false
221/// if we can't evaluate it. NewBB returns the next BB that control flows into,
222/// or null upon return.
223bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst,
224 BasicBlock *&NextBB) {
225 // This is the main evaluation loop.
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000226 while (true) {
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000227 Constant *InstResult = nullptr;
228
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000229 LLVM_DEBUG(dbgs() << "Evaluating Instruction: " << *CurInst << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000230
231 if (StoreInst *SI = dyn_cast<StoreInst>(CurInst)) {
232 if (!SI->isSimple()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000233 LLVM_DEBUG(dbgs() << "Store is not simple! Can not evaluate.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000234 return false; // no volatile/atomic accesses.
235 }
236 Constant *Ptr = getVal(SI->getOperand(1));
David Majnemerd536f232016-07-29 03:27:26 +0000237 if (auto *FoldedPtr = ConstantFoldConstant(Ptr, DL, TLI)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000238 LLVM_DEBUG(dbgs() << "Folding constant ptr expression: " << *Ptr);
David Majnemerd536f232016-07-29 03:27:26 +0000239 Ptr = FoldedPtr;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000240 LLVM_DEBUG(dbgs() << "; To: " << *Ptr << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000241 }
242 if (!isSimpleEnoughPointerToCommit(Ptr)) {
243 // If this is too complex for us to commit, reject it.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000244 LLVM_DEBUG(
245 dbgs() << "Pointer is too complex for us to evaluate store.");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000246 return false;
247 }
248
249 Constant *Val = getVal(SI->getOperand(0));
250
251 // If this might be too difficult for the backend to handle (e.g. the addr
252 // of one global variable divided by another) then we can't commit it.
253 if (!isSimpleEnoughValueToCommit(Val, SimpleConstants, DL)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000254 LLVM_DEBUG(dbgs() << "Store value is too complex to evaluate store. "
255 << *Val << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000256 return false;
257 }
258
259 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
260 if (CE->getOpcode() == Instruction::BitCast) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000261 LLVM_DEBUG(dbgs()
262 << "Attempting to resolve bitcast on constant ptr.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000263 // If we're evaluating a store through a bitcast, then we need
264 // to pull the bitcast off the pointer type and push it onto the
265 // stored value.
266 Ptr = CE->getOperand(0);
267
268 Type *NewTy = cast<PointerType>(Ptr->getType())->getElementType();
269
270 // In order to push the bitcast onto the stored value, a bitcast
271 // from NewTy to Val's type must be legal. If it's not, we can try
272 // introspecting NewTy to find a legal conversion.
Eugene Leviant6f42a2c2018-03-13 10:19:50 +0000273 Constant *NewVal;
274 while (!(NewVal = ConstantFoldLoadThroughBitcast(Val, NewTy, DL))) {
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000275 // If NewTy is a struct, we can convert the pointer to the struct
276 // into a pointer to its first member.
277 // FIXME: This could be extended to support arrays as well.
278 if (StructType *STy = dyn_cast<StructType>(NewTy)) {
279 NewTy = STy->getTypeAtIndex(0U);
280
281 IntegerType *IdxTy = IntegerType::get(NewTy->getContext(), 32);
282 Constant *IdxZero = ConstantInt::get(IdxTy, 0, false);
283 Constant * const IdxList[] = {IdxZero, IdxZero};
284
285 Ptr = ConstantExpr::getGetElementPtr(nullptr, Ptr, IdxList);
David Majnemerd536f232016-07-29 03:27:26 +0000286 if (auto *FoldedPtr = ConstantFoldConstant(Ptr, DL, TLI))
287 Ptr = FoldedPtr;
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000288
289 // If we can't improve the situation by introspecting NewTy,
290 // we have to give up.
291 } else {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000292 LLVM_DEBUG(dbgs() << "Failed to bitcast constant ptr, can not "
293 "evaluate.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000294 return false;
295 }
296 }
297
Eugene Leviant6f42a2c2018-03-13 10:19:50 +0000298 Val = NewVal;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000299 LLVM_DEBUG(dbgs() << "Evaluated bitcast: " << *Val << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000300 }
301 }
302
303 MutatedMemory[Ptr] = Val;
304 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CurInst)) {
305 InstResult = ConstantExpr::get(BO->getOpcode(),
306 getVal(BO->getOperand(0)),
307 getVal(BO->getOperand(1)));
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000308 LLVM_DEBUG(dbgs() << "Found a BinaryOperator! Simplifying: "
309 << *InstResult << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000310 } else if (CmpInst *CI = dyn_cast<CmpInst>(CurInst)) {
311 InstResult = ConstantExpr::getCompare(CI->getPredicate(),
312 getVal(CI->getOperand(0)),
313 getVal(CI->getOperand(1)));
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000314 LLVM_DEBUG(dbgs() << "Found a CmpInst! Simplifying: " << *InstResult
315 << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000316 } else if (CastInst *CI = dyn_cast<CastInst>(CurInst)) {
317 InstResult = ConstantExpr::getCast(CI->getOpcode(),
318 getVal(CI->getOperand(0)),
319 CI->getType());
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000320 LLVM_DEBUG(dbgs() << "Found a Cast! Simplifying: " << *InstResult
321 << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000322 } else if (SelectInst *SI = dyn_cast<SelectInst>(CurInst)) {
323 InstResult = ConstantExpr::getSelect(getVal(SI->getOperand(0)),
324 getVal(SI->getOperand(1)),
325 getVal(SI->getOperand(2)));
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000326 LLVM_DEBUG(dbgs() << "Found a Select! Simplifying: " << *InstResult
327 << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000328 } else if (auto *EVI = dyn_cast<ExtractValueInst>(CurInst)) {
329 InstResult = ConstantExpr::getExtractValue(
330 getVal(EVI->getAggregateOperand()), EVI->getIndices());
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000331 LLVM_DEBUG(dbgs() << "Found an ExtractValueInst! Simplifying: "
332 << *InstResult << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000333 } else if (auto *IVI = dyn_cast<InsertValueInst>(CurInst)) {
334 InstResult = ConstantExpr::getInsertValue(
335 getVal(IVI->getAggregateOperand()),
336 getVal(IVI->getInsertedValueOperand()), IVI->getIndices());
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000337 LLVM_DEBUG(dbgs() << "Found an InsertValueInst! Simplifying: "
338 << *InstResult << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000339 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(CurInst)) {
340 Constant *P = getVal(GEP->getOperand(0));
341 SmallVector<Constant*, 8> GEPOps;
342 for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end();
343 i != e; ++i)
344 GEPOps.push_back(getVal(*i));
345 InstResult =
346 ConstantExpr::getGetElementPtr(GEP->getSourceElementType(), P, GEPOps,
347 cast<GEPOperator>(GEP)->isInBounds());
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000348 LLVM_DEBUG(dbgs() << "Found a GEP! Simplifying: " << *InstResult << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000349 } else if (LoadInst *LI = dyn_cast<LoadInst>(CurInst)) {
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000350 if (!LI->isSimple()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000351 LLVM_DEBUG(
352 dbgs() << "Found a Load! Not a simple load, can not evaluate.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000353 return false; // no volatile/atomic accesses.
354 }
355
356 Constant *Ptr = getVal(LI->getOperand(0));
David Majnemerd536f232016-07-29 03:27:26 +0000357 if (auto *FoldedPtr = ConstantFoldConstant(Ptr, DL, TLI)) {
358 Ptr = FoldedPtr;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000359 LLVM_DEBUG(dbgs() << "Found a constant pointer expression, constant "
360 "folding: "
361 << *Ptr << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000362 }
363 InstResult = ComputeLoadResult(Ptr);
364 if (!InstResult) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000365 LLVM_DEBUG(
366 dbgs() << "Failed to compute load result. Can not evaluate load."
367 "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000368 return false; // Could not evaluate load.
369 }
370
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000371 LLVM_DEBUG(dbgs() << "Evaluated load: " << *InstResult << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000372 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
373 if (AI->isArrayAllocation()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000374 LLVM_DEBUG(dbgs() << "Found an array alloca. Can not evaluate.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000375 return false; // Cannot handle array allocs.
376 }
377 Type *Ty = AI->getAllocatedType();
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000378 AllocaTmps.push_back(llvm::make_unique<GlobalVariable>(
379 Ty, false, GlobalValue::InternalLinkage, UndefValue::get(Ty),
Yaxun Liuea988f12018-05-19 02:58:16 +0000380 AI->getName(), /*TLMode=*/GlobalValue::NotThreadLocal,
381 AI->getType()->getPointerAddressSpace()));
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000382 InstResult = AllocaTmps.back().get();
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000383 LLVM_DEBUG(dbgs() << "Found an alloca. Result: " << *InstResult << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000384 } else if (isa<CallInst>(CurInst) || isa<InvokeInst>(CurInst)) {
385 CallSite CS(&*CurInst);
386
387 // Debug info can safely be ignored here.
388 if (isa<DbgInfoIntrinsic>(CS.getInstruction())) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000389 LLVM_DEBUG(dbgs() << "Ignoring debug info.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000390 ++CurInst;
391 continue;
392 }
393
394 // Cannot handle inline asm.
395 if (isa<InlineAsm>(CS.getCalledValue())) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000396 LLVM_DEBUG(dbgs() << "Found inline asm, can not evaluate.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000397 return false;
398 }
399
400 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction())) {
401 if (MemSetInst *MSI = dyn_cast<MemSetInst>(II)) {
402 if (MSI->isVolatile()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000403 LLVM_DEBUG(dbgs() << "Can not optimize a volatile memset "
404 << "intrinsic.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000405 return false;
406 }
407 Constant *Ptr = getVal(MSI->getDest());
408 Constant *Val = getVal(MSI->getValue());
409 Constant *DestVal = ComputeLoadResult(getVal(Ptr));
410 if (Val->isNullValue() && DestVal && DestVal->isNullValue()) {
411 // This memset is a no-op.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000412 LLVM_DEBUG(dbgs() << "Ignoring no-op memset.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000413 ++CurInst;
414 continue;
415 }
416 }
417
418 if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
419 II->getIntrinsicID() == Intrinsic::lifetime_end) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000420 LLVM_DEBUG(dbgs() << "Ignoring lifetime intrinsic.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000421 ++CurInst;
422 continue;
423 }
424
425 if (II->getIntrinsicID() == Intrinsic::invariant_start) {
426 // We don't insert an entry into Values, as it doesn't have a
427 // meaningful return value.
428 if (!II->use_empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000429 LLVM_DEBUG(dbgs()
430 << "Found unused invariant_start. Can't evaluate.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000431 return false;
432 }
433 ConstantInt *Size = cast<ConstantInt>(II->getArgOperand(0));
434 Value *PtrArg = getVal(II->getArgOperand(1));
435 Value *Ptr = PtrArg->stripPointerCasts();
436 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Ptr)) {
437 Type *ElemTy = GV->getValueType();
Craig Topper79ab6432017-07-06 18:39:47 +0000438 if (!Size->isMinusOne() &&
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000439 Size->getValue().getLimitedValue() >=
440 DL.getTypeStoreSize(ElemTy)) {
441 Invariants.insert(GV);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000442 LLVM_DEBUG(dbgs() << "Found a global var that is an invariant: "
443 << *GV << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000444 } else {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000445 LLVM_DEBUG(dbgs()
446 << "Found a global var, but can not treat it as an "
447 "invariant.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000448 }
449 }
450 // Continue even if we do nothing.
451 ++CurInst;
452 continue;
453 } else if (II->getIntrinsicID() == Intrinsic::assume) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000454 LLVM_DEBUG(dbgs() << "Skipping assume intrinsic.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000455 ++CurInst;
456 continue;
Dan Gohman2c74fe92017-11-08 21:59:51 +0000457 } else if (II->getIntrinsicID() == Intrinsic::sideeffect) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000458 LLVM_DEBUG(dbgs() << "Skipping sideeffect intrinsic.\n");
Dan Gohman2c74fe92017-11-08 21:59:51 +0000459 ++CurInst;
460 continue;
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000461 }
462
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000463 LLVM_DEBUG(dbgs() << "Unknown intrinsic. Can not evaluate.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000464 return false;
465 }
466
467 // Resolve function pointers.
468 Function *Callee = dyn_cast<Function>(getVal(CS.getCalledValue()));
Sanjoy Das5ce32722016-04-08 00:48:30 +0000469 if (!Callee || Callee->isInterposable()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000470 LLVM_DEBUG(dbgs() << "Can not resolve function pointer.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000471 return false; // Cannot resolve.
472 }
473
474 SmallVector<Constant*, 8> Formals;
475 for (User::op_iterator i = CS.arg_begin(), e = CS.arg_end(); i != e; ++i)
476 Formals.push_back(getVal(*i));
477
478 if (Callee->isDeclaration()) {
479 // If this is a function we can constant fold, do it.
Andrew Kaylor647025f2017-06-09 23:18:11 +0000480 if (Constant *C = ConstantFoldCall(CS, Callee, Formals, TLI)) {
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000481 InstResult = C;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000482 LLVM_DEBUG(dbgs() << "Constant folded function call. Result: "
483 << *InstResult << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000484 } else {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000485 LLVM_DEBUG(dbgs() << "Can not constant fold function call.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000486 return false;
487 }
488 } else {
489 if (Callee->getFunctionType()->isVarArg()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000490 LLVM_DEBUG(dbgs() << "Can not constant fold vararg function call.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000491 return false;
492 }
493
494 Constant *RetVal = nullptr;
495 // Execute the call, if successful, use the return value.
496 ValueStack.emplace_back();
497 if (!EvaluateFunction(Callee, RetVal, Formals)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000498 LLVM_DEBUG(dbgs() << "Failed to evaluate function.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000499 return false;
500 }
501 ValueStack.pop_back();
502 InstResult = RetVal;
503
504 if (InstResult) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000505 LLVM_DEBUG(dbgs() << "Successfully evaluated function. Result: "
506 << *InstResult << "\n\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000507 } else {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000508 LLVM_DEBUG(dbgs()
509 << "Successfully evaluated function. Result: 0\n\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000510 }
511 }
512 } else if (isa<TerminatorInst>(CurInst)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000513 LLVM_DEBUG(dbgs() << "Found a terminator instruction.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000514
515 if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
516 if (BI->isUnconditional()) {
517 NextBB = BI->getSuccessor(0);
518 } else {
519 ConstantInt *Cond =
520 dyn_cast<ConstantInt>(getVal(BI->getCondition()));
521 if (!Cond) return false; // Cannot determine.
522
523 NextBB = BI->getSuccessor(!Cond->getZExtValue());
524 }
525 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurInst)) {
526 ConstantInt *Val =
527 dyn_cast<ConstantInt>(getVal(SI->getCondition()));
528 if (!Val) return false; // Cannot determine.
Chandler Carruth927d8e62017-04-12 07:27:28 +0000529 NextBB = SI->findCaseValue(Val)->getCaseSuccessor();
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000530 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(CurInst)) {
531 Value *Val = getVal(IBI->getAddress())->stripPointerCasts();
532 if (BlockAddress *BA = dyn_cast<BlockAddress>(Val))
533 NextBB = BA->getBasicBlock();
534 else
535 return false; // Cannot determine.
536 } else if (isa<ReturnInst>(CurInst)) {
537 NextBB = nullptr;
538 } else {
539 // invoke, unwind, resume, unreachable.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000540 LLVM_DEBUG(dbgs() << "Can not handle terminator.");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000541 return false; // Cannot handle this terminator.
542 }
543
544 // We succeeded at evaluating this block!
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000545 LLVM_DEBUG(dbgs() << "Successfully evaluated block.\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000546 return true;
547 } else {
548 // Did not know how to evaluate this!
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000549 LLVM_DEBUG(
550 dbgs() << "Failed to evaluate block due to unhandled instruction."
551 "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000552 return false;
553 }
554
555 if (!CurInst->use_empty()) {
David Majnemerd536f232016-07-29 03:27:26 +0000556 if (auto *FoldedInstResult = ConstantFoldConstant(InstResult, DL, TLI))
557 InstResult = FoldedInstResult;
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000558
559 setVal(&*CurInst, InstResult);
560 }
561
562 // If we just processed an invoke, we finished evaluating the block.
563 if (InvokeInst *II = dyn_cast<InvokeInst>(CurInst)) {
564 NextBB = II->getNormalDest();
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000565 LLVM_DEBUG(dbgs() << "Found an invoke instruction. Finished Block.\n\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000566 return true;
567 }
568
569 // Advance program counter.
570 ++CurInst;
571 }
572}
573
574/// Evaluate a call to function F, returning true if successful, false if we
575/// can't evaluate it. ActualArgs contains the formal arguments for the
576/// function.
577bool Evaluator::EvaluateFunction(Function *F, Constant *&RetVal,
578 const SmallVectorImpl<Constant*> &ActualArgs) {
579 // Check to see if this function is already executing (recursion). If so,
580 // bail out. TODO: we might want to accept limited recursion.
David Majnemer0d955d02016-08-11 22:21:41 +0000581 if (is_contained(CallStack, F))
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000582 return false;
583
584 CallStack.push_back(F);
585
586 // Initialize arguments to the incoming values specified.
587 unsigned ArgNo = 0;
588 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E;
589 ++AI, ++ArgNo)
590 setVal(&*AI, ActualArgs[ArgNo]);
591
592 // ExecutedBlocks - We only handle non-looping, non-recursive code. As such,
593 // we can only evaluate any one basic block at most once. This set keeps
594 // track of what we have executed so we can detect recursive cases etc.
595 SmallPtrSet<BasicBlock*, 32> ExecutedBlocks;
596
597 // CurBB - The current basic block we're evaluating.
598 BasicBlock *CurBB = &F->front();
599
600 BasicBlock::iterator CurInst = CurBB->begin();
601
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000602 while (true) {
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000603 BasicBlock *NextBB = nullptr; // Initialized to avoid compiler warnings.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000604 LLVM_DEBUG(dbgs() << "Trying to evaluate BB: " << *CurBB << "\n");
Peter Collingbourne9f7ec142016-02-03 02:51:00 +0000605
606 if (!EvaluateBlock(CurInst, NextBB))
607 return false;
608
609 if (!NextBB) {
610 // Successfully running until there's no next block means that we found
611 // the return. Fill it the return value and pop the call stack.
612 ReturnInst *RI = cast<ReturnInst>(CurBB->getTerminator());
613 if (RI->getNumOperands())
614 RetVal = getVal(RI->getOperand(0));
615 CallStack.pop_back();
616 return true;
617 }
618
619 // Okay, we succeeded in evaluating this control flow. See if we have
620 // executed the new block before. If so, we have a looping function,
621 // which we cannot evaluate in reasonable time.
622 if (!ExecutedBlocks.insert(NextBB).second)
623 return false; // looped!
624
625 // Okay, we have never been in this block before. Check to see if there
626 // are any PHI nodes. If so, evaluate them with information about where
627 // we came from.
628 PHINode *PN = nullptr;
629 for (CurInst = NextBB->begin();
630 (PN = dyn_cast<PHINode>(CurInst)); ++CurInst)
631 setVal(PN, getVal(PN->getIncomingValueForBlock(CurBB)));
632
633 // Advance to the next block.
634 CurBB = NextBB;
635 }
636}