blob: 673099436b794210c4c81afb9704d728cd271407 [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//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chris Lattner35522b72010-01-04 07:12:23 +00006//
7//===----------------------------------------------------------------------===//
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +00008//
Chandler Carrutha9174582015-01-22 05:25:13 +00009/// \file
10///
11/// This file provides internal interfaces used to implement the InstCombine.
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000012//
Chandler Carrutha9174582015-01-22 05:25:13 +000013//===----------------------------------------------------------------------===//
Chris Lattner35522b72010-01-04 07:12:23 +000014
Chandler Carrutha9174582015-01-22 05:25:13 +000015#ifndef LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H
16#define LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H
Chris Lattner35522b72010-01-04 07:12:23 +000017
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000018#include "llvm/ADT/ArrayRef.h"
Bjorn Steinbrink83505342015-07-10 06:55:49 +000019#include "llvm/Analysis/AliasAnalysis.h"
Daniel Berlin2c75c632017-04-26 20:56:07 +000020#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruth452a0072014-03-04 11:59:06 +000021#include "llvm/Analysis/TargetFolder.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000022#include "llvm/Analysis/ValueTracking.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000023#include "llvm/IR/Argument.h"
24#include "llvm/IR/BasicBlock.h"
25#include "llvm/IR/Constant.h"
26#include "llvm/IR/Constants.h"
27#include "llvm/IR/DerivedTypes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/IRBuilder.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000029#include "llvm/IR/InstVisitor.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000030#include "llvm/IR/InstrTypes.h"
31#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000033#include "llvm/IR/Intrinsics.h"
David Green1e44c3b2018-10-02 09:48:34 +000034#include "llvm/IR/PatternMatch.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000035#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"
David Green1e44c3b2018-10-02 09:48:34 +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
David Green1e44c3b2018-10-02 09:48:34 +000049using namespace llvm::PatternMatch;
50
Chris Lattner35522b72010-01-04 07:12:23 +000051namespace llvm {
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000052
53class APInt;
54class AssumptionCache;
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +000055class BlockFrequencyInfo;
Chandler Carruthd70cc602014-05-07 17:36:59 +000056class DataLayout;
Hal Finkel60db0582014-09-07 18:57:58 +000057class DominatorTree;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000058class GEPOperator;
59class GlobalVariable;
60class LoopInfo;
Adam Nemetea06e6e2017-07-26 19:03:18 +000061class OptimizationRemarkEmitter;
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +000062class ProfileSummaryInfo;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000063class TargetLibraryInfo;
64class User;
Jakub Staszak190db2f2013-01-14 23:16:36 +000065
Sanjay Patel73fc8dd2017-02-03 21:43:34 +000066/// Assign a complexity or rank value to LLVM Values. This is used to reduce
67/// the amount of pattern matching needed for compares and commutative
68/// instructions. For example, if we have:
69/// icmp ugt X, Constant
70/// or
71/// xor (add X, Constant), cast Z
72///
73/// We do not have to consider the commuted variants of these patterns because
74/// canonicalization based on complexity guarantees the above ordering.
Chandler Carruth3a622162015-01-20 19:27:58 +000075///
76/// This routine maps IR values to various complexity ranks:
77/// 0 -> undef
78/// 1 -> Constants
79/// 2 -> Other non-instructions
80/// 3 -> Arguments
Sanjay Patel73fc8dd2017-02-03 21:43:34 +000081/// 4 -> Cast and (f)neg/not instructions
82/// 5 -> Other instructions
Chris Lattner2188e402010-01-04 07:37:31 +000083static inline unsigned getComplexity(Value *V) {
84 if (isa<Instruction>(V)) {
Sanjay Patel47579b22018-10-13 16:15:37 +000085 if (isa<CastInst>(V) || match(V, m_Neg(m_Value())) ||
86 match(V, m_Not(m_Value())) || match(V, m_FNeg(m_Value())))
Sanjay Patel73fc8dd2017-02-03 21:43:34 +000087 return 4;
88 return 5;
Chris Lattner2188e402010-01-04 07:37:31 +000089 }
Chandler Carruthd70cc602014-05-07 17:36:59 +000090 if (isa<Argument>(V))
91 return 3;
Chris Lattner2188e402010-01-04 07:37:31 +000092 return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;
93}
Chris Lattner35522b72010-01-04 07:12:23 +000094
Sanjay Patelb2e70032017-05-17 14:21:19 +000095/// Predicate canonicalization reduces the number of patterns that need to be
96/// matched by other transforms. For example, we may swap the operands of a
97/// conditional branch or select to create a compare with a canonical (inverted)
98/// predicate which is then more likely to be matched with other values.
99static inline bool isCanonicalPredicate(CmpInst::Predicate Pred) {
100 switch (Pred) {
101 case CmpInst::ICMP_NE:
102 case CmpInst::ICMP_ULE:
103 case CmpInst::ICMP_SLE:
104 case CmpInst::ICMP_UGE:
105 case CmpInst::ICMP_SGE:
106 // TODO: There are 16 FCMP predicates. Should others be (not) canonical?
107 case CmpInst::FCMP_ONE:
108 case CmpInst::FCMP_OLE:
109 case CmpInst::FCMP_OGE:
110 return false;
111 default:
112 return true;
113 }
114}
115
Roman Lebedev32f1e1a2019-08-14 09:57:20 +0000116llvm::Optional<std::pair<CmpInst::Predicate, Constant *>>
117getFlippedStrictnessPredicateAndConstant(CmpInst::Predicate Pred, Constant *C);
118
Sanjay Patele800df8e2017-06-22 15:28:01 +0000119/// Return the source operand of a potentially bitcasted value while optionally
120/// checking if it has one use. If there is no bitcast or the one use check is
121/// not met, return the input value itself.
122static inline Value *peekThroughBitcast(Value *V, bool OneUseOnly = false) {
123 if (auto *BitCast = dyn_cast<BitCastInst>(V))
124 if (!OneUseOnly || BitCast->hasOneUse())
125 return BitCast->getOperand(0);
126
127 // V is not a bitcast or V has more than one use and OneUseOnly is true.
128 return V;
129}
130
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000131/// Add one to a Constant
Benjamin Kramer970f4952014-01-19 16:56:10 +0000132static inline Constant *AddOne(Constant *C) {
133 return ConstantExpr::getAdd(C, ConstantInt::get(C->getType(), 1));
134}
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000135
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000136/// Subtract one from a Constant
Benjamin Kramer970f4952014-01-19 16:56:10 +0000137static inline Constant *SubOne(Constant *C) {
138 return ConstantExpr::getSub(C, ConstantInt::get(C->getType(), 1));
139}
140
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000141/// Return true if the specified value is free to invert (apply ~ to).
Sanjoy Das82ea3d42015-02-24 00:08:41 +0000142/// This happens in cases where the ~ can be eliminated. If WillInvertAllUses
143/// is true, work under the assumption that the caller intends to remove all
144/// uses of V and only keep uses of ~V.
Roman Lebedev2635c322019-08-13 12:49:06 +0000145///
146/// See also: canFreelyInvertAllUsersOf()
Roman Lebedev04104892019-08-13 12:49:16 +0000147static inline bool isFreeToInvert(Value *V, bool WillInvertAllUses) {
Sanjoy Das82ea3d42015-02-24 00:08:41 +0000148 // ~(~(X)) -> X.
Sanjay Patel95790c52018-10-23 16:54:28 +0000149 if (match(V, m_Not(m_Value())))
Sanjoy Das82ea3d42015-02-24 00:08:41 +0000150 return true;
151
152 // Constants can be considered to be not'ed values.
Roman Lebedev3a947652019-07-22 22:09:24 +0000153 if (match(V, m_AnyIntegralConstant()))
Sanjoy Das82ea3d42015-02-24 00:08:41 +0000154 return true;
155
156 // Compares can be inverted if all of their uses are being modified to use the
157 // ~V.
158 if (isa<CmpInst>(V))
159 return WillInvertAllUses;
160
161 // If `V` is of the form `A + Constant` then `-1 - V` can be folded into `(-1
162 // - Constant) - A` if we are willing to invert all of the uses.
163 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(V))
164 if (BO->getOpcode() == Instruction::Add ||
165 BO->getOpcode() == Instruction::Sub)
166 if (isa<Constant>(BO->getOperand(0)) || isa<Constant>(BO->getOperand(1)))
167 return WillInvertAllUses;
168
David Green1e44c3b2018-10-02 09:48:34 +0000169 // Selects with invertible operands are freely invertible
170 if (match(V, m_Select(m_Value(), m_Not(m_Value()), m_Not(m_Value()))))
171 return WillInvertAllUses;
172
Sanjoy Das82ea3d42015-02-24 00:08:41 +0000173 return false;
174}
175
Roman Lebedev2635c322019-08-13 12:49:06 +0000176/// Given i1 V, can every user of V be freely adapted if V is changed to !V ?
177///
Roman Lebedev04104892019-08-13 12:49:16 +0000178/// See also: isFreeToInvert()
Roman Lebedev2635c322019-08-13 12:49:06 +0000179static inline bool canFreelyInvertAllUsersOf(Value *V, Value *IgnoredUser) {
180 // Look at every user of V.
181 for (User *U : V->users()) {
182 if (U == IgnoredUser)
183 continue; // Don't consider this user.
184
185 auto *I = cast<Instruction>(U);
186 switch (I->getOpcode()) {
187 case Instruction::Select:
188 case Instruction::Br:
189 break; // Free to invert by swapping true/false values/destinations.
190 case Instruction::Xor: // Can invert 'xor' if it's a 'not', by ignoring it.
191 if (!match(I, m_Not(m_Value())))
192 return false; // Not a 'not'.
193 break;
194 default:
195 return false; // Don't know, likely not freely invertible.
196 }
197 // So far all users were free to invert...
198 }
199 return true; // Can freely invert all users!
200}
201
Sanjay Patela6272532018-07-09 16:16:51 +0000202/// Some binary operators require special handling to avoid poison and undefined
Sanjay Patel3e5c0512018-06-21 14:59:35 +0000203/// behavior. If a constant vector has undef elements, replace those undefs with
Sanjay Patel69faf4642018-07-09 23:22:47 +0000204/// identity constants if possible because those are always safe to execute.
205/// If no identity constant exists, replace undef with some other safe constant.
Sanjay Patela6272532018-07-09 16:16:51 +0000206static inline Constant *getSafeVectorConstantForBinop(
Sanjay Patel69faf4642018-07-09 23:22:47 +0000207 BinaryOperator::BinaryOps Opcode, Constant *In, bool IsRHSConstant) {
208 assert(In->getType()->isVectorTy() && "Not expecting scalars here");
Sanjay Patel3e5c0512018-06-21 14:59:35 +0000209
Sanjay Patel69faf4642018-07-09 23:22:47 +0000210 Type *EltTy = In->getType()->getVectorElementType();
211 auto *SafeC = ConstantExpr::getBinOpIdentity(Opcode, EltTy, IsRHSConstant);
212 if (!SafeC) {
213 // TODO: Should this be available as a constant utility function? It is
214 // similar to getBinOpAbsorber().
215 if (IsRHSConstant) {
216 switch (Opcode) {
217 case Instruction::SRem: // X % 1 = 0
218 case Instruction::URem: // X %u 1 = 0
219 SafeC = ConstantInt::get(EltTy, 1);
220 break;
221 case Instruction::FRem: // X % 1.0 (doesn't simplify, but it is safe)
222 SafeC = ConstantFP::get(EltTy, 1.0);
223 break;
224 default:
225 llvm_unreachable("Only rem opcodes have no identity constant for RHS");
226 }
227 } else {
228 switch (Opcode) {
229 case Instruction::Shl: // 0 << X = 0
230 case Instruction::LShr: // 0 >>u X = 0
231 case Instruction::AShr: // 0 >> X = 0
232 case Instruction::SDiv: // 0 / X = 0
233 case Instruction::UDiv: // 0 /u X = 0
234 case Instruction::SRem: // 0 % X = 0
235 case Instruction::URem: // 0 %u X = 0
236 case Instruction::Sub: // 0 - X (doesn't simplify, but it is safe)
237 case Instruction::FSub: // 0.0 - X (doesn't simplify, but it is safe)
238 case Instruction::FDiv: // 0.0 / X (doesn't simplify, but it is safe)
239 case Instruction::FRem: // 0.0 % X = 0
240 SafeC = Constant::getNullValue(EltTy);
241 break;
242 default:
243 llvm_unreachable("Expected to find identity constant for opcode");
244 }
245 }
246 }
247 assert(SafeC && "Must have safe constant for binop");
248 unsigned NumElts = In->getType()->getVectorNumElements();
Sanjay Patel3e5c0512018-06-21 14:59:35 +0000249 SmallVector<Constant *, 16> Out(NumElts);
250 for (unsigned i = 0; i != NumElts; ++i) {
251 Constant *C = In->getAggregateElement(i);
Sanjay Patel69faf4642018-07-09 23:22:47 +0000252 Out[i] = isa<UndefValue>(C) ? SafeC : C;
Sanjay Patel3e5c0512018-06-21 14:59:35 +0000253 }
254 return ConstantVector::get(Out);
255}
256
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000257/// The core instruction combiner logic.
Chandler Carruth3a622162015-01-20 19:27:58 +0000258///
259/// This class provides both the logic to recursively visit instructions and
Craig Topper28ec3462016-12-28 03:12:42 +0000260/// combine them.
Duncan Sands6c5e4352010-05-11 20:16:09 +0000261class LLVM_LIBRARY_VISIBILITY InstCombiner
Chandler Carruth1edb9d62015-01-20 22:44:35 +0000262 : public InstVisitor<InstCombiner, Instruction *> {
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000263 // FIXME: These members shouldn't be public.
Chris Lattner35522b72010-01-04 07:12:23 +0000264public:
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000265 /// A worklist of the instructions that need to be simplified.
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000266 InstCombineWorklist &Worklist;
Chris Lattner35522b72010-01-04 07:12:23 +0000267
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000268 /// An IRBuilder that automatically inserts new instructions into the
Chandler Carruth3a622162015-01-20 19:27:58 +0000269 /// worklist.
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000270 using BuilderTy = IRBuilder<TargetFolder, IRBuilderCallbackInserter>;
Craig Topperbb4069e2017-07-07 23:16:26 +0000271 BuilderTy &Builder;
Jakub Staszak190db2f2013-01-14 23:16:36 +0000272
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000273private:
274 // Mode in which we are running the combiner.
275 const bool MinimizeSize;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000276
Matthias Braunc31032d2016-03-09 18:47:11 +0000277 /// Enable combines that trigger rarely but are costly in compiletime.
278 const bool ExpensiveCombines;
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000279
Bjorn Steinbrink83505342015-07-10 06:55:49 +0000280 AliasAnalysis *AA;
281
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000282 // Required analyses.
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000283 AssumptionCache &AC;
Justin Bogner99798402016-08-05 01:06:44 +0000284 TargetLibraryInfo &TLI;
285 DominatorTree &DT;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000286 const DataLayout &DL;
Daniel Berlin2c75c632017-04-26 20:56:07 +0000287 const SimplifyQuery SQ;
Adam Nemetea06e6e2017-07-26 19:03:18 +0000288 OptimizationRemarkEmitter &ORE;
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +0000289 BlockFrequencyInfo *BFI;
290 ProfileSummaryInfo *PSI;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000291
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000292 // Optional analyses. When non-null, these can both be used to do better
293 // combining and will be updated to reflect any changes.
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000294 LoopInfo *LI;
295
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000296 bool MadeIRChange = false;
Chris Lattner35522b72010-01-04 07:12:23 +0000297
298public:
Craig Topperbb4069e2017-07-07 23:16:26 +0000299 InstCombiner(InstCombineWorklist &Worklist, BuilderTy &Builder,
Matthias Braunc31032d2016-03-09 18:47:11 +0000300 bool MinimizeSize, bool ExpensiveCombines, AliasAnalysis *AA,
Daniel Berlin2c75c632017-04-26 20:56:07 +0000301 AssumptionCache &AC, TargetLibraryInfo &TLI, DominatorTree &DT,
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +0000302 OptimizationRemarkEmitter &ORE, BlockFrequencyInfo *BFI,
303 ProfileSummaryInfo *PSI, const DataLayout &DL, LoopInfo *LI)
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000304 : Worklist(Worklist), Builder(Builder), MinimizeSize(MinimizeSize),
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000305 ExpensiveCombines(ExpensiveCombines), AA(AA), AC(AC), TLI(TLI), DT(DT),
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +0000306 DL(DL), SQ(DL, &TLI, &DT, &AC), ORE(ORE), BFI(BFI), PSI(PSI), LI(LI) {}
Jakub Staszak190db2f2013-01-14 23:16:36 +0000307
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000308 /// Run the combiner over the entire worklist until it is empty.
Chandler Carruthdf5747a2015-01-21 11:38:17 +0000309 ///
310 /// \returns true if the IR is changed.
311 bool run();
Chris Lattner35522b72010-01-04 07:12:23 +0000312
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000313 AssumptionCache &getAssumptionCache() const { return AC; }
314
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000315 const DataLayout &getDataLayout() const { return DL; }
Chandler Carruthb3d03df2015-01-20 21:10:35 +0000316
Justin Bogner99798402016-08-05 01:06:44 +0000317 DominatorTree &getDominatorTree() const { return DT; }
Chris Lattner35522b72010-01-04 07:12:23 +0000318
Chandler Carruth5175b9a2015-01-20 08:35:24 +0000319 LoopInfo *getLoopInfo() const { return LI; }
320
Justin Bogner99798402016-08-05 01:06:44 +0000321 TargetLibraryInfo &getTargetLibraryInfo() const { return TLI; }
Chad Rosier43a33062011-12-02 01:26:24 +0000322
Chris Lattner35522b72010-01-04 07:12:23 +0000323 // Visitation implementation - Implement instruction combining for different
324 // instruction types. The semantics are as follows:
325 // Return Value:
326 // null - No change was made
327 // I - Change was made, I is still valid, I may be dead though
328 // otherwise - Change was made, replace I with returned instruction
329 //
Cameron McInallye75412a2019-05-10 20:01:04 +0000330 Instruction *visitFNeg(UnaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000331 Instruction *visitAdd(BinaryOperator &I);
332 Instruction *visitFAdd(BinaryOperator &I);
Chris Lattner229907c2011-07-18 04:54:35 +0000333 Value *OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty);
Chris Lattner35522b72010-01-04 07:12:23 +0000334 Instruction *visitSub(BinaryOperator &I);
335 Instruction *visitFSub(BinaryOperator &I);
336 Instruction *visitMul(BinaryOperator &I);
337 Instruction *visitFMul(BinaryOperator &I);
338 Instruction *visitURem(BinaryOperator &I);
339 Instruction *visitSRem(BinaryOperator &I);
340 Instruction *visitFRem(BinaryOperator &I);
Sanjay Patelae2e3a42017-10-06 23:20:16 +0000341 bool simplifyDivRemOfSelectWithZeroOp(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000342 Instruction *commonRemTransforms(BinaryOperator &I);
343 Instruction *commonIRemTransforms(BinaryOperator &I);
344 Instruction *commonDivTransforms(BinaryOperator &I);
345 Instruction *commonIDivTransforms(BinaryOperator &I);
346 Instruction *visitUDiv(BinaryOperator &I);
347 Instruction *visitSDiv(BinaryOperator &I);
Frits van Bommel2a559512011-01-29 17:50:27 +0000348 Instruction *visitFDiv(BinaryOperator &I);
Erik Ecksteind1817522014-12-03 10:39:15 +0000349 Value *simplifyRangeCheck(ICmpInst *Cmp0, ICmpInst *Cmp1, bool Inverted);
Chris Lattner35522b72010-01-04 07:12:23 +0000350 Instruction *visitAnd(BinaryOperator &I);
Chandler Carruthd70cc602014-05-07 17:36:59 +0000351 Instruction *visitOr(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000352 Instruction *visitXor(BinaryOperator &I);
353 Instruction *visitShl(BinaryOperator &I);
354 Instruction *visitAShr(BinaryOperator &I);
355 Instruction *visitLShr(BinaryOperator &I);
356 Instruction *commonShiftTransforms(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000357 Instruction *visitFCmpInst(FCmpInst &I);
358 Instruction *visitICmpInst(ICmpInst &I);
Matt Arsenaultfed3dc82014-04-14 21:50:37 +0000359 Instruction *FoldShiftByConstant(Value *Op0, Constant *Op1,
Chris Lattner35522b72010-01-04 07:12:23 +0000360 BinaryOperator &I);
361 Instruction *commonCastTransforms(CastInst &CI);
Chris Lattner35522b72010-01-04 07:12:23 +0000362 Instruction *commonPointerCastTransforms(CastInst &CI);
363 Instruction *visitTrunc(TruncInst &CI);
364 Instruction *visitZExt(ZExtInst &CI);
365 Instruction *visitSExt(SExtInst &CI);
366 Instruction *visitFPTrunc(FPTruncInst &CI);
367 Instruction *visitFPExt(CastInst &CI);
368 Instruction *visitFPToUI(FPToUIInst &FI);
369 Instruction *visitFPToSI(FPToSIInst &FI);
370 Instruction *visitUIToFP(CastInst &CI);
371 Instruction *visitSIToFP(CastInst &CI);
372 Instruction *visitPtrToInt(PtrToIntInst &CI);
373 Instruction *visitIntToPtr(IntToPtrInst &CI);
374 Instruction *visitBitCast(BitCastInst &CI);
Matt Arsenaulta9e95ab2013-11-15 05:45:08 +0000375 Instruction *visitAddrSpaceCast(AddrSpaceCastInst &CI);
Mehdi Aminib9a0fa42015-02-16 21:47:54 +0000376 Instruction *FoldItoFPtoI(Instruction &FI);
Chris Lattner35522b72010-01-04 07:12:23 +0000377 Instruction *visitSelectInst(SelectInst &SI);
Chris Lattner35522b72010-01-04 07:12:23 +0000378 Instruction *visitCallInst(CallInst &CI);
379 Instruction *visitInvokeInst(InvokeInst &II);
Craig Topper784929d2019-02-08 20:48:56 +0000380 Instruction *visitCallBrInst(CallBrInst &CBI);
Chris Lattner35522b72010-01-04 07:12:23 +0000381
382 Instruction *SliceUpIllegalIntegerPHI(PHINode &PN);
383 Instruction *visitPHINode(PHINode &PN);
384 Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
385 Instruction *visitAllocaInst(AllocaInst &AI);
Nuno Lopes95cc4f32012-07-09 18:38:20 +0000386 Instruction *visitAllocSite(Instruction &FI);
Gabor Greif75f69432010-06-24 12:21:15 +0000387 Instruction *visitFree(CallInst &FI);
Chris Lattner35522b72010-01-04 07:12:23 +0000388 Instruction *visitLoadInst(LoadInst &LI);
389 Instruction *visitStoreInst(StoreInst &SI);
Quentin Colombet96f54de2019-02-07 21:27:23 +0000390 Instruction *visitAtomicRMWInst(AtomicRMWInst &SI);
Chris Lattner35522b72010-01-04 07:12:23 +0000391 Instruction *visitBranchInst(BranchInst &BI);
Davide Italianoaec46172017-01-31 18:09:05 +0000392 Instruction *visitFenceInst(FenceInst &FI);
Chris Lattner35522b72010-01-04 07:12:23 +0000393 Instruction *visitSwitchInst(SwitchInst &SI);
Hal Finkel93873cc12014-09-07 21:28:34 +0000394 Instruction *visitReturnInst(ReturnInst &RI);
Michael Zolotukhin7d6293a2014-05-07 14:30:18 +0000395 Instruction *visitInsertValueInst(InsertValueInst &IV);
Chris Lattner35522b72010-01-04 07:12:23 +0000396 Instruction *visitInsertElementInst(InsertElementInst &IE);
397 Instruction *visitExtractElementInst(ExtractElementInst &EI);
398 Instruction *visitShuffleVectorInst(ShuffleVectorInst &SVI);
399 Instruction *visitExtractValueInst(ExtractValueInst &EV);
Duncan Sands5c055792011-09-30 13:12:16 +0000400 Instruction *visitLandingPadInst(LandingPadInst &LI);
Arnaud A. de Grandmaison333ef382016-05-10 09:24:49 +0000401 Instruction *visitVAStartInst(VAStartInst &I);
402 Instruction *visitVACopyInst(VACopyInst &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000403
Sanjay Patel53523312016-09-12 14:25:46 +0000404 /// Specify what to return for unhandled instructions.
Craig Toppere73658d2014-04-28 04:05:08 +0000405 Instruction *visitInstruction(Instruction &I) { return nullptr; }
Chris Lattner35522b72010-01-04 07:12:23 +0000406
Sanjay Patel53523312016-09-12 14:25:46 +0000407 /// True when DB dominates all uses of DI except UI.
408 /// UI must be in the same block as DI.
409 /// The routine checks that the DI parent and DB are different.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +0000410 bool dominatesAllUses(const Instruction *DI, const Instruction *UI,
411 const BasicBlock *DB) const;
412
Sanjay Patel53523312016-09-12 14:25:46 +0000413 /// Try to replace select with select operand SIOpd in SI-ICmp sequence.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +0000414 bool replacedSelectWithOperand(SelectInst *SI, const ICmpInst *Icmp,
415 const unsigned SIOpd);
416
Yaxun Liuba01ed02017-02-10 21:46:07 +0000417 /// Try to replace instruction \p I with value \p V which are pointers
418 /// in different address space.
419 /// \return true if successful.
420 bool replacePointer(Instruction &I, Value *V);
421
Chris Lattner35522b72010-01-04 07:12:23 +0000422private:
Sanjay Patel2217f752017-01-31 17:25:42 +0000423 bool shouldChangeType(unsigned FromBitWidth, unsigned ToBitWidth) const;
424 bool shouldChangeType(Type *From, Type *To) const;
Chris Lattner2188e402010-01-04 07:37:31 +0000425 Value *dyn_castNegVal(Value *V) const;
David Blaikie87ca1b62015-03-27 20:56:11 +0000426 Type *FindElementAtOffset(PointerType *PtrTy, int64_t Offset,
Chandler Carruthd70cc602014-05-07 17:36:59 +0000427 SmallVectorImpl<Value *> &NewIndices);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000428
Tobias Grosser8ef834c2016-07-19 09:06:08 +0000429 /// Classify whether a cast is worth optimizing.
Chandler Carruth3a622162015-01-20 19:27:58 +0000430 ///
Tobias Grosser8ef834c2016-07-19 09:06:08 +0000431 /// This is a helper to decide whether the simplification of
432 /// logic(cast(A), cast(B)) to cast(logic(A, B)) should be performed.
433 ///
434 /// \param CI The cast we are interested in.
435 ///
436 /// \return true if this cast actually results in any code being generated and
437 /// if it cannot already be eliminated by some other transformation.
438 bool shouldOptimizeCast(CastInst *CI);
Chris Lattner2188e402010-01-04 07:37:31 +0000439
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000440 /// Try to optimize a sequence of instructions checking if an operation
Sanjoy Dasb0984472015-04-08 04:27:22 +0000441 /// on LHS and RHS overflows.
442 ///
Sanjoy Das6f5dca72015-08-28 19:09:31 +0000443 /// If this overflow check is done via one of the overflow check intrinsics,
444 /// then CtxI has to be the call instruction calling that intrinsic. If this
445 /// overflow check is done by arithmetic followed by a compare, then CtxI has
446 /// to be the arithmetic instruction.
447 ///
Sanjoy Dasb0984472015-04-08 04:27:22 +0000448 /// If a simplification is possible, stores the simplified result of the
449 /// operation in OperationResult and result of the overflow check in
450 /// OverflowResult, and return true. If no simplification is possible,
451 /// returns false.
Nikita Popov352f5982019-05-26 11:43:31 +0000452 bool OptimizeOverflowCheck(Instruction::BinaryOps BinaryOp, bool IsSigned,
453 Value *LHS, Value *RHS,
Sanjoy Dasb0984472015-04-08 04:27:22 +0000454 Instruction &CtxI, Value *&OperationResult,
455 Constant *&OverflowResult);
456
Craig Topperc1892ec2019-01-31 17:23:29 +0000457 Instruction *visitCallBase(CallBase &Call);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000458 Instruction *tryOptimizeCall(CallInst *CI);
Craig Topperc1892ec2019-01-31 17:23:29 +0000459 bool transformConstExprCastCall(CallBase &Call);
460 Instruction *transformCallThroughTrampoline(CallBase &Call,
461 IntrinsicInst &Tramp);
Tobias Grosser8ef834c2016-07-19 09:06:08 +0000462
Philip Reames7c8647b2019-04-25 01:18:56 +0000463 Value *simplifyMaskedLoad(IntrinsicInst &II);
Philip Reamese4588bb2019-03-20 18:44:58 +0000464 Instruction *simplifyMaskedStore(IntrinsicInst &II);
Philip Reames7c8647b2019-04-25 01:18:56 +0000465 Instruction *simplifyMaskedGather(IntrinsicInst &II);
Philip Reamese4588bb2019-03-20 18:44:58 +0000466 Instruction *simplifyMaskedScatter(IntrinsicInst &II);
467
Tobias Grosser8ef834c2016-07-19 09:06:08 +0000468 /// Transform (zext icmp) to bitwise / integer operations in order to
469 /// eliminate it.
470 ///
471 /// \param ICI The icmp of the (zext icmp) pair we are interested in.
472 /// \parem CI The zext of the (zext icmp) pair we are interested in.
473 /// \param DoTransform Pass false to just test whether the given (zext icmp)
474 /// would be transformed. Pass true to actually perform the transformation.
475 ///
476 /// \return null if the transformation cannot be performed. If the
477 /// transformation can be performed the new instruction that replaces the
478 /// (zext icmp) pair will be returned (if \p DoTransform is false the
479 /// unmodified \p ICI will be returned in this case).
480 Instruction *transformZExtICmp(ICmpInst *ICI, ZExtInst &CI,
481 bool DoTransform = true);
482
Benjamin Kramer398b8c52011-04-01 20:09:03 +0000483 Instruction *transformSExtICmp(ICmpInst *ICI, Instruction &CI);
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000484
Craig Topper2b1fc322017-05-22 06:25:31 +0000485 bool willNotOverflowSignedAdd(const Value *LHS, const Value *RHS,
486 const Instruction &CxtI) const {
Craig Topperbb973722017-05-15 02:44:08 +0000487 return computeOverflowForSignedAdd(LHS, RHS, &CxtI) ==
488 OverflowResult::NeverOverflows;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000489 }
490
Craig Topper2b1fc322017-05-22 06:25:31 +0000491 bool willNotOverflowUnsignedAdd(const Value *LHS, const Value *RHS,
492 const Instruction &CxtI) const {
Craig Topperbb973722017-05-15 02:44:08 +0000493 return computeOverflowForUnsignedAdd(LHS, RHS, &CxtI) ==
494 OverflowResult::NeverOverflows;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000495 }
496
Sanjay Patel46945b92018-09-14 21:30:07 +0000497 bool willNotOverflowAdd(const Value *LHS, const Value *RHS,
498 const Instruction &CxtI, bool IsSigned) const {
499 return IsSigned ? willNotOverflowSignedAdd(LHS, RHS, CxtI)
500 : willNotOverflowUnsignedAdd(LHS, RHS, CxtI);
501 }
502
Craig Topper2b1fc322017-05-22 06:25:31 +0000503 bool willNotOverflowSignedSub(const Value *LHS, const Value *RHS,
Omer Paparo Bivasfbb83de2018-05-10 19:46:19 +0000504 const Instruction &CxtI) const {
505 return computeOverflowForSignedSub(LHS, RHS, &CxtI) ==
506 OverflowResult::NeverOverflows;
507 }
508
Craig Topper2b1fc322017-05-22 06:25:31 +0000509 bool willNotOverflowUnsignedSub(const Value *LHS, const Value *RHS,
Omer Paparo Bivasfbb83de2018-05-10 19:46:19 +0000510 const Instruction &CxtI) const {
511 return computeOverflowForUnsignedSub(LHS, RHS, &CxtI) ==
512 OverflowResult::NeverOverflows;
513 }
514
Sanjay Patel46945b92018-09-14 21:30:07 +0000515 bool willNotOverflowSub(const Value *LHS, const Value *RHS,
516 const Instruction &CxtI, bool IsSigned) const {
517 return IsSigned ? willNotOverflowSignedSub(LHS, RHS, CxtI)
518 : willNotOverflowUnsignedSub(LHS, RHS, CxtI);
519 }
520
Craig Topper2b1fc322017-05-22 06:25:31 +0000521 bool willNotOverflowSignedMul(const Value *LHS, const Value *RHS,
Omer Paparo Bivasfbb83de2018-05-10 19:46:19 +0000522 const Instruction &CxtI) const {
523 return computeOverflowForSignedMul(LHS, RHS, &CxtI) ==
524 OverflowResult::NeverOverflows;
525 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000526
Craig Topper2b1fc322017-05-22 06:25:31 +0000527 bool willNotOverflowUnsignedMul(const Value *LHS, const Value *RHS,
528 const Instruction &CxtI) const {
Craig Topperbb973722017-05-15 02:44:08 +0000529 return computeOverflowForUnsignedMul(LHS, RHS, &CxtI) ==
530 OverflowResult::NeverOverflows;
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000531 }
532
Sanjay Patel46945b92018-09-14 21:30:07 +0000533 bool willNotOverflowMul(const Value *LHS, const Value *RHS,
534 const Instruction &CxtI, bool IsSigned) const {
535 return IsSigned ? willNotOverflowSignedMul(LHS, RHS, CxtI)
536 : willNotOverflowUnsignedMul(LHS, RHS, CxtI);
537 }
538
Sanjay Patel90a36342018-09-14 22:23:35 +0000539 bool willNotOverflow(BinaryOperator::BinaryOps Opcode, const Value *LHS,
540 const Value *RHS, const Instruction &CxtI,
541 bool IsSigned) const {
542 switch (Opcode) {
543 case Instruction::Add: return willNotOverflowAdd(LHS, RHS, CxtI, IsSigned);
544 case Instruction::Sub: return willNotOverflowSub(LHS, RHS, CxtI, IsSigned);
545 case Instruction::Mul: return willNotOverflowMul(LHS, RHS, CxtI, IsSigned);
546 default: llvm_unreachable("Unexpected opcode for overflow query");
547 }
548 }
549
Nuno Lopesa2f6cec2012-05-22 17:19:09 +0000550 Value *EmitGEPOffset(User *GEP);
Anat Shemer0c95efa2013-04-18 19:35:39 +0000551 Instruction *scalarizePHI(ExtractElementInst &EI, PHINode *PN);
Sanjay Patel40e7ba02016-02-23 16:36:07 +0000552 Instruction *foldCastedBitwiseLogic(BinaryOperator &I);
Sanjay Patel94da1de2017-08-05 15:19:18 +0000553 Instruction *narrowBinOp(TruncInst &Trunc);
Sanjay Patel1d681122018-01-25 16:34:36 +0000554 Instruction *narrowMaskedBinOp(BinaryOperator &And);
Sanjay Patel90a36342018-09-14 22:23:35 +0000555 Instruction *narrowMathIfNoOverflow(BinaryOperator &I);
Sanjay Patelc50e55d2017-08-09 18:37:41 +0000556 Instruction *narrowRotate(TruncInst &Trunc);
Guozhi Weiae541f62016-10-25 20:43:42 +0000557 Instruction *optimizeBitCastFromPhi(CastInst &CI, PHINode *PN);
Chris Lattner35522b72010-01-04 07:12:23 +0000558
Tobias Grosser8ef834c2016-07-19 09:06:08 +0000559 /// Determine if a pair of casts can be replaced by a single cast.
560 ///
561 /// \param CI1 The first of a pair of casts.
562 /// \param CI2 The second of a pair of casts.
563 ///
564 /// \return 0 if the cast pair cannot be eliminated, otherwise returns an
565 /// Instruction::CastOps value for a cast that can replace the pair, casting
566 /// CI1->getSrcTy() to CI2->getDstTy().
567 ///
568 /// \see CastInst::isEliminableCastPair
569 Instruction::CastOps isEliminableCastPair(const CastInst *CI1,
570 const CastInst *CI2);
571
Craig Topperda6ea0d2017-06-16 05:10:37 +0000572 Value *foldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI);
Craig Topperf2d3e6d2017-06-15 19:09:51 +0000573 Value *foldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI);
Roman Lebedev2635c322019-08-13 12:49:06 +0000574 Value *foldXorOfICmps(ICmpInst *LHS, ICmpInst *RHS, BinaryOperator &I);
Sanjay Patel5e456b92017-05-18 20:53:16 +0000575
Sanjay Patel64fc5da2017-09-02 17:53:33 +0000576 /// Optimize (fcmp)&(fcmp) or (fcmp)|(fcmp).
577 /// NOTE: Unlike most of instcombine, this returns a Value which should
578 /// already be inserted into the function.
579 Value *foldLogicOfFCmps(FCmpInst *LHS, FCmpInst *RHS, bool IsAnd);
580
Craig Topperda6ea0d2017-06-16 05:10:37 +0000581 Value *foldAndOrOfICmpsOfAndWithPow2(ICmpInst *LHS, ICmpInst *RHS,
582 bool JoinedByAnd, Instruction &CxtI);
Sanjay Patel3b206302018-10-24 15:17:56 +0000583 Value *matchSelectFromAndOr(Value *A, Value *B, Value *C, Value *D);
584 Value *getSelectCondition(Value *A, Value *B);
585
Nikita Popov884feb12019-03-06 18:30:00 +0000586 Instruction *foldIntrinsicWithOverflowCommon(IntrinsicInst *II);
587
Chris Lattner35522b72010-01-04 07:12:23 +0000588public:
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000589 /// Inserts an instruction \p New before instruction \p Old
Chandler Carruth3a622162015-01-20 19:27:58 +0000590 ///
591 /// Also adds the new instruction to the worklist and returns \p New so that
592 /// it is suitable for use as the return from the visitation patterns.
Chris Lattner35522b72010-01-04 07:12:23 +0000593 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
Craig Toppere73658d2014-04-28 04:05:08 +0000594 assert(New && !New->getParent() &&
Chris Lattner35522b72010-01-04 07:12:23 +0000595 "New instruction already inserted into a basic block!");
596 BasicBlock *BB = Old.getParent();
Duncan P. N. Exon Smith9f8aaf22015-10-13 16:59:33 +0000597 BB->getInstList().insert(Old.getIterator(), New); // Insert inst
Chris Lattner35522b72010-01-04 07:12:23 +0000598 Worklist.Add(New);
599 return New;
600 }
Eli Friedman6efb64e2011-05-19 01:20:42 +0000601
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000602 /// Same as InsertNewInstBefore, but also sets the debug loc.
Eli Friedman6efb64e2011-05-19 01:20:42 +0000603 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) {
604 New->setDebugLoc(Old.getDebugLoc());
605 return InsertNewInstBefore(New, Old);
606 }
607
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000608 /// A combiner-aware RAUW-like routine.
Chandler Carruth3a622162015-01-20 19:27:58 +0000609 ///
610 /// This method is to be used when an instruction is found to be dead,
Sanjay Patelf2ea8a22016-01-06 00:23:12 +0000611 /// replaceable with another preexisting expression. Here we add all uses of
Chandler Carruth3a622162015-01-20 19:27:58 +0000612 /// I to the worklist, replace all uses of I with the new value, then return
613 /// I, so that the inst combiner will know that I was modified.
Sanjay Patel4b198802016-02-01 22:23:39 +0000614 Instruction *replaceInstUsesWith(Instruction &I, Value *V) {
Owen Anderson51b75b8c2015-03-10 05:13:47 +0000615 // If there are no uses to replace, then we return nullptr to indicate that
616 // no changes were made to the program.
617 if (I.use_empty()) return nullptr;
618
Chandler Carruthd70cc602014-05-07 17:36:59 +0000619 Worklist.AddUsersToWorkList(I); // Add all modified instrs to worklist.
Jakub Staszak190db2f2013-01-14 23:16:36 +0000620
Chris Lattner35522b72010-01-04 07:12:23 +0000621 // If we are replacing the instruction with itself, this must be in a
622 // segment of unreachable code, so just clobber the instruction.
Jakub Staszak190db2f2013-01-14 23:16:36 +0000623 if (&I == V)
Chris Lattner35522b72010-01-04 07:12:23 +0000624 V = UndefValue::get(I.getType());
Frits van Bommeld14d9912011-03-27 23:32:31 +0000625
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000626 LLVM_DEBUG(dbgs() << "IC: Replacing " << I << "\n"
627 << " with " << *V << '\n');
Frits van Bommeld14d9912011-03-27 23:32:31 +0000628
Chris Lattner35522b72010-01-04 07:12:23 +0000629 I.replaceAllUsesWith(V);
630 return &I;
631 }
632
Erik Eckstein096ff7d2014-12-11 08:02:30 +0000633 /// Creates a result tuple for an overflow intrinsic \p II with a given
Sanjoy Dasb0984472015-04-08 04:27:22 +0000634 /// \p Result and a constant \p Overflow value.
Erik Eckstein096ff7d2014-12-11 08:02:30 +0000635 Instruction *CreateOverflowTuple(IntrinsicInst *II, Value *Result,
Sanjoy Dasb0984472015-04-08 04:27:22 +0000636 Constant *Overflow) {
637 Constant *V[] = {UndefValue::get(Result->getType()), Overflow};
Erik Eckstein096ff7d2014-12-11 08:02:30 +0000638 StructType *ST = cast<StructType>(II->getType());
639 Constant *Struct = ConstantStruct::get(ST, V);
640 return InsertValueInst::Create(Struct, Result, 0);
641 }
Chandler Carruthb3d03df2015-01-20 21:10:35 +0000642
Philip Reames88679712019-04-17 17:37:58 +0000643 /// Create and insert the idiom we use to indicate a block is unreachable
644 /// without having to rewrite the CFG from within InstCombine.
645 void CreateNonTerminatorUnreachable(Instruction *InsertAt) {
646 auto &Ctx = InsertAt->getContext();
647 new StoreInst(ConstantInt::getTrue(Ctx),
648 UndefValue::get(Type::getInt1PtrTy(Ctx)),
649 InsertAt);
650 }
651
652
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000653 /// Combiner aware instruction erasure.
Chandler Carruth3a622162015-01-20 19:27:58 +0000654 ///
655 /// When dealing with an instruction that has side effects or produces a void
656 /// value, we can't rely on DCE to delete the instruction. Instead, visit
657 /// methods should return the value returned by this function.
Sanjay Patel4b198802016-02-01 22:23:39 +0000658 Instruction *eraseInstFromFunction(Instruction &I) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000659 LLVM_DEBUG(dbgs() << "IC: ERASE " << I << '\n');
Adrian Prantlfa9e84e2017-03-16 20:11:54 +0000660 assert(I.use_empty() && "Cannot erase instruction that is used!");
Adrian Prantl47ea6472017-03-16 21:14:09 +0000661 salvageDebugInfo(I);
662
Chris Lattner35522b72010-01-04 07:12:23 +0000663 // Make sure that we reprocess all operands now that we reduced their
664 // use counts.
665 if (I.getNumOperands() < 8) {
Sanjay Patel8af7fbc32016-01-31 16:34:48 +0000666 for (Use &Operand : I.operands())
667 if (auto *Inst = dyn_cast<Instruction>(Operand))
668 Worklist.Add(Inst);
Chris Lattner35522b72010-01-04 07:12:23 +0000669 }
670 Worklist.Remove(&I);
671 I.eraseFromParent();
672 MadeIRChange = true;
Chandler Carruthd70cc602014-05-07 17:36:59 +0000673 return nullptr; // Don't do anything with FI
Chris Lattner35522b72010-01-04 07:12:23 +0000674 }
Jakub Staszak190db2f2013-01-14 23:16:36 +0000675
Craig Topper2b1fc322017-05-22 06:25:31 +0000676 void computeKnownBits(const Value *V, KnownBits &Known,
677 unsigned Depth, const Instruction *CxtI) const {
Craig Topper26c41592017-05-15 02:30:27 +0000678 llvm::computeKnownBits(V, Known, DL, Depth, &AC, CxtI, &DT);
Chris Lattner35522b72010-01-04 07:12:23 +0000679 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000680
Craig Topper2b1fc322017-05-22 06:25:31 +0000681 KnownBits computeKnownBits(const Value *V, unsigned Depth,
682 const Instruction *CxtI) const {
Craig Topper1a36b7d2017-05-15 06:39:41 +0000683 return llvm::computeKnownBits(V, DL, Depth, &AC, CxtI, &DT);
684 }
Jakub Staszak190db2f2013-01-14 23:16:36 +0000685
Craig Topperd4039f72017-05-25 21:51:12 +0000686 bool isKnownToBeAPowerOfTwo(const Value *V, bool OrZero = false,
687 unsigned Depth = 0,
688 const Instruction *CxtI = nullptr) {
689 return llvm::isKnownToBeAPowerOfTwo(V, DL, OrZero, Depth, &AC, CxtI, &DT);
690 }
691
Craig Topper2b1fc322017-05-22 06:25:31 +0000692 bool MaskedValueIsZero(const Value *V, const APInt &Mask, unsigned Depth = 0,
693 const Instruction *CxtI = nullptr) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000694 return llvm::MaskedValueIsZero(V, Mask, DL, Depth, &AC, CxtI, &DT);
Chris Lattner35522b72010-01-04 07:12:23 +0000695 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000696
Craig Topper2b1fc322017-05-22 06:25:31 +0000697 unsigned ComputeNumSignBits(const Value *Op, unsigned Depth = 0,
698 const Instruction *CxtI = nullptr) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000699 return llvm::ComputeNumSignBits(Op, DL, Depth, &AC, CxtI, &DT);
Chris Lattner35522b72010-01-04 07:12:23 +0000700 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000701
Craig Topper2b1fc322017-05-22 06:25:31 +0000702 OverflowResult computeOverflowForUnsignedMul(const Value *LHS,
703 const Value *RHS,
704 const Instruction *CxtI) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000705 return llvm::computeOverflowForUnsignedMul(LHS, RHS, DL, &AC, CxtI, &DT);
David Majnemer491331a2015-01-02 07:29:43 +0000706 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000707
Omer Paparo Bivasfbb83de2018-05-10 19:46:19 +0000708 OverflowResult computeOverflowForSignedMul(const Value *LHS,
Nikita Popov39f2beb2019-05-26 11:43:37 +0000709 const Value *RHS,
Omer Paparo Bivasfbb83de2018-05-10 19:46:19 +0000710 const Instruction *CxtI) const {
711 return llvm::computeOverflowForSignedMul(LHS, RHS, DL, &AC, CxtI, &DT);
712 }
713
Craig Topper2b1fc322017-05-22 06:25:31 +0000714 OverflowResult computeOverflowForUnsignedAdd(const Value *LHS,
715 const Value *RHS,
716 const Instruction *CxtI) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000717 return llvm::computeOverflowForUnsignedAdd(LHS, RHS, DL, &AC, CxtI, &DT);
David Majnemer5310c1e2015-01-07 00:39:50 +0000718 }
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000719
Craig Topperbb973722017-05-15 02:44:08 +0000720 OverflowResult computeOverflowForSignedAdd(const Value *LHS,
721 const Value *RHS,
722 const Instruction *CxtI) const {
723 return llvm::computeOverflowForSignedAdd(LHS, RHS, DL, &AC, CxtI, &DT);
724 }
Chris Lattner35522b72010-01-04 07:12:23 +0000725
Omer Paparo Bivasfbb83de2018-05-10 19:46:19 +0000726 OverflowResult computeOverflowForUnsignedSub(const Value *LHS,
727 const Value *RHS,
728 const Instruction *CxtI) const {
729 return llvm::computeOverflowForUnsignedSub(LHS, RHS, DL, &AC, CxtI, &DT);
730 }
731
732 OverflowResult computeOverflowForSignedSub(const Value *LHS, const Value *RHS,
733 const Instruction *CxtI) const {
734 return llvm::computeOverflowForSignedSub(LHS, RHS, DL, &AC, CxtI, &DT);
735 }
736
Nikita Popov39f2beb2019-05-26 11:43:37 +0000737 OverflowResult computeOverflow(
738 Instruction::BinaryOps BinaryOp, bool IsSigned,
739 Value *LHS, Value *RHS, Instruction *CxtI) const;
740
Davide Italiano2133bf52017-02-07 17:56:50 +0000741 /// Maximum size of array considered when transforming.
Simon Pilgrimb5696242019-08-28 15:19:49 +0000742 uint64_t MaxArraySizeForCombine = 0;
Davide Italiano2133bf52017-02-07 17:56:50 +0000743
Chris Lattner35522b72010-01-04 07:12:23 +0000744private:
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000745 /// Performs a few simplifications for operators which are associative
Chandler Carruth3a622162015-01-20 19:27:58 +0000746 /// or commutative.
Duncan Sands641baf12010-11-13 15:10:37 +0000747 bool SimplifyAssociativeOrCommutative(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000748
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000749 /// Tries to simplify binary operations which some other binary
Chandler Carruthb3d03df2015-01-20 21:10:35 +0000750 /// operation distributes over.
Chandler Carruth3a622162015-01-20 19:27:58 +0000751 ///
752 /// It does this by either by factorizing out common terms (eg "(A*B)+(A*C)"
753 /// -> "A*(B+C)") or expanding out if this results in simplifications (eg: "A
754 /// & (B | C) -> (A&B) | (A&C)" if this is a win). Returns the simplified
755 /// value, or null if it didn't simplify.
Duncan Sandsfbb9ac32010-12-22 13:36:08 +0000756 Value *SimplifyUsingDistributiveLaws(BinaryOperator &I);
Duncan Sandsadc7771f2010-11-23 14:23:47 +0000757
Sanjoy Das6f1937b2018-04-26 20:52:28 +0000758 /// Tries to simplify add operations using the definition of remainder.
759 ///
760 /// The definition of remainder is X % C = X - (X / C ) * C. The add
761 /// expression X % C0 + (( X / C0 ) % C1) * C0 can be simplified to
762 /// X % (C0 * C1)
763 Value *SimplifyAddWithRemainder(BinaryOperator &I);
764
Quentin Colombetaa103b32017-09-20 17:32:16 +0000765 // Binary Op helper for select operations where the expression can be
766 // efficiently reorganized.
767 Value *SimplifySelectsFeedingBinaryOp(BinaryOperator &I, Value *LHS,
768 Value *RHS);
769
Daniel Berlin2c75c632017-04-26 20:56:07 +0000770 /// This tries to simplify binary operations by factorizing out common terms
771 /// (e. g. "(A*B)+(A*C)" -> "A*(B+C)").
Craig Topper47c8f662017-07-06 18:35:52 +0000772 Value *tryFactorization(BinaryOperator &, Instruction::BinaryOps, Value *,
773 Value *, Value *, Value *);
Daniel Berlin2c75c632017-04-26 20:56:07 +0000774
Anna Thomasd67165c2017-06-23 13:41:45 +0000775 /// Match a select chain which produces one of three values based on whether
776 /// the LHS is less than, equal to, or greater than RHS respectively.
777 /// Return true if we matched a three way compare idiom. The LHS, RHS, Less,
778 /// Equal and Greater values are saved in the matching process and returned to
779 /// the caller.
780 bool matchThreeWayIntCompare(SelectInst *SI, Value *&LHS, Value *&RHS,
781 ConstantInt *&Less, ConstantInt *&Equal,
782 ConstantInt *&Greater);
783
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000784 /// Attempts to replace V with a simpler value based on the demanded
Chandler Carruth3a622162015-01-20 19:27:58 +0000785 /// bits.
Craig Topperb45eabc2017-04-26 16:39:58 +0000786 Value *SimplifyDemandedUseBits(Value *V, APInt DemandedMask, KnownBits &Known,
787 unsigned Depth, Instruction *CxtI);
Craig Topper47596dd2017-03-25 06:52:52 +0000788 bool SimplifyDemandedBits(Instruction *I, unsigned Op,
Craig Topperb45eabc2017-04-26 16:39:58 +0000789 const APInt &DemandedMask, KnownBits &Known,
790 unsigned Depth = 0);
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000791
Craig Topperb0076fe2017-04-12 18:05:21 +0000792 /// Helper routine of SimplifyDemandedUseBits. It computes KnownZero/KnownOne
793 /// bits. It also tries to handle simplifications that can be done based on
794 /// DemandedMask, but without modifying the Instruction.
795 Value *SimplifyMultipleUseDemandedBits(Instruction *I,
796 const APInt &DemandedMask,
Craig Topperb45eabc2017-04-26 16:39:58 +0000797 KnownBits &Known,
Craig Topperb0076fe2017-04-12 18:05:21 +0000798 unsigned Depth, Instruction *CxtI);
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000799
Shuxin Yang63e999e2012-12-04 00:04:54 +0000800 /// Helper routine of SimplifyDemandedUseBits. It tries to simplify demanded
801 /// bit for "r1 = shr x, c1; r2 = shl r1, c2" instruction sequence.
Sanjay Patelcc663b82017-04-20 22:37:01 +0000802 Value *simplifyShrShlDemandedBits(
Sanjay Patelc9485ca2017-04-20 22:33:54 +0000803 Instruction *Shr, const APInt &ShrOp1, Instruction *Shl,
Craig Topperb45eabc2017-04-26 16:39:58 +0000804 const APInt &ShlOp1, const APInt &DemandedMask, KnownBits &Known);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000805
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000806 /// Tries to simplify operands to an integer instruction based on its
Chandler Carruth3a622162015-01-20 19:27:58 +0000807 /// demanded bits.
Chris Lattner35522b72010-01-04 07:12:23 +0000808 bool SimplifyDemandedInstructionBits(Instruction &Inst);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000809
Nicolai Haehnleb29ee702018-06-21 13:37:31 +0000810 Value *simplifyAMDGCNMemoryIntrinsicDemanded(IntrinsicInst *II,
811 APInt DemandedElts,
Nicolai Haehnlea69146e2019-02-04 21:24:19 +0000812 int DmaskIdx = -1);
Nicolai Haehnleb29ee702018-06-21 13:37:31 +0000813
Chris Lattner35522b72010-01-04 07:12:23 +0000814 Value *SimplifyDemandedVectorElts(Value *V, APInt DemandedElts,
Chandler Carruthd70cc602014-05-07 17:36:59 +0000815 APInt &UndefElts, unsigned Depth = 0);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000816
Sanjay Patelbbc6d602018-06-02 16:27:44 +0000817 /// Canonicalize the position of binops relative to shufflevector.
Sanjay Patel79dceb22018-10-03 15:20:58 +0000818 Instruction *foldVectorBinop(BinaryOperator &Inst);
Sanjay Pateldb0938f2017-01-10 23:49:07 +0000819
820 /// Given a binary operator, cast instruction, or select which has a PHI node
821 /// as operand #0, see if we can fold the instruction into the PHI (which is
822 /// only possible if all operands to the PHI are constants).
Craig Topperfb71b7d2017-04-14 19:20:12 +0000823 Instruction *foldOpIntoPhi(Instruction &I, PHINode *PN);
Chris Lattner35522b72010-01-04 07:12:23 +0000824
Sanjay Pateldb0938f2017-01-10 23:49:07 +0000825 /// Given an instruction with a select as one operand and a constant as the
826 /// other operand, try to fold the binary operator into the select arguments.
827 /// This also works for Cast instructions, which obviously do not have a
828 /// second operand.
829 Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI);
830
831 /// This is a convenience wrapper function for the above two functions.
Sanjay Patel8fdd87f2018-02-28 16:36:24 +0000832 Instruction *foldBinOpIntoSelectOrPhi(BinaryOperator &I);
Sanjay Pateldb0938f2017-01-10 23:49:07 +0000833
Sanjay Patel8d810fe2017-10-13 16:43:58 +0000834 Instruction *foldAddWithConstant(BinaryOperator &Add);
835
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000836 /// Try to rotate an operation below a PHI node, using PHI nodes for
Chandler Carruth3a622162015-01-20 19:27:58 +0000837 /// its operands.
Chris Lattner35522b72010-01-04 07:12:23 +0000838 Instruction *FoldPHIArgOpIntoPHI(PHINode &PN);
839 Instruction *FoldPHIArgBinOpIntoPHI(PHINode &PN);
840 Instruction *FoldPHIArgGEPIntoPHI(PHINode &PN);
841 Instruction *FoldPHIArgLoadIntoPHI(PHINode &PN);
Sanjay Patel95334072015-09-27 20:34:31 +0000842 Instruction *FoldPHIArgZextsIntoPHI(PHINode &PN);
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000843
Xinliang David Li4cdc9da2017-10-10 05:07:54 +0000844 /// If an integer typed PHI has only one use which is an IntToPtr operation,
845 /// replace the PHI with an existing pointer typed PHI if it exists. Otherwise
846 /// insert a new pointer typed PHI and replace the original one.
847 Instruction *FoldIntegerTypedPHI(PHINode &PN);
Chris Lattner35522b72010-01-04 07:12:23 +0000848
Dehao Chenf4646272017-10-02 18:13:14 +0000849 /// Helper function for FoldPHIArgXIntoPHI() to set debug location for the
Robert Lougher2428a402016-12-14 17:49:19 +0000850 /// folded operation.
Dehao Chenf4646272017-10-02 18:13:14 +0000851 void PHIArgMergedDebugLoc(Instruction *Inst, PHINode &PN);
Robert Lougher2428a402016-12-14 17:49:19 +0000852
Sanjay Patel43395062016-07-21 18:07:40 +0000853 Instruction *foldGEPICmp(GEPOperator *GEPLHS, Value *RHS,
854 ICmpInst::Predicate Cond, Instruction &I);
Pete Cooper980a9352016-08-12 17:13:28 +0000855 Instruction *foldAllocaCmp(ICmpInst &ICI, const AllocaInst *Alloca,
856 const Value *Other);
Sanjay Patel43395062016-07-21 18:07:40 +0000857 Instruction *foldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP,
858 GlobalVariable *GV, CmpInst &ICI,
859 ConstantInt *AndCst = nullptr);
860 Instruction *foldFCmpIntToFPConst(FCmpInst &I, Instruction *LHSI,
861 Constant *RHSC);
Craig Topperbee74792018-08-20 23:04:25 +0000862 Instruction *foldICmpAddOpConst(Value *X, const APInt &C,
Sanjay Patel43395062016-07-21 18:07:40 +0000863 ICmpInst::Predicate Pred);
Sanjay Patela90ee0e2019-08-20 14:56:44 +0000864 Instruction *foldICmpWithCastOp(ICmpInst &ICI);
Sanjay Patelf58f68c2016-09-10 15:03:44 +0000865
Sanjay Patel3151dec2016-09-12 15:24:31 +0000866 Instruction *foldICmpUsingKnownBits(ICmpInst &Cmp);
Sanjay Patela40bf9ff2018-12-04 15:35:17 +0000867 Instruction *foldICmpWithDominatingICmp(ICmpInst &Cmp);
Sanjay Patel06b127a2016-09-15 14:37:50 +0000868 Instruction *foldICmpWithConstant(ICmpInst &Cmp);
Sanjay Patelf58f68c2016-09-10 15:03:44 +0000869 Instruction *foldICmpInstWithConstant(ICmpInst &Cmp);
Sanjay Patel10494b22016-09-16 16:10:22 +0000870 Instruction *foldICmpInstWithConstantNotInt(ICmpInst &Cmp);
Roman Lebedev23646952019-09-25 19:06:40 +0000871 Instruction *foldICmpBinOp(ICmpInst &Cmp, const SimplifyQuery &SQ);
Sanjay Patel10494b22016-09-16 16:10:22 +0000872 Instruction *foldICmpEquality(ICmpInst &Cmp);
Roman Lebedevbe612ea2019-07-30 15:28:22 +0000873 Instruction *foldIRemByPowerOfTwoToBitTest(ICmpInst &I);
Nikolai Bozhenov0e7ebbc2017-10-16 09:19:21 +0000874 Instruction *foldICmpWithZero(ICmpInst &Cmp);
Sanjay Patela3f4f082016-08-16 17:54:36 +0000875
Roman Lebedev473a0632019-08-29 12:47:20 +0000876 Value *foldUnsignedMultiplicationOverflowCheck(ICmpInst &Cmp);
877
Craig Topper524c44f2017-08-23 05:46:07 +0000878 Instruction *foldICmpSelectConstant(ICmpInst &Cmp, SelectInst *Select,
Anna Thomasd67165c2017-06-23 13:41:45 +0000879 ConstantInt *C);
Craig Topper524c44f2017-08-23 05:46:07 +0000880 Instruction *foldICmpTruncConstant(ICmpInst &Cmp, TruncInst *Trunc,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000881 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000882 Instruction *foldICmpAndConstant(ICmpInst &Cmp, BinaryOperator *And,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000883 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000884 Instruction *foldICmpXorConstant(ICmpInst &Cmp, BinaryOperator *Xor,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000885 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000886 Instruction *foldICmpOrConstant(ICmpInst &Cmp, BinaryOperator *Or,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000887 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000888 Instruction *foldICmpMulConstant(ICmpInst &Cmp, BinaryOperator *Mul,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000889 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000890 Instruction *foldICmpShlConstant(ICmpInst &Cmp, BinaryOperator *Shl,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000891 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000892 Instruction *foldICmpShrConstant(ICmpInst &Cmp, BinaryOperator *Shr,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000893 const APInt &C);
Sanjay Patel80bea342019-09-11 12:04:26 +0000894 Instruction *foldICmpSRemConstant(ICmpInst &Cmp, BinaryOperator *UDiv,
895 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000896 Instruction *foldICmpUDivConstant(ICmpInst &Cmp, BinaryOperator *UDiv,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000897 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000898 Instruction *foldICmpDivConstant(ICmpInst &Cmp, BinaryOperator *Div,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000899 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000900 Instruction *foldICmpSubConstant(ICmpInst &Cmp, BinaryOperator *Sub,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000901 const APInt &C);
Sanjay Patelc9196c42016-08-22 21:24:29 +0000902 Instruction *foldICmpAddConstant(ICmpInst &Cmp, BinaryOperator *Add,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000903 const APInt &C);
Sanjay Pateld3c7bb282016-08-26 16:42:33 +0000904 Instruction *foldICmpAndConstConst(ICmpInst &Cmp, BinaryOperator *And,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000905 const APInt &C1);
Sanjay Patel14e0e182016-08-26 18:28:46 +0000906 Instruction *foldICmpAndShift(ICmpInst &Cmp, BinaryOperator *And,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000907 const APInt &C1, const APInt &C2);
Sanjay Patel8da42cc2016-09-15 22:26:31 +0000908 Instruction *foldICmpShrConstConst(ICmpInst &I, Value *ShAmt, const APInt &C1,
909 const APInt &C2);
910 Instruction *foldICmpShlConstConst(ICmpInst &I, Value *ShAmt, const APInt &C1,
911 const APInt &C2);
Sanjay Patela3f4f082016-08-16 17:54:36 +0000912
Sanjay Patelf58f68c2016-09-10 15:03:44 +0000913 Instruction *foldICmpBinOpEqualityWithConstant(ICmpInst &Cmp,
914 BinaryOperator *BO,
Craig Topper8ed1aa92017-10-03 05:31:07 +0000915 const APInt &C);
Nikita Popov6515db22019-01-19 09:56:01 +0000916 Instruction *foldICmpIntrinsicWithConstant(ICmpInst &ICI, IntrinsicInst *II,
917 const APInt &C);
918 Instruction *foldICmpEqIntrinsicWithConstant(ICmpInst &ICI, IntrinsicInst *II,
919 const APInt &C);
Sanjay Patel43395062016-07-21 18:07:40 +0000920
Sanjay Patel453ceff2016-09-29 22:18:30 +0000921 // Helpers of visitSelectInst().
Sanjay Patelf7b851f2016-09-30 19:49:22 +0000922 Instruction *foldSelectExtConst(SelectInst &Sel);
Sanjay Patel453ceff2016-09-29 22:18:30 +0000923 Instruction *foldSelectOpOp(SelectInst &SI, Instruction *TI, Instruction *FI);
924 Instruction *foldSelectIntoOp(SelectInst &SI, Value *, Value *);
925 Instruction *foldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1,
926 Value *A, Value *B, Instruction &Outer,
927 SelectPatternFlavor SPF2, Value *C);
928 Instruction *foldSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI);
929
Craig Topper70e4f432017-04-02 17:57:30 +0000930 Instruction *OptAndOp(BinaryOperator *Op, ConstantInt *OpRHS,
Chris Lattner35522b72010-01-04 07:12:23 +0000931 ConstantInt *AndRHS, BinaryOperator &TheAnd);
Jakub Staszak190db2f2013-01-14 23:16:36 +0000932
Sanjay Patel85d79742016-08-31 19:49:56 +0000933 Value *insertRangeTest(Value *V, const APInt &Lo, const APInt &Hi,
934 bool isSigned, bool Inside);
Chris Lattner35522b72010-01-04 07:12:23 +0000935 Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocaInst &AI);
Sanjay Patel4a12aa92018-11-10 20:29:25 +0000936 bool mergeStoreIntoSuccessor(StoreInst &SI);
Igor Laevsky900ffa32017-02-08 14:32:04 +0000937
Sanjay Patel60728422018-11-14 16:03:36 +0000938 /// Given an 'or' instruction, check to see if it is part of a bswap idiom.
939 /// If so, return the equivalent bswap intrinsic.
940 Instruction *matchBSwap(BinaryOperator &Or);
941
Daniel Neilson8f30ec62018-05-11 14:30:02 +0000942 Instruction *SimplifyAnyMemTransfer(AnyMemTransferInst *MI);
Daniel Neilsonf6651d42018-05-11 20:04:50 +0000943 Instruction *SimplifyAnyMemSet(AnyMemSetInst *MI);
Chris Lattner35522b72010-01-04 07:12:23 +0000944
Chris Lattner229907c2011-07-18 04:54:35 +0000945 Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned);
Duncan Sands533c8ae2012-10-23 08:28:26 +0000946
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000947 /// Returns a value X such that Val = X * Scale, or null if none.
Chandler Carruth3a622162015-01-20 19:27:58 +0000948 ///
949 /// If the multiplication is known not to overflow then NoSignedWrap is set.
Duncan Sands533c8ae2012-10-23 08:28:26 +0000950 Value *Descale(Value *Val, APInt Scale, bool &NoSignedWrap);
Chris Lattner35522b72010-01-04 07:12:23 +0000951};
952
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000953} // end namespace llvm
Chris Lattner35522b72010-01-04 07:12:23 +0000954
Chandler Carruth964daaa2014-04-22 02:55:47 +0000955#undef DEBUG_TYPE
956
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000957#endif // LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H