blob: f1f66d86cb7392b301850761e02d5bfd023b5335 [file] [log] [blame]
Chandler Carrutha9174582015-01-22 05:25:13 +00001//===- InstCombineInternal.h - InstCombine pass internals -------*- C++ -*-===//
Chris Lattner35522b72010-01-04 07:12:23 +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//===----------------------------------------------------------------------===//
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +00009//
Chandler Carrutha9174582015-01-22 05:25:13 +000010/// \file
11///
12/// This file provides internal interfaces used to implement the InstCombine.
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000013//
Chandler Carrutha9174582015-01-22 05:25:13 +000014//===----------------------------------------------------------------------===//
Chris Lattner35522b72010-01-04 07:12:23 +000015
Chandler Carrutha9174582015-01-22 05:25:13 +000016#ifndef LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H
17#define LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H
Chris Lattner35522b72010-01-04 07:12:23 +000018
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000019#include "llvm/ADT/ArrayRef.h"
Bjorn Steinbrink83505342015-07-10 06:55:49 +000020#include "llvm/Analysis/AliasAnalysis.h"
Daniel Berlin2c75c632017-04-26 20:56:07 +000021#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruth452a0072014-03-04 11:59:06 +000022#include "llvm/Analysis/TargetFolder.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000023#include "llvm/Analysis/ValueTracking.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000024#include "llvm/IR/Argument.h"
25#include "llvm/IR/BasicBlock.h"
26#include "llvm/IR/Constant.h"
27#include "llvm/IR/Constants.h"
28#include "llvm/IR/DerivedTypes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/IRBuilder.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000030#include "llvm/IR/InstVisitor.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000031#include "llvm/IR/InstrTypes.h"
32#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000034#include "llvm/IR/Intrinsics.h"
35#include "llvm/IR/Use.h"
36#include "llvm/IR/Value.h"
37#include "llvm/Support/Casting.h"
38#include "llvm/Support/Compiler.h"
39#include "llvm/Support/Debug.h"
Craig Topper1a36b7d2017-05-15 06:39:41 +000040#include "llvm/Support/KnownBits.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000041#include "llvm/Support/raw_ostream.h"
Chandler Carruth83ba2692015-01-24 04:19:17 +000042#include "llvm/Transforms/InstCombine/InstCombineWorklist.h"
Adrian Prantl47ea6472017-03-16 21:14:09 +000043#include "llvm/Transforms/Utils/Local.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000044#include <cassert>
45#include <cstdint>
Chris Lattner35522b72010-01-04 07:12:23 +000046
Chandler Carruth964daaa2014-04-22 02:55:47 +000047#define DEBUG_TYPE "instcombine"
48
Chris Lattner35522b72010-01-04 07:12:23 +000049namespace llvm {
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000050
51class APInt;
52class AssumptionCache;
Chandler Carruthd70cc602014-05-07 17:36:59 +000053class CallSite;
54class DataLayout;
Hal Finkel60db0582014-09-07 18:57:58 +000055class DominatorTree;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000056class GEPOperator;
57class GlobalVariable;
58class LoopInfo;
Adam Nemetea06e6e2017-07-26 19:03:18 +000059class OptimizationRemarkEmitter;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000060class TargetLibraryInfo;
61class User;
Jakub Staszak190db2f2013-01-14 23:16:36 +000062
Sanjay Patel73fc8dd2017-02-03 21:43:34 +000063/// Assign a complexity or rank value to LLVM Values. This is used to reduce
64/// the amount of pattern matching needed for compares and commutative
65/// instructions. For example, if we have:
66/// icmp ugt X, Constant
67/// or
68/// xor (add X, Constant), cast Z
69///
70/// We do not have to consider the commuted variants of these patterns because
71/// canonicalization based on complexity guarantees the above ordering.
Chandler Carruth3a622162015-01-20 19:27:58 +000072///
73/// This routine maps IR values to various complexity ranks:
74/// 0 -> undef
75/// 1 -> Constants
76/// 2 -> Other non-instructions
77/// 3 -> Arguments
Sanjay Patel73fc8dd2017-02-03 21:43:34 +000078/// 4 -> Cast and (f)neg/not instructions
79/// 5 -> Other instructions
Chris Lattner2188e402010-01-04 07:37:31 +000080static inline unsigned getComplexity(Value *V) {
81 if (isa<Instruction>(V)) {
Sanjay Patel73fc8dd2017-02-03 21:43:34 +000082 if (isa<CastInst>(V) || BinaryOperator::isNeg(V) ||
83 BinaryOperator::isFNeg(V) || BinaryOperator::isNot(V))
84 return 4;
85 return 5;
Chris Lattner2188e402010-01-04 07:37:31 +000086 }
Chandler Carruthd70cc602014-05-07 17:36:59 +000087 if (isa<Argument>(V))
88 return 3;
Chris Lattner2188e402010-01-04 07:37:31 +000089 return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;
90}
Chris Lattner35522b72010-01-04 07:12:23 +000091
Sanjay Patelb2e70032017-05-17 14:21:19 +000092/// Predicate canonicalization reduces the number of patterns that need to be
93/// matched by other transforms. For example, we may swap the operands of a
94/// conditional branch or select to create a compare with a canonical (inverted)
95/// predicate which is then more likely to be matched with other values.
96static inline bool isCanonicalPredicate(CmpInst::Predicate Pred) {
97 switch (Pred) {
98 case CmpInst::ICMP_NE:
99 case CmpInst::ICMP_ULE:
100 case CmpInst::ICMP_SLE:
101 case CmpInst::ICMP_UGE:
102 case CmpInst::ICMP_SGE:
103 // TODO: There are 16 FCMP predicates. Should others be (not) canonical?
104 case CmpInst::FCMP_ONE:
105 case CmpInst::FCMP_OLE:
106 case CmpInst::FCMP_OGE:
107 return false;
108 default:
109 return true;
110 }
111}
112
Sanjay Patele800df8e2017-06-22 15:28:01 +0000113/// Return the source operand of a potentially bitcasted value while optionally
114/// checking if it has one use. If there is no bitcast or the one use check is
115/// not met, return the input value itself.
116static inline Value *peekThroughBitcast(Value *V, bool OneUseOnly = false) {
117 if (auto *BitCast = dyn_cast<BitCastInst>(V))
118 if (!OneUseOnly || BitCast->hasOneUse())
119 return BitCast->getOperand(0);
120
121 // V is not a bitcast or V has more than one use and OneUseOnly is true.
122 return V;
123}
124
Chandler Carruth3a622162015-01-20 19:27:58 +0000125/// \brief Add one to a Constant
Benjamin Kramer970f4952014-01-19 16:56:10 +0000126static inline Constant *AddOne(Constant *C) {
127 return ConstantExpr::getAdd(C, ConstantInt::get(C->getType(), 1));
128}
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000129
Chandler Carruth3a622162015-01-20 19:27:58 +0000130/// \brief Subtract one from a Constant
Benjamin Kramer970f4952014-01-19 16:56:10 +0000131static inline Constant *SubOne(Constant *C) {
132 return ConstantExpr::getSub(C, ConstantInt::get(C->getType(), 1));
133}
134
Sanjoy Das82ea3d42015-02-24 00:08:41 +0000135/// \brief Return true if the specified value is free to invert (apply ~ to).
136/// This happens in cases where the ~ can be eliminated. If WillInvertAllUses
137/// is true, work under the assumption that the caller intends to remove all
138/// uses of V and only keep uses of ~V.
Sanjoy Das82ea3d42015-02-24 00:08:41 +0000139static inline bool IsFreeToInvert(Value *V, bool WillInvertAllUses) {
140 // ~(~(X)) -> X.
141 if (BinaryOperator::isNot(V))
142 return true;
143
144 // Constants can be considered to be not'ed values.
145 if (isa<ConstantInt>(V))
146 return true;
147
Sanjay Patel611f9f92016-10-27 17:30:50 +0000148 // A vector of constant integers can be inverted easily.
Craig Topperbcf511c2017-06-30 21:09:34 +0000149 if (V->getType()->isVectorTy() && isa<Constant>(V)) {
Sanjay Patel611f9f92016-10-27 17:30:50 +0000150 unsigned NumElts = V->getType()->getVectorNumElements();
151 for (unsigned i = 0; i != NumElts; ++i) {
Craig Topperbcf511c2017-06-30 21:09:34 +0000152 Constant *Elt = cast<Constant>(V)->getAggregateElement(i);
Sanjay Patel611f9f92016-10-27 17:30:50 +0000153 if (!Elt)
154 return false;
155
156 if (isa<UndefValue>(Elt))
157 continue;
158
159 if (!isa<ConstantInt>(Elt))
160 return false;
161 }
162 return true;
163 }
164
Sanjoy Das82ea3d42015-02-24 00:08:41 +0000165 // Compares can be inverted if all of their uses are being modified to use the
166 // ~V.
167 if (isa<CmpInst>(V))
168 return WillInvertAllUses;
169
170 // If `V` is of the form `A + Constant` then `-1 - V` can be folded into `(-1
171 // - Constant) - A` if we are willing to invert all of the uses.
172 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(V))
173 if (BO->getOpcode() == Instruction::Add ||
174 BO->getOpcode() == Instruction::Sub)
175 if (isa<Constant>(BO->getOperand(0)) || isa<Constant>(BO->getOperand(1)))
176 return WillInvertAllUses;
177
178 return false;
179}
180
Sanjoy Dasb0984472015-04-08 04:27:22 +0000181/// \brief Specific patterns of overflow check idioms that we match.
182enum OverflowCheckFlavor {
183 OCF_UNSIGNED_ADD,
184 OCF_SIGNED_ADD,
185 OCF_UNSIGNED_SUB,
186 OCF_SIGNED_SUB,
187 OCF_UNSIGNED_MUL,
188 OCF_SIGNED_MUL,
189
190 OCF_INVALID
191};
192
193/// \brief Returns the OverflowCheckFlavor corresponding to a overflow_with_op
194/// intrinsic.
195static inline OverflowCheckFlavor
196IntrinsicIDToOverflowCheckFlavor(unsigned ID) {
197 switch (ID) {
198 default:
199 return OCF_INVALID;
200 case Intrinsic::uadd_with_overflow:
201 return OCF_UNSIGNED_ADD;
202 case Intrinsic::sadd_with_overflow:
203 return OCF_SIGNED_ADD;
204 case Intrinsic::usub_with_overflow:
205 return OCF_UNSIGNED_SUB;
206 case Intrinsic::ssub_with_overflow:
207 return OCF_SIGNED_SUB;
208 case Intrinsic::umul_with_overflow:
209 return OCF_UNSIGNED_MUL;
210 case Intrinsic::smul_with_overflow:
211 return OCF_SIGNED_MUL;
212 }
213}
214
Chandler Carruth3a622162015-01-20 19:27:58 +0000215/// \brief The core instruction combiner logic.
216///
217/// This class provides both the logic to recursively visit instructions and
Craig Topper28ec3462016-12-28 03:12:42 +0000218/// combine them.
Duncan Sands6c5e4352010-05-11 20:16:09 +0000219class LLVM_LIBRARY_VISIBILITY InstCombiner
Chandler Carruth1edb9d62015-01-20 22:44:35 +0000220 : public InstVisitor<InstCombiner, Instruction *> {
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000221 // FIXME: These members shouldn't be public.
Chris Lattner35522b72010-01-04 07:12:23 +0000222public:
Chandler Carruth3a622162015-01-20 19:27:58 +0000223 /// \brief A worklist of the instructions that need to be simplified.
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000224 InstCombineWorklist &Worklist;
Chris Lattner35522b72010-01-04 07:12:23 +0000225
Chandler Carruth3a622162015-01-20 19:27:58 +0000226 /// \brief An IRBuilder that automatically inserts new instructions into the
227 /// worklist.
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000228 using BuilderTy = IRBuilder<TargetFolder, IRBuilderCallbackInserter>;
Craig Topperbb4069e2017-07-07 23:16:26 +0000229 BuilderTy &Builder;
Jakub Staszak190db2f2013-01-14 23:16:36 +0000230
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000231private:
232 // Mode in which we are running the combiner.
233 const bool MinimizeSize;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000234
Matthias Braunc31032d2016-03-09 18:47:11 +0000235 /// Enable combines that trigger rarely but are costly in compiletime.
236 const bool ExpensiveCombines;
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000237
Bjorn Steinbrink83505342015-07-10 06:55:49 +0000238 AliasAnalysis *AA;
239
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000240 // Required analyses.
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000241 AssumptionCache &AC;
Justin Bogner99798402016-08-05 01:06:44 +0000242 TargetLibraryInfo &TLI;
243 DominatorTree &DT;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000244 const DataLayout &DL;
Daniel Berlin2c75c632017-04-26 20:56:07 +0000245 const SimplifyQuery SQ;
Adam Nemetea06e6e2017-07-26 19:03:18 +0000246 OptimizationRemarkEmitter &ORE;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000247
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000248 // Optional analyses. When non-null, these can both be used to do better
249 // combining and will be updated to reflect any changes.
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000250 LoopInfo *LI;
251
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000252 bool MadeIRChange = false;
Chris Lattner35522b72010-01-04 07:12:23 +0000253
254public:
Craig Topperbb4069e2017-07-07 23:16:26 +0000255 InstCombiner(InstCombineWorklist &Worklist, BuilderTy &Builder,
Matthias Braunc31032d2016-03-09 18:47:11 +0000256 bool MinimizeSize, bool ExpensiveCombines, AliasAnalysis *AA,
Daniel Berlin2c75c632017-04-26 20:56:07 +0000257 AssumptionCache &AC, TargetLibraryInfo &TLI, DominatorTree &DT,
Adam Nemetea06e6e2017-07-26 19:03:18 +0000258 OptimizationRemarkEmitter &ORE, const DataLayout &DL,
259 LoopInfo *LI)
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000260 : Worklist(Worklist), Builder(Builder), MinimizeSize(MinimizeSize),
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000261 ExpensiveCombines(ExpensiveCombines), AA(AA), AC(AC), TLI(TLI), DT(DT),
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000262 DL(DL), SQ(DL, &TLI, &DT, &AC), ORE(ORE), LI(LI) {}
Jakub Staszak190db2f2013-01-14 23:16:36 +0000263
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000264 /// \brief Run the combiner over the entire worklist until it is empty.
265 ///
266 /// \returns true if the IR is changed.
267 bool run();
Chris Lattner35522b72010-01-04 07:12:23 +0000268
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000269 AssumptionCache &getAssumptionCache() const { return AC; }
270
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000271 const DataLayout &getDataLayout() const { return DL; }
Chandler Carruthb3d03df2015-01-20 21:10:35 +0000272
Justin Bogner99798402016-08-05 01:06:44 +0000273 DominatorTree &getDominatorTree() const { return DT; }
Chris Lattner35522b72010-01-04 07:12:23 +0000274
Chandler Carruth5175b9a2015-01-20 08:35:24 +0000275 LoopInfo *getLoopInfo() const { return LI; }
276
Justin Bogner99798402016-08-05 01:06:44 +0000277 TargetLibraryInfo &getTargetLibraryInfo() const { return TLI; }
Chad Rosier43a33062011-12-02 01:26:24 +0000278
Chris Lattner35522b72010-01-04 07:12:23 +0000279 // Visitation implementation - Implement instruction combining for different
280 // instruction types. The semantics are as follows:
281 // Return Value:
282 // null - No change was made
283 // I - Change was made, I is still valid, I may be dead though
284 // otherwise - Change was made, replace I with returned instruction
285 //
286 Instruction *visitAdd(BinaryOperator &I);
287 Instruction *visitFAdd(BinaryOperator &I);
Chris Lattner229907c2011-07-18 04:54:35 +0000288 Value *OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty);
Chris Lattner35522b72010-01-04 07:12:23 +0000289 Instruction *visitSub(BinaryOperator &I);
290 Instruction *visitFSub(BinaryOperator &I);
291 Instruction *visitMul(BinaryOperator &I);
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000292 Value *foldFMulConst(Instruction *FMulOrDiv, Constant *C,
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000293 Instruction *InsertBefore);
Chris Lattner35522b72010-01-04 07:12:23 +0000294 Instruction *visitFMul(BinaryOperator &I);
295 Instruction *visitURem(BinaryOperator &I);
296 Instruction *visitSRem(BinaryOperator &I);
297 Instruction *visitFRem(BinaryOperator &I);
Sanjay Patelae2e3a42017-10-06 23:20:16 +0000298 bool simplifyDivRemOfSelectWithZeroOp(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000299 Instruction *commonRemTransforms(BinaryOperator &I);
300 Instruction *commonIRemTransforms(BinaryOperator &I);
301 Instruction *commonDivTransforms(BinaryOperator &I);
302 Instruction *commonIDivTransforms(BinaryOperator &I);
303 Instruction *visitUDiv(BinaryOperator &I);
304 Instruction *visitSDiv(BinaryOperator &I);
Frits van Bommel2a559512011-01-29 17:50:27 +0000305 Instruction *visitFDiv(BinaryOperator &I);
Erik Ecksteind1817522014-12-03 10:39:15 +0000306 Value *simplifyRangeCheck(ICmpInst *Cmp0, ICmpInst *Cmp1, bool Inverted);
Chris Lattner35522b72010-01-04 07:12:23 +0000307 Instruction *visitAnd(BinaryOperator &I);
Chandler Carruthd70cc602014-05-07 17:36:59 +0000308 Instruction *visitOr(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000309 Instruction *visitXor(BinaryOperator &I);
310 Instruction *visitShl(BinaryOperator &I);
311 Instruction *visitAShr(BinaryOperator &I);
312 Instruction *visitLShr(BinaryOperator &I);
313 Instruction *commonShiftTransforms(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000314 Instruction *visitFCmpInst(FCmpInst &I);
315 Instruction *visitICmpInst(ICmpInst &I);
Matt Arsenaultfed3dc82014-04-14 21:50:37 +0000316 Instruction *FoldShiftByConstant(Value *Op0, Constant *Op1,
Chris Lattner35522b72010-01-04 07:12:23 +0000317 BinaryOperator &I);
318 Instruction *commonCastTransforms(CastInst &CI);
Chris Lattner35522b72010-01-04 07:12:23 +0000319 Instruction *commonPointerCastTransforms(CastInst &CI);
320 Instruction *visitTrunc(TruncInst &CI);
321 Instruction *visitZExt(ZExtInst &CI);
322 Instruction *visitSExt(SExtInst &CI);
323 Instruction *visitFPTrunc(FPTruncInst &CI);
324 Instruction *visitFPExt(CastInst &CI);
325 Instruction *visitFPToUI(FPToUIInst &FI);
326 Instruction *visitFPToSI(FPToSIInst &FI);
327 Instruction *visitUIToFP(CastInst &CI);
328 Instruction *visitSIToFP(CastInst &CI);
329 Instruction *visitPtrToInt(PtrToIntInst &CI);
330 Instruction *visitIntToPtr(IntToPtrInst &CI);
331 Instruction *visitBitCast(BitCastInst &CI);
Matt Arsenaulta9e95ab2013-11-15 05:45:08 +0000332 Instruction *visitAddrSpaceCast(AddrSpaceCastInst &CI);
Mehdi Aminib9a0fa42015-02-16 21:47:54 +0000333 Instruction *FoldItoFPtoI(Instruction &FI);
Chris Lattner35522b72010-01-04 07:12:23 +0000334 Instruction *visitSelectInst(SelectInst &SI);
Chris Lattner35522b72010-01-04 07:12:23 +0000335 Instruction *visitCallInst(CallInst &CI);
336 Instruction *visitInvokeInst(InvokeInst &II);
337
338 Instruction *SliceUpIllegalIntegerPHI(PHINode &PN);
339 Instruction *visitPHINode(PHINode &PN);
340 Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
341 Instruction *visitAllocaInst(AllocaInst &AI);
Nuno Lopes95cc4f32012-07-09 18:38:20 +0000342 Instruction *visitAllocSite(Instruction &FI);
Gabor Greif75f69432010-06-24 12:21:15 +0000343 Instruction *visitFree(CallInst &FI);
Chris Lattner35522b72010-01-04 07:12:23 +0000344 Instruction *visitLoadInst(LoadInst &LI);
345 Instruction *visitStoreInst(StoreInst &SI);
346 Instruction *visitBranchInst(BranchInst &BI);
Davide Italianoaec46172017-01-31 18:09:05 +0000347 Instruction *visitFenceInst(FenceInst &FI);
Chris Lattner35522b72010-01-04 07:12:23 +0000348 Instruction *visitSwitchInst(SwitchInst &SI);
Hal Finkel93873cc12014-09-07 21:28:34 +0000349 Instruction *visitReturnInst(ReturnInst &RI);
Michael Zolotukhin7d6293a2014-05-07 14:30:18 +0000350 Instruction *visitInsertValueInst(InsertValueInst &IV);
Chris Lattner35522b72010-01-04 07:12:23 +0000351 Instruction *visitInsertElementInst(InsertElementInst &IE);
352 Instruction *visitExtractElementInst(ExtractElementInst &EI);
353 Instruction *visitShuffleVectorInst(ShuffleVectorInst &SVI);
354 Instruction *visitExtractValueInst(ExtractValueInst &EV);
Duncan Sands5c055792011-09-30 13:12:16 +0000355 Instruction *visitLandingPadInst(LandingPadInst &LI);
Arnaud A. de Grandmaison333ef382016-05-10 09:24:49 +0000356 Instruction *visitVAStartInst(VAStartInst &I);
357 Instruction *visitVACopyInst(VACopyInst &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000358
Sanjay Patel53523312016-09-12 14:25:46 +0000359 /// Specify what to return for unhandled instructions.
Craig Toppere73658d2014-04-28 04:05:08 +0000360 Instruction *visitInstruction(Instruction &I) { return nullptr; }
Chris Lattner35522b72010-01-04 07:12:23 +0000361
Sanjay Patel53523312016-09-12 14:25:46 +0000362 /// True when DB dominates all uses of DI except UI.
363 /// UI must be in the same block as DI.
364 /// The routine checks that the DI parent and DB are different.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +0000365 bool dominatesAllUses(const Instruction *DI, const Instruction *UI,
366 const BasicBlock *DB) const;
367
Sanjay Patel53523312016-09-12 14:25:46 +0000368 /// Try to replace select with select operand SIOpd in SI-ICmp sequence.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +0000369 bool replacedSelectWithOperand(SelectInst *SI, const ICmpInst *Icmp,
370 const unsigned SIOpd);
371
Yaxun Liuba01ed02017-02-10 21:46:07 +0000372 /// Try to replace instruction \p I with value \p V which are pointers
373 /// in different address space.
374 /// \return true if successful.
375 bool replacePointer(Instruction &I, Value *V);
376
Chris Lattner35522b72010-01-04 07:12:23 +0000377private:
Sanjay Patel2217f752017-01-31 17:25:42 +0000378 bool shouldChangeType(unsigned FromBitWidth, unsigned ToBitWidth) const;
379 bool shouldChangeType(Type *From, Type *To) const;
Chris Lattner2188e402010-01-04 07:37:31 +0000380 Value *dyn_castNegVal(Value *V) const;
Chandler Carruthd70cc602014-05-07 17:36:59 +0000381 Value *dyn_castFNegVal(Value *V, bool NoSignedZero = false) const;
David Blaikie87ca1b62015-03-27 20:56:11 +0000382 Type *FindElementAtOffset(PointerType *PtrTy, int64_t Offset,
Chandler Carruthd70cc602014-05-07 17:36:59 +0000383 SmallVectorImpl<Value *> &NewIndices);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000384
Tobias Grosser8ef834c2016-07-19 09:06:08 +0000385 /// Classify whether a cast is worth optimizing.
Chandler Carruth3a622162015-01-20 19:27:58 +0000386 ///
Tobias Grosser8ef834c2016-07-19 09:06:08 +0000387 /// This is a helper to decide whether the simplification of
388 /// logic(cast(A), cast(B)) to cast(logic(A, B)) should be performed.
389 ///
390 /// \param CI The cast we are interested in.
391 ///
392 /// \return true if this cast actually results in any code being generated and
393 /// if it cannot already be eliminated by some other transformation.
394 bool shouldOptimizeCast(CastInst *CI);
Chris Lattner2188e402010-01-04 07:37:31 +0000395
Sanjoy Dasb0984472015-04-08 04:27:22 +0000396 /// \brief Try to optimize a sequence of instructions checking if an operation
397 /// on LHS and RHS overflows.
398 ///
Sanjoy Das6f5dca72015-08-28 19:09:31 +0000399 /// If this overflow check is done via one of the overflow check intrinsics,
400 /// then CtxI has to be the call instruction calling that intrinsic. If this
401 /// overflow check is done by arithmetic followed by a compare, then CtxI has
402 /// to be the arithmetic instruction.
403 ///
Sanjoy Dasb0984472015-04-08 04:27:22 +0000404 /// If a simplification is possible, stores the simplified result of the
405 /// operation in OperationResult and result of the overflow check in
406 /// OverflowResult, and return true. If no simplification is possible,
407 /// returns false.
408 bool OptimizeOverflowCheck(OverflowCheckFlavor OCF, Value *LHS, Value *RHS,
409 Instruction &CtxI, Value *&OperationResult,
410 Constant *&OverflowResult);
411
Chris Lattner35522b72010-01-04 07:12:23 +0000412 Instruction *visitCallSite(CallSite CS);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000413 Instruction *tryOptimizeCall(CallInst *CI);
Chris Lattner35522b72010-01-04 07:12:23 +0000414 bool transformConstExprCastCall(CallSite CS);
Duncan Sandsa0984362011-09-06 13:37:06 +0000415 Instruction *transformCallThroughTrampoline(CallSite CS,
416 IntrinsicInst *Tramp);
Tobias Grosser8ef834c2016-07-19 09:06:08 +0000417
418 /// Transform (zext icmp) to bitwise / integer operations in order to
419 /// eliminate it.
420 ///
421 /// \param ICI The icmp of the (zext icmp) pair we are interested in.
422 /// \parem CI The zext of the (zext icmp) pair we are interested in.
423 /// \param DoTransform Pass false to just test whether the given (zext icmp)
424 /// would be transformed. Pass true to actually perform the transformation.
425 ///
426 /// \return null if the transformation cannot be performed. If the
427 /// transformation can be performed the new instruction that replaces the
428 /// (zext icmp) pair will be returned (if \p DoTransform is false the
429 /// unmodified \p ICI will be returned in this case).
430 Instruction *transformZExtICmp(ICmpInst *ICI, ZExtInst &CI,
431 bool DoTransform = true);
432
Benjamin Kramer398b8c52011-04-01 20:09:03 +0000433 Instruction *transformSExtICmp(ICmpInst *ICI, Instruction &CI);
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000434
Craig Topper2b1fc322017-05-22 06:25:31 +0000435 bool willNotOverflowSignedAdd(const Value *LHS, const Value *RHS,
436 const Instruction &CxtI) const {
Craig Topperbb973722017-05-15 02:44:08 +0000437 return computeOverflowForSignedAdd(LHS, RHS, &CxtI) ==
438 OverflowResult::NeverOverflows;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000439 }
440
Craig Topper2b1fc322017-05-22 06:25:31 +0000441 bool willNotOverflowUnsignedAdd(const Value *LHS, const Value *RHS,
442 const Instruction &CxtI) const {
Craig Topperbb973722017-05-15 02:44:08 +0000443 return computeOverflowForUnsignedAdd(LHS, RHS, &CxtI) ==
444 OverflowResult::NeverOverflows;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000445 }
446
Craig Topper2b1fc322017-05-22 06:25:31 +0000447 bool willNotOverflowSignedSub(const Value *LHS, const Value *RHS,
448 const Instruction &CxtI) const;
449 bool willNotOverflowUnsignedSub(const Value *LHS, const Value *RHS,
450 const Instruction &CxtI) const;
451 bool willNotOverflowSignedMul(const Value *LHS, const Value *RHS,
452 const Instruction &CxtI) const;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000453
Craig Topper2b1fc322017-05-22 06:25:31 +0000454 bool willNotOverflowUnsignedMul(const Value *LHS, const Value *RHS,
455 const Instruction &CxtI) const {
Craig Topperbb973722017-05-15 02:44:08 +0000456 return computeOverflowForUnsignedMul(LHS, RHS, &CxtI) ==
457 OverflowResult::NeverOverflows;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000458 }
459
Nuno Lopesa2f6cec2012-05-22 17:19:09 +0000460 Value *EmitGEPOffset(User *GEP);
Anat Shemer0c95efa2013-04-18 19:35:39 +0000461 Instruction *scalarizePHI(ExtractElementInst &EI, PHINode *PN);
Nick Lewyckya2b77202013-05-31 00:59:42 +0000462 Value *EvaluateInDifferentElementOrder(Value *V, ArrayRef<int> Mask);
Sanjay Patel40e7ba02016-02-23 16:36:07 +0000463 Instruction *foldCastedBitwiseLogic(BinaryOperator &I);
Sanjay Patel94da1de2017-08-05 15:19:18 +0000464 Instruction *narrowBinOp(TruncInst &Trunc);
Sanjay Patelc50e55d2017-08-09 18:37:41 +0000465 Instruction *narrowRotate(TruncInst &Trunc);
Guozhi Weiae541f62016-10-25 20:43:42 +0000466 Instruction *optimizeBitCastFromPhi(CastInst &CI, PHINode *PN);
Chris Lattner35522b72010-01-04 07:12:23 +0000467
Tobias Grosser8ef834c2016-07-19 09:06:08 +0000468 /// Determine if a pair of casts can be replaced by a single cast.
469 ///
470 /// \param CI1 The first of a pair of casts.
471 /// \param CI2 The second of a pair of casts.
472 ///
473 /// \return 0 if the cast pair cannot be eliminated, otherwise returns an
474 /// Instruction::CastOps value for a cast that can replace the pair, casting
475 /// CI1->getSrcTy() to CI2->getDstTy().
476 ///
477 /// \see CastInst::isEliminableCastPair
478 Instruction::CastOps isEliminableCastPair(const CastInst *CI1,
479 const CastInst *CI2);
480
Craig Topperda6ea0d2017-06-16 05:10:37 +0000481 Value *foldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI);
Craig Topperf2d3e6d2017-06-15 19:09:51 +0000482 Value *foldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI);
Sanjay Patel5e456b92017-05-18 20:53:16 +0000483 Value *foldXorOfICmps(ICmpInst *LHS, ICmpInst *RHS);
484
Sanjay Patel64fc5da2017-09-02 17:53:33 +0000485 /// Optimize (fcmp)&(fcmp) or (fcmp)|(fcmp).
486 /// NOTE: Unlike most of instcombine, this returns a Value which should
487 /// already be inserted into the function.
488 Value *foldLogicOfFCmps(FCmpInst *LHS, FCmpInst *RHS, bool IsAnd);
489
Craig Topperda6ea0d2017-06-16 05:10:37 +0000490 Value *foldAndOrOfICmpsOfAndWithPow2(ICmpInst *LHS, ICmpInst *RHS,
491 bool JoinedByAnd, Instruction &CxtI);
Chris Lattner35522b72010-01-04 07:12:23 +0000492public:
Chandler Carruth3a622162015-01-20 19:27:58 +0000493 /// \brief Inserts an instruction \p New before instruction \p Old
494 ///
495 /// Also adds the new instruction to the worklist and returns \p New so that
496 /// it is suitable for use as the return from the visitation patterns.
Chris Lattner35522b72010-01-04 07:12:23 +0000497 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
Craig Toppere73658d2014-04-28 04:05:08 +0000498 assert(New && !New->getParent() &&
Chris Lattner35522b72010-01-04 07:12:23 +0000499 "New instruction already inserted into a basic block!");
500 BasicBlock *BB = Old.getParent();
Duncan P. N. Exon Smith9f8aaf22015-10-13 16:59:33 +0000501 BB->getInstList().insert(Old.getIterator(), New); // Insert inst
Chris Lattner35522b72010-01-04 07:12:23 +0000502 Worklist.Add(New);
503 return New;
504 }
Eli Friedman6efb64e2011-05-19 01:20:42 +0000505
Chandler Carruth3a622162015-01-20 19:27:58 +0000506 /// \brief Same as InsertNewInstBefore, but also sets the debug loc.
Eli Friedman6efb64e2011-05-19 01:20:42 +0000507 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) {
508 New->setDebugLoc(Old.getDebugLoc());
509 return InsertNewInstBefore(New, Old);
510 }
511
Chandler Carruth3a622162015-01-20 19:27:58 +0000512 /// \brief A combiner-aware RAUW-like routine.
513 ///
514 /// This method is to be used when an instruction is found to be dead,
Sanjay Patelf2ea8a22016-01-06 00:23:12 +0000515 /// replaceable with another preexisting expression. Here we add all uses of
Chandler Carruth3a622162015-01-20 19:27:58 +0000516 /// I to the worklist, replace all uses of I with the new value, then return
517 /// I, so that the inst combiner will know that I was modified.
Sanjay Patel4b198802016-02-01 22:23:39 +0000518 Instruction *replaceInstUsesWith(Instruction &I, Value *V) {
Owen Anderson51b75b8c2015-03-10 05:13:47 +0000519 // If there are no uses to replace, then we return nullptr to indicate that
520 // no changes were made to the program.
521 if (I.use_empty()) return nullptr;
522
Chandler Carruthd70cc602014-05-07 17:36:59 +0000523 Worklist.AddUsersToWorkList(I); // Add all modified instrs to worklist.
Jakub Staszak190db2f2013-01-14 23:16:36 +0000524
Chris Lattner35522b72010-01-04 07:12:23 +0000525 // If we are replacing the instruction with itself, this must be in a
526 // segment of unreachable code, so just clobber the instruction.
Jakub Staszak190db2f2013-01-14 23:16:36 +0000527 if (&I == V)
Chris Lattner35522b72010-01-04 07:12:23 +0000528 V = UndefValue::get(I.getType());
Frits van Bommeld14d9912011-03-27 23:32:31 +0000529
Matt Arsenaulte6db7602013-09-05 19:48:28 +0000530 DEBUG(dbgs() << "IC: Replacing " << I << "\n"
Chandler Carruthb3d03df2015-01-20 21:10:35 +0000531 << " with " << *V << '\n');
Frits van Bommeld14d9912011-03-27 23:32:31 +0000532
Chris Lattner35522b72010-01-04 07:12:23 +0000533 I.replaceAllUsesWith(V);
534 return &I;
535 }
536
Erik Eckstein096ff7d2014-12-11 08:02:30 +0000537 /// Creates a result tuple for an overflow intrinsic \p II with a given
Sanjoy Dasb0984472015-04-08 04:27:22 +0000538 /// \p Result and a constant \p Overflow value.
Erik Eckstein096ff7d2014-12-11 08:02:30 +0000539 Instruction *CreateOverflowTuple(IntrinsicInst *II, Value *Result,
Sanjoy Dasb0984472015-04-08 04:27:22 +0000540 Constant *Overflow) {
541 Constant *V[] = {UndefValue::get(Result->getType()), Overflow};
Erik Eckstein096ff7d2014-12-11 08:02:30 +0000542 StructType *ST = cast<StructType>(II->getType());
543 Constant *Struct = ConstantStruct::get(ST, V);
544 return InsertValueInst::Create(Struct, Result, 0);
545 }
Chandler Carruthb3d03df2015-01-20 21:10:35 +0000546
Chandler Carruth3a622162015-01-20 19:27:58 +0000547 /// \brief Combiner aware instruction erasure.
548 ///
549 /// When dealing with an instruction that has side effects or produces a void
550 /// value, we can't rely on DCE to delete the instruction. Instead, visit
551 /// methods should return the value returned by this function.
Sanjay Patel4b198802016-02-01 22:23:39 +0000552 Instruction *eraseInstFromFunction(Instruction &I) {
Matt Arsenaulte6db7602013-09-05 19:48:28 +0000553 DEBUG(dbgs() << "IC: ERASE " << I << '\n');
Adrian Prantlfa9e84e2017-03-16 20:11:54 +0000554 assert(I.use_empty() && "Cannot erase instruction that is used!");
Adrian Prantl47ea6472017-03-16 21:14:09 +0000555 salvageDebugInfo(I);
556
Chris Lattner35522b72010-01-04 07:12:23 +0000557 // Make sure that we reprocess all operands now that we reduced their
558 // use counts.
559 if (I.getNumOperands() < 8) {
Sanjay Patel8af7fbc32016-01-31 16:34:48 +0000560 for (Use &Operand : I.operands())
561 if (auto *Inst = dyn_cast<Instruction>(Operand))
562 Worklist.Add(Inst);
Chris Lattner35522b72010-01-04 07:12:23 +0000563 }
564 Worklist.Remove(&I);
565 I.eraseFromParent();
566 MadeIRChange = true;
Chandler Carruthd70cc602014-05-07 17:36:59 +0000567 return nullptr; // Don't do anything with FI
Chris Lattner35522b72010-01-04 07:12:23 +0000568 }
Jakub Staszak190db2f2013-01-14 23:16:36 +0000569
Craig Topper2b1fc322017-05-22 06:25:31 +0000570 void computeKnownBits(const Value *V, KnownBits &Known,
571 unsigned Depth, const Instruction *CxtI) const {
Craig Topper26c41592017-05-15 02:30:27 +0000572 llvm::computeKnownBits(V, Known, DL, Depth, &AC, CxtI, &DT);
Chris Lattner35522b72010-01-04 07:12:23 +0000573 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000574
Craig Topper2b1fc322017-05-22 06:25:31 +0000575 KnownBits computeKnownBits(const Value *V, unsigned Depth,
576 const Instruction *CxtI) const {
Craig Topper1a36b7d2017-05-15 06:39:41 +0000577 return llvm::computeKnownBits(V, DL, Depth, &AC, CxtI, &DT);
578 }
Jakub Staszak190db2f2013-01-14 23:16:36 +0000579
Craig Topperd4039f72017-05-25 21:51:12 +0000580 bool isKnownToBeAPowerOfTwo(const Value *V, bool OrZero = false,
581 unsigned Depth = 0,
582 const Instruction *CxtI = nullptr) {
583 return llvm::isKnownToBeAPowerOfTwo(V, DL, OrZero, Depth, &AC, CxtI, &DT);
584 }
585
Craig Topper2b1fc322017-05-22 06:25:31 +0000586 bool MaskedValueIsZero(const Value *V, const APInt &Mask, unsigned Depth = 0,
587 const Instruction *CxtI = nullptr) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000588 return llvm::MaskedValueIsZero(V, Mask, DL, Depth, &AC, CxtI, &DT);
Chris Lattner35522b72010-01-04 07:12:23 +0000589 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000590
Craig Topper2b1fc322017-05-22 06:25:31 +0000591 unsigned ComputeNumSignBits(const Value *Op, unsigned Depth = 0,
592 const Instruction *CxtI = nullptr) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000593 return llvm::ComputeNumSignBits(Op, DL, Depth, &AC, CxtI, &DT);
Chris Lattner35522b72010-01-04 07:12:23 +0000594 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000595
Craig Topper2b1fc322017-05-22 06:25:31 +0000596 OverflowResult computeOverflowForUnsignedMul(const Value *LHS,
597 const Value *RHS,
598 const Instruction *CxtI) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000599 return llvm::computeOverflowForUnsignedMul(LHS, RHS, DL, &AC, CxtI, &DT);
David Majnemer491331a2015-01-02 07:29:43 +0000600 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000601
Craig Topper2b1fc322017-05-22 06:25:31 +0000602 OverflowResult computeOverflowForUnsignedAdd(const Value *LHS,
603 const Value *RHS,
604 const Instruction *CxtI) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000605 return llvm::computeOverflowForUnsignedAdd(LHS, RHS, DL, &AC, CxtI, &DT);
David Majnemer5310c1e2015-01-07 00:39:50 +0000606 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000607
Craig Topperbb973722017-05-15 02:44:08 +0000608 OverflowResult computeOverflowForSignedAdd(const Value *LHS,
609 const Value *RHS,
610 const Instruction *CxtI) const {
611 return llvm::computeOverflowForSignedAdd(LHS, RHS, DL, &AC, CxtI, &DT);
612 }
Chris Lattner35522b72010-01-04 07:12:23 +0000613
Davide Italiano2133bf52017-02-07 17:56:50 +0000614 /// Maximum size of array considered when transforming.
David Blaikie4c01af22017-02-07 18:58:17 +0000615 uint64_t MaxArraySizeForCombine;
Davide Italiano2133bf52017-02-07 17:56:50 +0000616
Chris Lattner35522b72010-01-04 07:12:23 +0000617private:
Chandler Carruth3a622162015-01-20 19:27:58 +0000618 /// \brief Performs a few simplifications for operators which are associative
619 /// or commutative.
Duncan Sands641baf12010-11-13 15:10:37 +0000620 bool SimplifyAssociativeOrCommutative(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000621
Chandler Carruthb3d03df2015-01-20 21:10:35 +0000622 /// \brief Tries to simplify binary operations which some other binary
623 /// operation distributes over.
Chandler Carruth3a622162015-01-20 19:27:58 +0000624 ///
625 /// It does this by either by factorizing out common terms (eg "(A*B)+(A*C)"
626 /// -> "A*(B+C)") or expanding out if this results in simplifications (eg: "A
627 /// & (B | C) -> (A&B) | (A&C)" if this is a win). Returns the simplified
628 /// value, or null if it didn't simplify.
Duncan Sandsfbb9ac32010-12-22 13:36:08 +0000629 Value *SimplifyUsingDistributiveLaws(BinaryOperator &I);
Duncan Sandsadc7771f2010-11-23 14:23:47 +0000630
Quentin Colombetaa103b32017-09-20 17:32:16 +0000631 // Binary Op helper for select operations where the expression can be
632 // efficiently reorganized.
633 Value *SimplifySelectsFeedingBinaryOp(BinaryOperator &I, Value *LHS,
634 Value *RHS);
635
Daniel Berlin2c75c632017-04-26 20:56:07 +0000636 /// This tries to simplify binary operations by factorizing out common terms
637 /// (e. g. "(A*B)+(A*C)" -> "A*(B+C)").
Craig Topper47c8f662017-07-06 18:35:52 +0000638 Value *tryFactorization(BinaryOperator &, Instruction::BinaryOps, Value *,
639 Value *, Value *, Value *);
Daniel Berlin2c75c632017-04-26 20:56:07 +0000640
Anna Thomasd67165c2017-06-23 13:41:45 +0000641 /// Match a select chain which produces one of three values based on whether
642 /// the LHS is less than, equal to, or greater than RHS respectively.
643 /// Return true if we matched a three way compare idiom. The LHS, RHS, Less,
644 /// Equal and Greater values are saved in the matching process and returned to
645 /// the caller.
646 bool matchThreeWayIntCompare(SelectInst *SI, Value *&LHS, Value *&RHS,
647 ConstantInt *&Less, ConstantInt *&Equal,
648 ConstantInt *&Greater);
649
Chandler Carruth3a622162015-01-20 19:27:58 +0000650 /// \brief Attempts to replace V with a simpler value based on the demanded
651 /// bits.
Craig Topperb45eabc2017-04-26 16:39:58 +0000652 Value *SimplifyDemandedUseBits(Value *V, APInt DemandedMask, KnownBits &Known,
653 unsigned Depth, Instruction *CxtI);
Craig Topper47596dd2017-03-25 06:52:52 +0000654 bool SimplifyDemandedBits(Instruction *I, unsigned Op,
Craig Topperb45eabc2017-04-26 16:39:58 +0000655 const APInt &DemandedMask, KnownBits &Known,
656 unsigned Depth = 0);
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000657
Craig Topperb0076fe2017-04-12 18:05:21 +0000658 /// Helper routine of SimplifyDemandedUseBits. It computes KnownZero/KnownOne
659 /// bits. It also tries to handle simplifications that can be done based on
660 /// DemandedMask, but without modifying the Instruction.
661 Value *SimplifyMultipleUseDemandedBits(Instruction *I,
662 const APInt &DemandedMask,
Craig Topperb45eabc2017-04-26 16:39:58 +0000663 KnownBits &Known,
Craig Topperb0076fe2017-04-12 18:05:21 +0000664 unsigned Depth, Instruction *CxtI);
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000665
Shuxin Yang63e999e2012-12-04 00:04:54 +0000666 /// Helper routine of SimplifyDemandedUseBits. It tries to simplify demanded
667 /// bit for "r1 = shr x, c1; r2 = shl r1, c2" instruction sequence.
Sanjay Patelcc663b82017-04-20 22:37:01 +0000668 Value *simplifyShrShlDemandedBits(
Sanjay Patelc9485ca2017-04-20 22:33:54 +0000669 Instruction *Shr, const APInt &ShrOp1, Instruction *Shl,
Craig Topperb45eabc2017-04-26 16:39:58 +0000670 const APInt &ShlOp1, const APInt &DemandedMask, KnownBits &Known);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000671
Chandler Carruth3a622162015-01-20 19:27:58 +0000672 /// \brief Tries to simplify operands to an integer instruction based on its
673 /// demanded bits.
Chris Lattner35522b72010-01-04 07:12:23 +0000674 bool SimplifyDemandedInstructionBits(Instruction &Inst);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000675
Chris Lattner35522b72010-01-04 07:12:23 +0000676 Value *SimplifyDemandedVectorElts(Value *V, APInt DemandedElts,
Chandler Carruthd70cc602014-05-07 17:36:59 +0000677 APInt &UndefElts, unsigned Depth = 0);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000678
Serge Pavlov9ef66a82014-05-11 08:46:12 +0000679 Value *SimplifyVectorOp(BinaryOperator &Inst);
680
Sanjay Pateldb0938f2017-01-10 23:49:07 +0000681
682 /// Given a binary operator, cast instruction, or select which has a PHI node
683 /// as operand #0, see if we can fold the instruction into the PHI (which is
684 /// only possible if all operands to the PHI are constants).
Craig Topperfb71b7d2017-04-14 19:20:12 +0000685 Instruction *foldOpIntoPhi(Instruction &I, PHINode *PN);
Chris Lattner35522b72010-01-04 07:12:23 +0000686
Sanjay Pateldb0938f2017-01-10 23:49:07 +0000687 /// Given an instruction with a select as one operand and a constant as the
688 /// other operand, try to fold the binary operator into the select arguments.
689 /// This also works for Cast instructions, which obviously do not have a
690 /// second operand.
691 Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI);
692
693 /// This is a convenience wrapper function for the above two functions.
Craig Topperd0b053d2017-04-03 07:08:08 +0000694 Instruction *foldOpWithConstantIntoOperand(BinaryOperator &I);
Sanjay Pateldb0938f2017-01-10 23:49:07 +0000695
Sanjay Patel8d810fe2017-10-13 16:43:58 +0000696 Instruction *foldAddWithConstant(BinaryOperator &Add);
697
Chandler Carruth3a622162015-01-20 19:27:58 +0000698 /// \brief Try to rotate an operation below a PHI node, using PHI nodes for
699 /// its operands.
Chris Lattner35522b72010-01-04 07:12:23 +0000700 Instruction *FoldPHIArgOpIntoPHI(PHINode &PN);
701 Instruction *FoldPHIArgBinOpIntoPHI(PHINode &PN);
702 Instruction *FoldPHIArgGEPIntoPHI(PHINode &PN);
703 Instruction *FoldPHIArgLoadIntoPHI(PHINode &PN);
Sanjay Patel95334072015-09-27 20:34:31 +0000704 Instruction *FoldPHIArgZextsIntoPHI(PHINode &PN);
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000705
Xinliang David Li4cdc9da2017-10-10 05:07:54 +0000706 /// If an integer typed PHI has only one use which is an IntToPtr operation,
707 /// replace the PHI with an existing pointer typed PHI if it exists. Otherwise
708 /// insert a new pointer typed PHI and replace the original one.
709 Instruction *FoldIntegerTypedPHI(PHINode &PN);
Chris Lattner35522b72010-01-04 07:12:23 +0000710
Dehao Chenf4646272017-10-02 18:13:14 +0000711 /// Helper function for FoldPHIArgXIntoPHI() to set debug location for the
Robert Lougher2428a402016-12-14 17:49:19 +0000712 /// folded operation.
Dehao Chenf4646272017-10-02 18:13:14 +0000713 void PHIArgMergedDebugLoc(Instruction *Inst, PHINode &PN);
Robert Lougher2428a402016-12-14 17:49:19 +0000714
Sanjay Patel43395062016-07-21 18:07:40 +0000715 Instruction *foldGEPICmp(GEPOperator *GEPLHS, Value *RHS,
716 ICmpInst::Predicate Cond, Instruction &I);
Pete Cooper980a9352016-08-12 17:13:28 +0000717 Instruction *foldAllocaCmp(ICmpInst &ICI, const AllocaInst *Alloca,
718 const Value *Other);
Sanjay Patel43395062016-07-21 18:07:40 +0000719 Instruction *foldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP,
720 GlobalVariable *GV, CmpInst &ICI,
721 ConstantInt *AndCst = nullptr);
722 Instruction *foldFCmpIntToFPConst(FCmpInst &I, Instruction *LHSI,
723 Constant *RHSC);
Craig Toppera85f8622017-08-23 05:46:09 +0000724 Instruction *foldICmpAddOpConst(Value *X, ConstantInt *CI,
Sanjay Patel43395062016-07-21 18:07:40 +0000725 ICmpInst::Predicate Pred);
726 Instruction *foldICmpWithCastAndCast(ICmpInst &ICI);
Sanjay Patelf58f68c2016-09-10 15:03:44 +0000727
Sanjay Patel3151dec2016-09-12 15:24:31 +0000728 Instruction *foldICmpUsingKnownBits(ICmpInst &Cmp);
Sanjay Patel06b127a2016-09-15 14:37:50 +0000729 Instruction *foldICmpWithConstant(ICmpInst &Cmp);
Sanjay Patelf58f68c2016-09-10 15:03:44 +0000730 Instruction *foldICmpInstWithConstant(ICmpInst &Cmp);
Sanjay Patel10494b22016-09-16 16:10:22 +0000731 Instruction *foldICmpInstWithConstantNotInt(ICmpInst &Cmp);
732 Instruction *foldICmpBinOp(ICmpInst &Cmp);
733 Instruction *foldICmpEquality(ICmpInst &Cmp);
Nikolai Bozhenov0e7ebbc2017-10-16 09:19:21 +0000734 Instruction *foldICmpWithZero(ICmpInst &Cmp);
Sanjay Patela3f4f082016-08-16 17:54:36 +0000735
Craig Topper524c44f2017-08-23 05:46:07 +0000736 Instruction *foldICmpSelectConstant(ICmpInst &Cmp, SelectInst *Select,
Anna Thomasd67165c2017-06-23 13:41:45 +0000737 ConstantInt *C);
Craig Topper524c44f2017-08-23 05:46:07 +0000738 Instruction *foldICmpTruncConstant(ICmpInst &Cmp, TruncInst *Trunc,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000739 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000740 Instruction *foldICmpAndConstant(ICmpInst &Cmp, BinaryOperator *And,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000741 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000742 Instruction *foldICmpXorConstant(ICmpInst &Cmp, BinaryOperator *Xor,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000743 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000744 Instruction *foldICmpOrConstant(ICmpInst &Cmp, BinaryOperator *Or,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000745 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000746 Instruction *foldICmpMulConstant(ICmpInst &Cmp, BinaryOperator *Mul,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000747 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000748 Instruction *foldICmpShlConstant(ICmpInst &Cmp, BinaryOperator *Shl,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000749 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000750 Instruction *foldICmpShrConstant(ICmpInst &Cmp, BinaryOperator *Shr,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000751 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000752 Instruction *foldICmpUDivConstant(ICmpInst &Cmp, BinaryOperator *UDiv,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000753 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000754 Instruction *foldICmpDivConstant(ICmpInst &Cmp, BinaryOperator *Div,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000755 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000756 Instruction *foldICmpSubConstant(ICmpInst &Cmp, BinaryOperator *Sub,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000757 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000758 Instruction *foldICmpAddConstant(ICmpInst &Cmp, BinaryOperator *Add,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000759 const APInt &C);
Sanjay Pateld3c7bb282016-08-26 16:42:33 +0000760 Instruction *foldICmpAndConstConst(ICmpInst &Cmp, BinaryOperator *And,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000761 const APInt &C1);
Sanjay Patel14e0e182016-08-26 18:28:46 +0000762 Instruction *foldICmpAndShift(ICmpInst &Cmp, BinaryOperator *And,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000763 const APInt &C1, const APInt &C2);
Sanjay Patel8da42cc2016-09-15 22:26:31 +0000764 Instruction *foldICmpShrConstConst(ICmpInst &I, Value *ShAmt, const APInt &C1,
765 const APInt &C2);
766 Instruction *foldICmpShlConstConst(ICmpInst &I, Value *ShAmt, const APInt &C1,
767 const APInt &C2);
Sanjay Patela3f4f082016-08-16 17:54:36 +0000768
Sanjay Patelf58f68c2016-09-10 15:03:44 +0000769 Instruction *foldICmpBinOpEqualityWithConstant(ICmpInst &Cmp,
770 BinaryOperator *BO,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000771 const APInt &C);
772 Instruction *foldICmpIntrinsicWithConstant(ICmpInst &ICI, const APInt &C);
Sanjay Patel43395062016-07-21 18:07:40 +0000773
Sanjay Patel453ceff2016-09-29 22:18:30 +0000774 // Helpers of visitSelectInst().
Sanjay Patelf7b851f2016-09-30 19:49:22 +0000775 Instruction *foldSelectExtConst(SelectInst &Sel);
Sanjay Patel453ceff2016-09-29 22:18:30 +0000776 Instruction *foldSelectOpOp(SelectInst &SI, Instruction *TI, Instruction *FI);
777 Instruction *foldSelectIntoOp(SelectInst &SI, Value *, Value *);
778 Instruction *foldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1,
779 Value *A, Value *B, Instruction &Outer,
780 SelectPatternFlavor SPF2, Value *C);
781 Instruction *foldSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI);
782
Craig Topper70e4f432017-04-02 17:57:30 +0000783 Instruction *OptAndOp(BinaryOperator *Op, ConstantInt *OpRHS,
Chris Lattner35522b72010-01-04 07:12:23 +0000784 ConstantInt *AndRHS, BinaryOperator &TheAnd);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000785
Sanjay Patel85d79742016-08-31 19:49:56 +0000786 Value *insertRangeTest(Value *V, const APInt &Lo, const APInt &Hi,
787 bool isSigned, bool Inside);
Chris Lattner35522b72010-01-04 07:12:23 +0000788 Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocaInst &AI);
Chad Rosiera00df492016-05-25 16:22:14 +0000789 Instruction *MatchBSwap(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000790 bool SimplifyStoreAtEndOfBlock(StoreInst &SI);
Igor Laevsky900ffa32017-02-08 14:32:04 +0000791
Daniel Neilsonf9c7d292017-10-30 19:51:48 +0000792 Instruction *SimplifyElementUnorderedAtomicMemCpy(AtomicMemCpyInst *AMI);
Pete Cooper67cf9a72015-11-19 05:56:52 +0000793 Instruction *SimplifyMemTransfer(MemIntrinsic *MI);
Chris Lattner35522b72010-01-04 07:12:23 +0000794 Instruction *SimplifyMemSet(MemSetInst *MI);
795
Chris Lattner229907c2011-07-18 04:54:35 +0000796 Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned);
Duncan Sands533c8ae2012-10-23 08:28:26 +0000797
Chandler Carruth3a622162015-01-20 19:27:58 +0000798 /// \brief Returns a value X such that Val = X * Scale, or null if none.
799 ///
800 /// If the multiplication is known not to overflow then NoSignedWrap is set.
Duncan Sands533c8ae2012-10-23 08:28:26 +0000801 Value *Descale(Value *Val, APInt Scale, bool &NoSignedWrap);
Chris Lattner35522b72010-01-04 07:12:23 +0000802};
803
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000804} // end namespace llvm
Chris Lattner35522b72010-01-04 07:12:23 +0000805
Chandler Carruth964daaa2014-04-22 02:55:47 +0000806#undef DEBUG_TYPE
807
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000808#endif // LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H