Chandler Carruth | a917458 | 2015-01-22 05:25:13 +0000 | [diff] [blame] | 1 | //===- InstCombineInternal.h - InstCombine pass internals -------*- C++ -*-===// |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // 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 Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 8 | // |
Chandler Carruth | a917458 | 2015-01-22 05:25:13 +0000 | [diff] [blame] | 9 | /// \file |
| 10 | /// |
| 11 | /// This file provides internal interfaces used to implement the InstCombine. |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 12 | // |
Chandler Carruth | a917458 | 2015-01-22 05:25:13 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 14 | |
Chandler Carruth | a917458 | 2015-01-22 05:25:13 +0000 | [diff] [blame] | 15 | #ifndef LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H |
| 16 | #define LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 17 | |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/ArrayRef.h" |
Bjorn Steinbrink | 8350534 | 2015-07-10 06:55:49 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/AliasAnalysis.h" |
Daniel Berlin | 2c75c63 | 2017-04-26 20:56:07 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/InstructionSimplify.h" |
Chandler Carruth | 452a007 | 2014-03-04 11:59:06 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/TargetFolder.h" |
Chandler Carruth | 802d755 | 2012-12-04 07:12:27 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/ValueTracking.h" |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 23 | #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 Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 28 | #include "llvm/IR/IRBuilder.h" |
Chandler Carruth | 7da14f1 | 2014-03-06 03:23:41 +0000 | [diff] [blame] | 29 | #include "llvm/IR/InstVisitor.h" |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 30 | #include "llvm/IR/InstrTypes.h" |
| 31 | #include "llvm/IR/Instruction.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 32 | #include "llvm/IR/IntrinsicInst.h" |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 33 | #include "llvm/IR/Intrinsics.h" |
David Green | 1e44c3b | 2018-10-02 09:48:34 +0000 | [diff] [blame] | 34 | #include "llvm/IR/PatternMatch.h" |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 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 Topper | 1a36b7d | 2017-05-15 06:39:41 +0000 | [diff] [blame] | 40 | #include "llvm/Support/KnownBits.h" |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 41 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | 83ba269 | 2015-01-24 04:19:17 +0000 | [diff] [blame] | 42 | #include "llvm/Transforms/InstCombine/InstCombineWorklist.h" |
David Green | 1e44c3b | 2018-10-02 09:48:34 +0000 | [diff] [blame] | 43 | #include "llvm/Transforms/Utils/Local.h" |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 44 | #include <cassert> |
| 45 | #include <cstdint> |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 46 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 47 | #define DEBUG_TYPE "instcombine" |
| 48 | |
David Green | 1e44c3b | 2018-10-02 09:48:34 +0000 | [diff] [blame] | 49 | using namespace llvm::PatternMatch; |
| 50 | |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 51 | namespace llvm { |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 52 | |
| 53 | class APInt; |
| 54 | class AssumptionCache; |
Hiroshi Yamauchi | 09e539f | 2019-04-15 16:49:00 +0000 | [diff] [blame] | 55 | class BlockFrequencyInfo; |
Chandler Carruth | d70cc60 | 2014-05-07 17:36:59 +0000 | [diff] [blame] | 56 | class DataLayout; |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 57 | class DominatorTree; |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 58 | class GEPOperator; |
| 59 | class GlobalVariable; |
| 60 | class LoopInfo; |
Adam Nemet | ea06e6e | 2017-07-26 19:03:18 +0000 | [diff] [blame] | 61 | class OptimizationRemarkEmitter; |
Hiroshi Yamauchi | 09e539f | 2019-04-15 16:49:00 +0000 | [diff] [blame] | 62 | class ProfileSummaryInfo; |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 63 | class TargetLibraryInfo; |
| 64 | class User; |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 65 | |
Sanjay Patel | 73fc8dd | 2017-02-03 21:43:34 +0000 | [diff] [blame] | 66 | /// 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 Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 75 | /// |
| 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 Patel | 73fc8dd | 2017-02-03 21:43:34 +0000 | [diff] [blame] | 81 | /// 4 -> Cast and (f)neg/not instructions |
| 82 | /// 5 -> Other instructions |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 83 | static inline unsigned getComplexity(Value *V) { |
| 84 | if (isa<Instruction>(V)) { |
Sanjay Patel | 47579b2 | 2018-10-13 16:15:37 +0000 | [diff] [blame] | 85 | if (isa<CastInst>(V) || match(V, m_Neg(m_Value())) || |
| 86 | match(V, m_Not(m_Value())) || match(V, m_FNeg(m_Value()))) |
Sanjay Patel | 73fc8dd | 2017-02-03 21:43:34 +0000 | [diff] [blame] | 87 | return 4; |
| 88 | return 5; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 89 | } |
Chandler Carruth | d70cc60 | 2014-05-07 17:36:59 +0000 | [diff] [blame] | 90 | if (isa<Argument>(V)) |
| 91 | return 3; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 92 | return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2; |
| 93 | } |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 94 | |
Sanjay Patel | b2e7003 | 2017-05-17 14:21:19 +0000 | [diff] [blame] | 95 | /// 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. |
| 99 | static 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 Lebedev | 0c73be5 | 2019-10-07 20:53:08 +0000 | [diff] [blame] | 116 | /// Given an exploded icmp instruction, return true if the comparison only |
| 117 | /// checks the sign bit. If it only checks the sign bit, set TrueIfSigned if the |
| 118 | /// result of the comparison is true when the input value is signed. |
| 119 | inline bool isSignBitCheck(ICmpInst::Predicate Pred, const APInt &RHS, |
| 120 | bool &TrueIfSigned) { |
| 121 | switch (Pred) { |
| 122 | case ICmpInst::ICMP_SLT: // True if LHS s< 0 |
| 123 | TrueIfSigned = true; |
| 124 | return RHS.isNullValue(); |
| 125 | case ICmpInst::ICMP_SLE: // True if LHS s<= -1 |
| 126 | TrueIfSigned = true; |
| 127 | return RHS.isAllOnesValue(); |
| 128 | case ICmpInst::ICMP_SGT: // True if LHS s> -1 |
| 129 | TrueIfSigned = false; |
| 130 | return RHS.isAllOnesValue(); |
| 131 | case ICmpInst::ICMP_SGE: // True if LHS s>= 0 |
| 132 | TrueIfSigned = false; |
| 133 | return RHS.isNullValue(); |
| 134 | case ICmpInst::ICMP_UGT: |
| 135 | // True if LHS u> RHS and RHS == sign-bit-mask - 1 |
| 136 | TrueIfSigned = true; |
| 137 | return RHS.isMaxSignedValue(); |
| 138 | case ICmpInst::ICMP_UGE: |
| 139 | // True if LHS u>= RHS and RHS == sign-bit-mask (2^7, 2^15, 2^31, etc) |
| 140 | TrueIfSigned = true; |
| 141 | return RHS.isMinSignedValue(); |
| 142 | case ICmpInst::ICMP_ULT: |
| 143 | // True if LHS u< RHS and RHS == sign-bit-mask (2^7, 2^15, 2^31, etc) |
| 144 | TrueIfSigned = false; |
| 145 | return RHS.isMinSignedValue(); |
| 146 | case ICmpInst::ICMP_ULE: |
| 147 | // True if LHS u<= RHS and RHS == sign-bit-mask - 1 |
| 148 | TrueIfSigned = false; |
| 149 | return RHS.isMaxSignedValue(); |
| 150 | default: |
| 151 | return false; |
| 152 | } |
| 153 | } |
| 154 | |
Roman Lebedev | 32f1e1a | 2019-08-14 09:57:20 +0000 | [diff] [blame] | 155 | llvm::Optional<std::pair<CmpInst::Predicate, Constant *>> |
| 156 | getFlippedStrictnessPredicateAndConstant(CmpInst::Predicate Pred, Constant *C); |
| 157 | |
Sanjay Patel | e800df8e | 2017-06-22 15:28:01 +0000 | [diff] [blame] | 158 | /// Return the source operand of a potentially bitcasted value while optionally |
| 159 | /// checking if it has one use. If there is no bitcast or the one use check is |
| 160 | /// not met, return the input value itself. |
| 161 | static inline Value *peekThroughBitcast(Value *V, bool OneUseOnly = false) { |
| 162 | if (auto *BitCast = dyn_cast<BitCastInst>(V)) |
| 163 | if (!OneUseOnly || BitCast->hasOneUse()) |
| 164 | return BitCast->getOperand(0); |
| 165 | |
| 166 | // V is not a bitcast or V has more than one use and OneUseOnly is true. |
| 167 | return V; |
| 168 | } |
| 169 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 170 | /// Add one to a Constant |
Benjamin Kramer | 970f495 | 2014-01-19 16:56:10 +0000 | [diff] [blame] | 171 | static inline Constant *AddOne(Constant *C) { |
| 172 | return ConstantExpr::getAdd(C, ConstantInt::get(C->getType(), 1)); |
| 173 | } |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 174 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 175 | /// Subtract one from a Constant |
Benjamin Kramer | 970f495 | 2014-01-19 16:56:10 +0000 | [diff] [blame] | 176 | static inline Constant *SubOne(Constant *C) { |
| 177 | return ConstantExpr::getSub(C, ConstantInt::get(C->getType(), 1)); |
| 178 | } |
| 179 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 180 | /// Return true if the specified value is free to invert (apply ~ to). |
Sanjoy Das | 82ea3d4 | 2015-02-24 00:08:41 +0000 | [diff] [blame] | 181 | /// This happens in cases where the ~ can be eliminated. If WillInvertAllUses |
| 182 | /// is true, work under the assumption that the caller intends to remove all |
| 183 | /// uses of V and only keep uses of ~V. |
Roman Lebedev | 2635c32 | 2019-08-13 12:49:06 +0000 | [diff] [blame] | 184 | /// |
| 185 | /// See also: canFreelyInvertAllUsersOf() |
Roman Lebedev | 0410489 | 2019-08-13 12:49:16 +0000 | [diff] [blame] | 186 | static inline bool isFreeToInvert(Value *V, bool WillInvertAllUses) { |
Sanjoy Das | 82ea3d4 | 2015-02-24 00:08:41 +0000 | [diff] [blame] | 187 | // ~(~(X)) -> X. |
Sanjay Patel | 95790c5 | 2018-10-23 16:54:28 +0000 | [diff] [blame] | 188 | if (match(V, m_Not(m_Value()))) |
Sanjoy Das | 82ea3d4 | 2015-02-24 00:08:41 +0000 | [diff] [blame] | 189 | return true; |
| 190 | |
| 191 | // Constants can be considered to be not'ed values. |
Roman Lebedev | 3a94765 | 2019-07-22 22:09:24 +0000 | [diff] [blame] | 192 | if (match(V, m_AnyIntegralConstant())) |
Sanjoy Das | 82ea3d4 | 2015-02-24 00:08:41 +0000 | [diff] [blame] | 193 | return true; |
| 194 | |
| 195 | // Compares can be inverted if all of their uses are being modified to use the |
| 196 | // ~V. |
| 197 | if (isa<CmpInst>(V)) |
| 198 | return WillInvertAllUses; |
| 199 | |
| 200 | // If `V` is of the form `A + Constant` then `-1 - V` can be folded into `(-1 |
| 201 | // - Constant) - A` if we are willing to invert all of the uses. |
| 202 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(V)) |
| 203 | if (BO->getOpcode() == Instruction::Add || |
| 204 | BO->getOpcode() == Instruction::Sub) |
| 205 | if (isa<Constant>(BO->getOperand(0)) || isa<Constant>(BO->getOperand(1))) |
| 206 | return WillInvertAllUses; |
| 207 | |
David Green | 1e44c3b | 2018-10-02 09:48:34 +0000 | [diff] [blame] | 208 | // Selects with invertible operands are freely invertible |
| 209 | if (match(V, m_Select(m_Value(), m_Not(m_Value()), m_Not(m_Value())))) |
| 210 | return WillInvertAllUses; |
| 211 | |
Sanjoy Das | 82ea3d4 | 2015-02-24 00:08:41 +0000 | [diff] [blame] | 212 | return false; |
| 213 | } |
| 214 | |
Roman Lebedev | 2635c32 | 2019-08-13 12:49:06 +0000 | [diff] [blame] | 215 | /// Given i1 V, can every user of V be freely adapted if V is changed to !V ? |
| 216 | /// |
Roman Lebedev | 0410489 | 2019-08-13 12:49:16 +0000 | [diff] [blame] | 217 | /// See also: isFreeToInvert() |
Roman Lebedev | 2635c32 | 2019-08-13 12:49:06 +0000 | [diff] [blame] | 218 | static inline bool canFreelyInvertAllUsersOf(Value *V, Value *IgnoredUser) { |
| 219 | // Look at every user of V. |
| 220 | for (User *U : V->users()) { |
| 221 | if (U == IgnoredUser) |
| 222 | continue; // Don't consider this user. |
| 223 | |
| 224 | auto *I = cast<Instruction>(U); |
| 225 | switch (I->getOpcode()) { |
| 226 | case Instruction::Select: |
| 227 | case Instruction::Br: |
| 228 | break; // Free to invert by swapping true/false values/destinations. |
| 229 | case Instruction::Xor: // Can invert 'xor' if it's a 'not', by ignoring it. |
| 230 | if (!match(I, m_Not(m_Value()))) |
| 231 | return false; // Not a 'not'. |
| 232 | break; |
| 233 | default: |
| 234 | return false; // Don't know, likely not freely invertible. |
| 235 | } |
| 236 | // So far all users were free to invert... |
| 237 | } |
| 238 | return true; // Can freely invert all users! |
| 239 | } |
| 240 | |
Sanjay Patel | a627253 | 2018-07-09 16:16:51 +0000 | [diff] [blame] | 241 | /// Some binary operators require special handling to avoid poison and undefined |
Sanjay Patel | 3e5c051 | 2018-06-21 14:59:35 +0000 | [diff] [blame] | 242 | /// behavior. If a constant vector has undef elements, replace those undefs with |
Sanjay Patel | 69faf464 | 2018-07-09 23:22:47 +0000 | [diff] [blame] | 243 | /// identity constants if possible because those are always safe to execute. |
| 244 | /// If no identity constant exists, replace undef with some other safe constant. |
Sanjay Patel | a627253 | 2018-07-09 16:16:51 +0000 | [diff] [blame] | 245 | static inline Constant *getSafeVectorConstantForBinop( |
Sanjay Patel | 69faf464 | 2018-07-09 23:22:47 +0000 | [diff] [blame] | 246 | BinaryOperator::BinaryOps Opcode, Constant *In, bool IsRHSConstant) { |
| 247 | assert(In->getType()->isVectorTy() && "Not expecting scalars here"); |
Sanjay Patel | 3e5c051 | 2018-06-21 14:59:35 +0000 | [diff] [blame] | 248 | |
Sanjay Patel | 69faf464 | 2018-07-09 23:22:47 +0000 | [diff] [blame] | 249 | Type *EltTy = In->getType()->getVectorElementType(); |
| 250 | auto *SafeC = ConstantExpr::getBinOpIdentity(Opcode, EltTy, IsRHSConstant); |
| 251 | if (!SafeC) { |
| 252 | // TODO: Should this be available as a constant utility function? It is |
| 253 | // similar to getBinOpAbsorber(). |
| 254 | if (IsRHSConstant) { |
| 255 | switch (Opcode) { |
| 256 | case Instruction::SRem: // X % 1 = 0 |
| 257 | case Instruction::URem: // X %u 1 = 0 |
| 258 | SafeC = ConstantInt::get(EltTy, 1); |
| 259 | break; |
| 260 | case Instruction::FRem: // X % 1.0 (doesn't simplify, but it is safe) |
| 261 | SafeC = ConstantFP::get(EltTy, 1.0); |
| 262 | break; |
| 263 | default: |
| 264 | llvm_unreachable("Only rem opcodes have no identity constant for RHS"); |
| 265 | } |
| 266 | } else { |
| 267 | switch (Opcode) { |
| 268 | case Instruction::Shl: // 0 << X = 0 |
| 269 | case Instruction::LShr: // 0 >>u X = 0 |
| 270 | case Instruction::AShr: // 0 >> X = 0 |
| 271 | case Instruction::SDiv: // 0 / X = 0 |
| 272 | case Instruction::UDiv: // 0 /u X = 0 |
| 273 | case Instruction::SRem: // 0 % X = 0 |
| 274 | case Instruction::URem: // 0 %u X = 0 |
| 275 | case Instruction::Sub: // 0 - X (doesn't simplify, but it is safe) |
| 276 | case Instruction::FSub: // 0.0 - X (doesn't simplify, but it is safe) |
| 277 | case Instruction::FDiv: // 0.0 / X (doesn't simplify, but it is safe) |
| 278 | case Instruction::FRem: // 0.0 % X = 0 |
| 279 | SafeC = Constant::getNullValue(EltTy); |
| 280 | break; |
| 281 | default: |
| 282 | llvm_unreachable("Expected to find identity constant for opcode"); |
| 283 | } |
| 284 | } |
| 285 | } |
| 286 | assert(SafeC && "Must have safe constant for binop"); |
| 287 | unsigned NumElts = In->getType()->getVectorNumElements(); |
Sanjay Patel | 3e5c051 | 2018-06-21 14:59:35 +0000 | [diff] [blame] | 288 | SmallVector<Constant *, 16> Out(NumElts); |
| 289 | for (unsigned i = 0; i != NumElts; ++i) { |
| 290 | Constant *C = In->getAggregateElement(i); |
Sanjay Patel | 69faf464 | 2018-07-09 23:22:47 +0000 | [diff] [blame] | 291 | Out[i] = isa<UndefValue>(C) ? SafeC : C; |
Sanjay Patel | 3e5c051 | 2018-06-21 14:59:35 +0000 | [diff] [blame] | 292 | } |
| 293 | return ConstantVector::get(Out); |
| 294 | } |
| 295 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 296 | /// The core instruction combiner logic. |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 297 | /// |
| 298 | /// This class provides both the logic to recursively visit instructions and |
Craig Topper | 28ec346 | 2016-12-28 03:12:42 +0000 | [diff] [blame] | 299 | /// combine them. |
Duncan Sands | 6c5e435 | 2010-05-11 20:16:09 +0000 | [diff] [blame] | 300 | class LLVM_LIBRARY_VISIBILITY InstCombiner |
Chandler Carruth | 1edb9d6 | 2015-01-20 22:44:35 +0000 | [diff] [blame] | 301 | : public InstVisitor<InstCombiner, Instruction *> { |
Chandler Carruth | df5747a | 2015-01-21 11:38:17 +0000 | [diff] [blame] | 302 | // FIXME: These members shouldn't be public. |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 303 | public: |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 304 | /// A worklist of the instructions that need to be simplified. |
Chandler Carruth | df5747a | 2015-01-21 11:38:17 +0000 | [diff] [blame] | 305 | InstCombineWorklist &Worklist; |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 306 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 307 | /// An IRBuilder that automatically inserts new instructions into the |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 308 | /// worklist. |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 309 | using BuilderTy = IRBuilder<TargetFolder, IRBuilderCallbackInserter>; |
Craig Topper | bb4069e | 2017-07-07 23:16:26 +0000 | [diff] [blame] | 310 | BuilderTy &Builder; |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 311 | |
Chandler Carruth | df5747a | 2015-01-21 11:38:17 +0000 | [diff] [blame] | 312 | private: |
| 313 | // Mode in which we are running the combiner. |
| 314 | const bool MinimizeSize; |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 315 | |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 316 | /// Enable combines that trigger rarely but are costly in compiletime. |
| 317 | const bool ExpensiveCombines; |
Chandler Carruth | df5747a | 2015-01-21 11:38:17 +0000 | [diff] [blame] | 318 | |
Bjorn Steinbrink | 8350534 | 2015-07-10 06:55:49 +0000 | [diff] [blame] | 319 | AliasAnalysis *AA; |
| 320 | |
Chandler Carruth | df5747a | 2015-01-21 11:38:17 +0000 | [diff] [blame] | 321 | // Required analyses. |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 322 | AssumptionCache &AC; |
Justin Bogner | 9979840 | 2016-08-05 01:06:44 +0000 | [diff] [blame] | 323 | TargetLibraryInfo &TLI; |
| 324 | DominatorTree &DT; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 325 | const DataLayout &DL; |
Daniel Berlin | 2c75c63 | 2017-04-26 20:56:07 +0000 | [diff] [blame] | 326 | const SimplifyQuery SQ; |
Adam Nemet | ea06e6e | 2017-07-26 19:03:18 +0000 | [diff] [blame] | 327 | OptimizationRemarkEmitter &ORE; |
Hiroshi Yamauchi | 09e539f | 2019-04-15 16:49:00 +0000 | [diff] [blame] | 328 | BlockFrequencyInfo *BFI; |
| 329 | ProfileSummaryInfo *PSI; |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 330 | |
Chandler Carruth | df5747a | 2015-01-21 11:38:17 +0000 | [diff] [blame] | 331 | // Optional analyses. When non-null, these can both be used to do better |
| 332 | // combining and will be updated to reflect any changes. |
Chandler Carruth | df5747a | 2015-01-21 11:38:17 +0000 | [diff] [blame] | 333 | LoopInfo *LI; |
| 334 | |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 335 | bool MadeIRChange = false; |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 336 | |
| 337 | public: |
Craig Topper | bb4069e | 2017-07-07 23:16:26 +0000 | [diff] [blame] | 338 | InstCombiner(InstCombineWorklist &Worklist, BuilderTy &Builder, |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 339 | bool MinimizeSize, bool ExpensiveCombines, AliasAnalysis *AA, |
Daniel Berlin | 2c75c63 | 2017-04-26 20:56:07 +0000 | [diff] [blame] | 340 | AssumptionCache &AC, TargetLibraryInfo &TLI, DominatorTree &DT, |
Hiroshi Yamauchi | 09e539f | 2019-04-15 16:49:00 +0000 | [diff] [blame] | 341 | OptimizationRemarkEmitter &ORE, BlockFrequencyInfo *BFI, |
| 342 | ProfileSummaryInfo *PSI, const DataLayout &DL, LoopInfo *LI) |
Chandler Carruth | df5747a | 2015-01-21 11:38:17 +0000 | [diff] [blame] | 343 | : Worklist(Worklist), Builder(Builder), MinimizeSize(MinimizeSize), |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 344 | ExpensiveCombines(ExpensiveCombines), AA(AA), AC(AC), TLI(TLI), DT(DT), |
Hiroshi Yamauchi | 09e539f | 2019-04-15 16:49:00 +0000 | [diff] [blame] | 345 | DL(DL), SQ(DL, &TLI, &DT, &AC), ORE(ORE), BFI(BFI), PSI(PSI), LI(LI) {} |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 346 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 347 | /// Run the combiner over the entire worklist until it is empty. |
Chandler Carruth | df5747a | 2015-01-21 11:38:17 +0000 | [diff] [blame] | 348 | /// |
| 349 | /// \returns true if the IR is changed. |
| 350 | bool run(); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 351 | |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 352 | AssumptionCache &getAssumptionCache() const { return AC; } |
| 353 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 354 | const DataLayout &getDataLayout() const { return DL; } |
Chandler Carruth | b3d03df | 2015-01-20 21:10:35 +0000 | [diff] [blame] | 355 | |
Justin Bogner | 9979840 | 2016-08-05 01:06:44 +0000 | [diff] [blame] | 356 | DominatorTree &getDominatorTree() const { return DT; } |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 357 | |
Chandler Carruth | 5175b9a | 2015-01-20 08:35:24 +0000 | [diff] [blame] | 358 | LoopInfo *getLoopInfo() const { return LI; } |
| 359 | |
Justin Bogner | 9979840 | 2016-08-05 01:06:44 +0000 | [diff] [blame] | 360 | TargetLibraryInfo &getTargetLibraryInfo() const { return TLI; } |
Chad Rosier | 43a3306 | 2011-12-02 01:26:24 +0000 | [diff] [blame] | 361 | |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 362 | // Visitation implementation - Implement instruction combining for different |
| 363 | // instruction types. The semantics are as follows: |
| 364 | // Return Value: |
| 365 | // null - No change was made |
| 366 | // I - Change was made, I is still valid, I may be dead though |
| 367 | // otherwise - Change was made, replace I with returned instruction |
| 368 | // |
Cameron McInally | e75412a | 2019-05-10 20:01:04 +0000 | [diff] [blame] | 369 | Instruction *visitFNeg(UnaryOperator &I); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 370 | Instruction *visitAdd(BinaryOperator &I); |
| 371 | Instruction *visitFAdd(BinaryOperator &I); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 372 | Value *OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 373 | Instruction *visitSub(BinaryOperator &I); |
| 374 | Instruction *visitFSub(BinaryOperator &I); |
| 375 | Instruction *visitMul(BinaryOperator &I); |
| 376 | Instruction *visitFMul(BinaryOperator &I); |
| 377 | Instruction *visitURem(BinaryOperator &I); |
| 378 | Instruction *visitSRem(BinaryOperator &I); |
| 379 | Instruction *visitFRem(BinaryOperator &I); |
Sanjay Patel | ae2e3a4 | 2017-10-06 23:20:16 +0000 | [diff] [blame] | 380 | bool simplifyDivRemOfSelectWithZeroOp(BinaryOperator &I); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 381 | Instruction *commonRemTransforms(BinaryOperator &I); |
| 382 | Instruction *commonIRemTransforms(BinaryOperator &I); |
| 383 | Instruction *commonDivTransforms(BinaryOperator &I); |
| 384 | Instruction *commonIDivTransforms(BinaryOperator &I); |
| 385 | Instruction *visitUDiv(BinaryOperator &I); |
| 386 | Instruction *visitSDiv(BinaryOperator &I); |
Frits van Bommel | 2a55951 | 2011-01-29 17:50:27 +0000 | [diff] [blame] | 387 | Instruction *visitFDiv(BinaryOperator &I); |
Erik Eckstein | d181752 | 2014-12-03 10:39:15 +0000 | [diff] [blame] | 388 | Value *simplifyRangeCheck(ICmpInst *Cmp0, ICmpInst *Cmp1, bool Inverted); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 389 | Instruction *visitAnd(BinaryOperator &I); |
Chandler Carruth | d70cc60 | 2014-05-07 17:36:59 +0000 | [diff] [blame] | 390 | Instruction *visitOr(BinaryOperator &I); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 391 | Instruction *visitXor(BinaryOperator &I); |
| 392 | Instruction *visitShl(BinaryOperator &I); |
Roman Lebedev | 49483a3 | 2019-10-20 19:38:50 +0000 | [diff] [blame] | 393 | Value *reassociateShiftAmtsOfTwoSameDirectionShifts( |
| 394 | BinaryOperator *Sh0, const SimplifyQuery &SQ, |
| 395 | bool AnalyzeForSignBitExtraction = false); |
Roman Lebedev | 7015a5c | 2019-10-20 20:52:06 +0000 | [diff] [blame] | 396 | Instruction *canonicalizeCondSignextOfHighBitExtractToSignextHighBitExtract( |
| 397 | BinaryOperator &I); |
Roman Lebedev | ae3315a | 2019-10-02 23:02:12 +0000 | [diff] [blame] | 398 | Instruction *foldVariableSignZeroExtensionOfVariableHighBitExtract( |
| 399 | BinaryOperator &OldAShr); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 400 | Instruction *visitAShr(BinaryOperator &I); |
| 401 | Instruction *visitLShr(BinaryOperator &I); |
| 402 | Instruction *commonShiftTransforms(BinaryOperator &I); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 403 | Instruction *visitFCmpInst(FCmpInst &I); |
| 404 | Instruction *visitICmpInst(ICmpInst &I); |
Matt Arsenault | fed3dc8 | 2014-04-14 21:50:37 +0000 | [diff] [blame] | 405 | Instruction *FoldShiftByConstant(Value *Op0, Constant *Op1, |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 406 | BinaryOperator &I); |
| 407 | Instruction *commonCastTransforms(CastInst &CI); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 408 | Instruction *commonPointerCastTransforms(CastInst &CI); |
| 409 | Instruction *visitTrunc(TruncInst &CI); |
| 410 | Instruction *visitZExt(ZExtInst &CI); |
| 411 | Instruction *visitSExt(SExtInst &CI); |
| 412 | Instruction *visitFPTrunc(FPTruncInst &CI); |
| 413 | Instruction *visitFPExt(CastInst &CI); |
| 414 | Instruction *visitFPToUI(FPToUIInst &FI); |
| 415 | Instruction *visitFPToSI(FPToSIInst &FI); |
| 416 | Instruction *visitUIToFP(CastInst &CI); |
| 417 | Instruction *visitSIToFP(CastInst &CI); |
| 418 | Instruction *visitPtrToInt(PtrToIntInst &CI); |
| 419 | Instruction *visitIntToPtr(IntToPtrInst &CI); |
| 420 | Instruction *visitBitCast(BitCastInst &CI); |
Matt Arsenault | a9e95ab | 2013-11-15 05:45:08 +0000 | [diff] [blame] | 421 | Instruction *visitAddrSpaceCast(AddrSpaceCastInst &CI); |
Mehdi Amini | b9a0fa4 | 2015-02-16 21:47:54 +0000 | [diff] [blame] | 422 | Instruction *FoldItoFPtoI(Instruction &FI); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 423 | Instruction *visitSelectInst(SelectInst &SI); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 424 | Instruction *visitCallInst(CallInst &CI); |
| 425 | Instruction *visitInvokeInst(InvokeInst &II); |
Craig Topper | 784929d | 2019-02-08 20:48:56 +0000 | [diff] [blame] | 426 | Instruction *visitCallBrInst(CallBrInst &CBI); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 427 | |
| 428 | Instruction *SliceUpIllegalIntegerPHI(PHINode &PN); |
| 429 | Instruction *visitPHINode(PHINode &PN); |
| 430 | Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP); |
| 431 | Instruction *visitAllocaInst(AllocaInst &AI); |
Nuno Lopes | 95cc4f3 | 2012-07-09 18:38:20 +0000 | [diff] [blame] | 432 | Instruction *visitAllocSite(Instruction &FI); |
Gabor Greif | 75f6943 | 2010-06-24 12:21:15 +0000 | [diff] [blame] | 433 | Instruction *visitFree(CallInst &FI); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 434 | Instruction *visitLoadInst(LoadInst &LI); |
| 435 | Instruction *visitStoreInst(StoreInst &SI); |
Quentin Colombet | 96f54de | 2019-02-07 21:27:23 +0000 | [diff] [blame] | 436 | Instruction *visitAtomicRMWInst(AtomicRMWInst &SI); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 437 | Instruction *visitBranchInst(BranchInst &BI); |
Davide Italiano | aec4617 | 2017-01-31 18:09:05 +0000 | [diff] [blame] | 438 | Instruction *visitFenceInst(FenceInst &FI); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 439 | Instruction *visitSwitchInst(SwitchInst &SI); |
Hal Finkel | 93873cc1 | 2014-09-07 21:28:34 +0000 | [diff] [blame] | 440 | Instruction *visitReturnInst(ReturnInst &RI); |
Michael Zolotukhin | 7d6293a | 2014-05-07 14:30:18 +0000 | [diff] [blame] | 441 | Instruction *visitInsertValueInst(InsertValueInst &IV); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 442 | Instruction *visitInsertElementInst(InsertElementInst &IE); |
| 443 | Instruction *visitExtractElementInst(ExtractElementInst &EI); |
| 444 | Instruction *visitShuffleVectorInst(ShuffleVectorInst &SVI); |
| 445 | Instruction *visitExtractValueInst(ExtractValueInst &EV); |
Duncan Sands | 5c05579 | 2011-09-30 13:12:16 +0000 | [diff] [blame] | 446 | Instruction *visitLandingPadInst(LandingPadInst &LI); |
Arnaud A. de Grandmaison | 333ef38 | 2016-05-10 09:24:49 +0000 | [diff] [blame] | 447 | Instruction *visitVAStartInst(VAStartInst &I); |
| 448 | Instruction *visitVACopyInst(VACopyInst &I); |
aqjune | 4187cb1 | 2019-11-07 01:12:17 +0900 | [diff] [blame] | 449 | Instruction *visitFreeze(FreezeInst &I); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 450 | |
Sanjay Patel | 5352331 | 2016-09-12 14:25:46 +0000 | [diff] [blame] | 451 | /// Specify what to return for unhandled instructions. |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 452 | Instruction *visitInstruction(Instruction &I) { return nullptr; } |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 453 | |
Sanjay Patel | 5352331 | 2016-09-12 14:25:46 +0000 | [diff] [blame] | 454 | /// True when DB dominates all uses of DI except UI. |
| 455 | /// UI must be in the same block as DI. |
| 456 | /// The routine checks that the DI parent and DB are different. |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 457 | bool dominatesAllUses(const Instruction *DI, const Instruction *UI, |
| 458 | const BasicBlock *DB) const; |
| 459 | |
Sanjay Patel | 5352331 | 2016-09-12 14:25:46 +0000 | [diff] [blame] | 460 | /// Try to replace select with select operand SIOpd in SI-ICmp sequence. |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 461 | bool replacedSelectWithOperand(SelectInst *SI, const ICmpInst *Icmp, |
| 462 | const unsigned SIOpd); |
| 463 | |
Yaxun Liu | ba01ed0 | 2017-02-10 21:46:07 +0000 | [diff] [blame] | 464 | /// Try to replace instruction \p I with value \p V which are pointers |
| 465 | /// in different address space. |
| 466 | /// \return true if successful. |
| 467 | bool replacePointer(Instruction &I, Value *V); |
| 468 | |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 469 | private: |
Sanjay Patel | 2217f75 | 2017-01-31 17:25:42 +0000 | [diff] [blame] | 470 | bool shouldChangeType(unsigned FromBitWidth, unsigned ToBitWidth) const; |
| 471 | bool shouldChangeType(Type *From, Type *To) const; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 472 | Value *dyn_castNegVal(Value *V) const; |
David Blaikie | 87ca1b6 | 2015-03-27 20:56:11 +0000 | [diff] [blame] | 473 | Type *FindElementAtOffset(PointerType *PtrTy, int64_t Offset, |
Chandler Carruth | d70cc60 | 2014-05-07 17:36:59 +0000 | [diff] [blame] | 474 | SmallVectorImpl<Value *> &NewIndices); |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 475 | |
Tobias Grosser | 8ef834c | 2016-07-19 09:06:08 +0000 | [diff] [blame] | 476 | /// Classify whether a cast is worth optimizing. |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 477 | /// |
Tobias Grosser | 8ef834c | 2016-07-19 09:06:08 +0000 | [diff] [blame] | 478 | /// This is a helper to decide whether the simplification of |
| 479 | /// logic(cast(A), cast(B)) to cast(logic(A, B)) should be performed. |
| 480 | /// |
| 481 | /// \param CI The cast we are interested in. |
| 482 | /// |
| 483 | /// \return true if this cast actually results in any code being generated and |
| 484 | /// if it cannot already be eliminated by some other transformation. |
| 485 | bool shouldOptimizeCast(CastInst *CI); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 486 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 487 | /// Try to optimize a sequence of instructions checking if an operation |
Sanjoy Das | b098447 | 2015-04-08 04:27:22 +0000 | [diff] [blame] | 488 | /// on LHS and RHS overflows. |
| 489 | /// |
Sanjoy Das | 6f5dca7 | 2015-08-28 19:09:31 +0000 | [diff] [blame] | 490 | /// If this overflow check is done via one of the overflow check intrinsics, |
| 491 | /// then CtxI has to be the call instruction calling that intrinsic. If this |
| 492 | /// overflow check is done by arithmetic followed by a compare, then CtxI has |
| 493 | /// to be the arithmetic instruction. |
| 494 | /// |
Sanjoy Das | b098447 | 2015-04-08 04:27:22 +0000 | [diff] [blame] | 495 | /// If a simplification is possible, stores the simplified result of the |
| 496 | /// operation in OperationResult and result of the overflow check in |
| 497 | /// OverflowResult, and return true. If no simplification is possible, |
| 498 | /// returns false. |
Nikita Popov | 352f598 | 2019-05-26 11:43:31 +0000 | [diff] [blame] | 499 | bool OptimizeOverflowCheck(Instruction::BinaryOps BinaryOp, bool IsSigned, |
| 500 | Value *LHS, Value *RHS, |
Sanjoy Das | b098447 | 2015-04-08 04:27:22 +0000 | [diff] [blame] | 501 | Instruction &CtxI, Value *&OperationResult, |
| 502 | Constant *&OverflowResult); |
| 503 | |
Craig Topper | c1892ec | 2019-01-31 17:23:29 +0000 | [diff] [blame] | 504 | Instruction *visitCallBase(CallBase &Call); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 505 | Instruction *tryOptimizeCall(CallInst *CI); |
Craig Topper | c1892ec | 2019-01-31 17:23:29 +0000 | [diff] [blame] | 506 | bool transformConstExprCastCall(CallBase &Call); |
| 507 | Instruction *transformCallThroughTrampoline(CallBase &Call, |
| 508 | IntrinsicInst &Tramp); |
Tobias Grosser | 8ef834c | 2016-07-19 09:06:08 +0000 | [diff] [blame] | 509 | |
Philip Reames | 7c8647b | 2019-04-25 01:18:56 +0000 | [diff] [blame] | 510 | Value *simplifyMaskedLoad(IntrinsicInst &II); |
Philip Reames | e4588bb | 2019-03-20 18:44:58 +0000 | [diff] [blame] | 511 | Instruction *simplifyMaskedStore(IntrinsicInst &II); |
Philip Reames | 7c8647b | 2019-04-25 01:18:56 +0000 | [diff] [blame] | 512 | Instruction *simplifyMaskedGather(IntrinsicInst &II); |
Philip Reames | e4588bb | 2019-03-20 18:44:58 +0000 | [diff] [blame] | 513 | Instruction *simplifyMaskedScatter(IntrinsicInst &II); |
| 514 | |
Tobias Grosser | 8ef834c | 2016-07-19 09:06:08 +0000 | [diff] [blame] | 515 | /// Transform (zext icmp) to bitwise / integer operations in order to |
| 516 | /// eliminate it. |
| 517 | /// |
| 518 | /// \param ICI The icmp of the (zext icmp) pair we are interested in. |
| 519 | /// \parem CI The zext of the (zext icmp) pair we are interested in. |
| 520 | /// \param DoTransform Pass false to just test whether the given (zext icmp) |
| 521 | /// would be transformed. Pass true to actually perform the transformation. |
| 522 | /// |
| 523 | /// \return null if the transformation cannot be performed. If the |
| 524 | /// transformation can be performed the new instruction that replaces the |
| 525 | /// (zext icmp) pair will be returned (if \p DoTransform is false the |
| 526 | /// unmodified \p ICI will be returned in this case). |
| 527 | Instruction *transformZExtICmp(ICmpInst *ICI, ZExtInst &CI, |
| 528 | bool DoTransform = true); |
| 529 | |
Benjamin Kramer | 398b8c5 | 2011-04-01 20:09:03 +0000 | [diff] [blame] | 530 | Instruction *transformSExtICmp(ICmpInst *ICI, Instruction &CI); |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 531 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 532 | bool willNotOverflowSignedAdd(const Value *LHS, const Value *RHS, |
| 533 | const Instruction &CxtI) const { |
Craig Topper | bb97372 | 2017-05-15 02:44:08 +0000 | [diff] [blame] | 534 | return computeOverflowForSignedAdd(LHS, RHS, &CxtI) == |
| 535 | OverflowResult::NeverOverflows; |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 536 | } |
| 537 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 538 | bool willNotOverflowUnsignedAdd(const Value *LHS, const Value *RHS, |
| 539 | const Instruction &CxtI) const { |
Craig Topper | bb97372 | 2017-05-15 02:44:08 +0000 | [diff] [blame] | 540 | return computeOverflowForUnsignedAdd(LHS, RHS, &CxtI) == |
| 541 | OverflowResult::NeverOverflows; |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 542 | } |
| 543 | |
Sanjay Patel | 46945b9 | 2018-09-14 21:30:07 +0000 | [diff] [blame] | 544 | bool willNotOverflowAdd(const Value *LHS, const Value *RHS, |
| 545 | const Instruction &CxtI, bool IsSigned) const { |
| 546 | return IsSigned ? willNotOverflowSignedAdd(LHS, RHS, CxtI) |
| 547 | : willNotOverflowUnsignedAdd(LHS, RHS, CxtI); |
| 548 | } |
| 549 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 550 | bool willNotOverflowSignedSub(const Value *LHS, const Value *RHS, |
Omer Paparo Bivas | fbb83de | 2018-05-10 19:46:19 +0000 | [diff] [blame] | 551 | const Instruction &CxtI) const { |
| 552 | return computeOverflowForSignedSub(LHS, RHS, &CxtI) == |
| 553 | OverflowResult::NeverOverflows; |
| 554 | } |
| 555 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 556 | bool willNotOverflowUnsignedSub(const Value *LHS, const Value *RHS, |
Omer Paparo Bivas | fbb83de | 2018-05-10 19:46:19 +0000 | [diff] [blame] | 557 | const Instruction &CxtI) const { |
| 558 | return computeOverflowForUnsignedSub(LHS, RHS, &CxtI) == |
| 559 | OverflowResult::NeverOverflows; |
| 560 | } |
| 561 | |
Sanjay Patel | 46945b9 | 2018-09-14 21:30:07 +0000 | [diff] [blame] | 562 | bool willNotOverflowSub(const Value *LHS, const Value *RHS, |
| 563 | const Instruction &CxtI, bool IsSigned) const { |
| 564 | return IsSigned ? willNotOverflowSignedSub(LHS, RHS, CxtI) |
| 565 | : willNotOverflowUnsignedSub(LHS, RHS, CxtI); |
| 566 | } |
| 567 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 568 | bool willNotOverflowSignedMul(const Value *LHS, const Value *RHS, |
Omer Paparo Bivas | fbb83de | 2018-05-10 19:46:19 +0000 | [diff] [blame] | 569 | const Instruction &CxtI) const { |
| 570 | return computeOverflowForSignedMul(LHS, RHS, &CxtI) == |
| 571 | OverflowResult::NeverOverflows; |
| 572 | } |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 573 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 574 | bool willNotOverflowUnsignedMul(const Value *LHS, const Value *RHS, |
| 575 | const Instruction &CxtI) const { |
Craig Topper | bb97372 | 2017-05-15 02:44:08 +0000 | [diff] [blame] | 576 | return computeOverflowForUnsignedMul(LHS, RHS, &CxtI) == |
| 577 | OverflowResult::NeverOverflows; |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 578 | } |
| 579 | |
Sanjay Patel | 46945b9 | 2018-09-14 21:30:07 +0000 | [diff] [blame] | 580 | bool willNotOverflowMul(const Value *LHS, const Value *RHS, |
| 581 | const Instruction &CxtI, bool IsSigned) const { |
| 582 | return IsSigned ? willNotOverflowSignedMul(LHS, RHS, CxtI) |
| 583 | : willNotOverflowUnsignedMul(LHS, RHS, CxtI); |
| 584 | } |
| 585 | |
Sanjay Patel | 90a3634 | 2018-09-14 22:23:35 +0000 | [diff] [blame] | 586 | bool willNotOverflow(BinaryOperator::BinaryOps Opcode, const Value *LHS, |
| 587 | const Value *RHS, const Instruction &CxtI, |
| 588 | bool IsSigned) const { |
| 589 | switch (Opcode) { |
| 590 | case Instruction::Add: return willNotOverflowAdd(LHS, RHS, CxtI, IsSigned); |
| 591 | case Instruction::Sub: return willNotOverflowSub(LHS, RHS, CxtI, IsSigned); |
| 592 | case Instruction::Mul: return willNotOverflowMul(LHS, RHS, CxtI, IsSigned); |
| 593 | default: llvm_unreachable("Unexpected opcode for overflow query"); |
| 594 | } |
| 595 | } |
| 596 | |
Nuno Lopes | a2f6cec | 2012-05-22 17:19:09 +0000 | [diff] [blame] | 597 | Value *EmitGEPOffset(User *GEP); |
Anat Shemer | 0c95efa | 2013-04-18 19:35:39 +0000 | [diff] [blame] | 598 | Instruction *scalarizePHI(ExtractElementInst &EI, PHINode *PN); |
Sanjay Patel | 40e7ba0 | 2016-02-23 16:36:07 +0000 | [diff] [blame] | 599 | Instruction *foldCastedBitwiseLogic(BinaryOperator &I); |
Sanjay Patel | 94da1de | 2017-08-05 15:19:18 +0000 | [diff] [blame] | 600 | Instruction *narrowBinOp(TruncInst &Trunc); |
Sanjay Patel | 1d68112 | 2018-01-25 16:34:36 +0000 | [diff] [blame] | 601 | Instruction *narrowMaskedBinOp(BinaryOperator &And); |
Sanjay Patel | 90a3634 | 2018-09-14 22:23:35 +0000 | [diff] [blame] | 602 | Instruction *narrowMathIfNoOverflow(BinaryOperator &I); |
Sanjay Patel | c50e55d | 2017-08-09 18:37:41 +0000 | [diff] [blame] | 603 | Instruction *narrowRotate(TruncInst &Trunc); |
Guozhi Wei | ae541f6 | 2016-10-25 20:43:42 +0000 | [diff] [blame] | 604 | Instruction *optimizeBitCastFromPhi(CastInst &CI, PHINode *PN); |
David Green | 186155b | 2019-10-22 15:39:47 +0000 | [diff] [blame] | 605 | Instruction *matchSAddSubSat(SelectInst &MinMax1); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 606 | |
Tobias Grosser | 8ef834c | 2016-07-19 09:06:08 +0000 | [diff] [blame] | 607 | /// Determine if a pair of casts can be replaced by a single cast. |
| 608 | /// |
| 609 | /// \param CI1 The first of a pair of casts. |
| 610 | /// \param CI2 The second of a pair of casts. |
| 611 | /// |
| 612 | /// \return 0 if the cast pair cannot be eliminated, otherwise returns an |
| 613 | /// Instruction::CastOps value for a cast that can replace the pair, casting |
| 614 | /// CI1->getSrcTy() to CI2->getDstTy(). |
| 615 | /// |
| 616 | /// \see CastInst::isEliminableCastPair |
| 617 | Instruction::CastOps isEliminableCastPair(const CastInst *CI1, |
| 618 | const CastInst *CI2); |
| 619 | |
Craig Topper | da6ea0d | 2017-06-16 05:10:37 +0000 | [diff] [blame] | 620 | Value *foldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI); |
Craig Topper | f2d3e6d | 2017-06-15 19:09:51 +0000 | [diff] [blame] | 621 | Value *foldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction &CxtI); |
Roman Lebedev | 2635c32 | 2019-08-13 12:49:06 +0000 | [diff] [blame] | 622 | Value *foldXorOfICmps(ICmpInst *LHS, ICmpInst *RHS, BinaryOperator &I); |
Sanjay Patel | 5e456b9 | 2017-05-18 20:53:16 +0000 | [diff] [blame] | 623 | |
Sanjay Patel | 64fc5da | 2017-09-02 17:53:33 +0000 | [diff] [blame] | 624 | /// Optimize (fcmp)&(fcmp) or (fcmp)|(fcmp). |
| 625 | /// NOTE: Unlike most of instcombine, this returns a Value which should |
| 626 | /// already be inserted into the function. |
| 627 | Value *foldLogicOfFCmps(FCmpInst *LHS, FCmpInst *RHS, bool IsAnd); |
| 628 | |
Craig Topper | da6ea0d | 2017-06-16 05:10:37 +0000 | [diff] [blame] | 629 | Value *foldAndOrOfICmpsOfAndWithPow2(ICmpInst *LHS, ICmpInst *RHS, |
| 630 | bool JoinedByAnd, Instruction &CxtI); |
Sanjay Patel | 3b20630 | 2018-10-24 15:17:56 +0000 | [diff] [blame] | 631 | Value *matchSelectFromAndOr(Value *A, Value *B, Value *C, Value *D); |
| 632 | Value *getSelectCondition(Value *A, Value *B); |
| 633 | |
Nikita Popov | 884feb1 | 2019-03-06 18:30:00 +0000 | [diff] [blame] | 634 | Instruction *foldIntrinsicWithOverflowCommon(IntrinsicInst *II); |
| 635 | |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 636 | public: |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 637 | /// Inserts an instruction \p New before instruction \p Old |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 638 | /// |
| 639 | /// Also adds the new instruction to the worklist and returns \p New so that |
| 640 | /// it is suitable for use as the return from the visitation patterns. |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 641 | Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) { |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 642 | assert(New && !New->getParent() && |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 643 | "New instruction already inserted into a basic block!"); |
| 644 | BasicBlock *BB = Old.getParent(); |
Duncan P. N. Exon Smith | 9f8aaf2 | 2015-10-13 16:59:33 +0000 | [diff] [blame] | 645 | BB->getInstList().insert(Old.getIterator(), New); // Insert inst |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 646 | Worklist.Add(New); |
| 647 | return New; |
| 648 | } |
Eli Friedman | 6efb64e | 2011-05-19 01:20:42 +0000 | [diff] [blame] | 649 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 650 | /// Same as InsertNewInstBefore, but also sets the debug loc. |
Eli Friedman | 6efb64e | 2011-05-19 01:20:42 +0000 | [diff] [blame] | 651 | Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) { |
| 652 | New->setDebugLoc(Old.getDebugLoc()); |
| 653 | return InsertNewInstBefore(New, Old); |
| 654 | } |
| 655 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 656 | /// A combiner-aware RAUW-like routine. |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 657 | /// |
| 658 | /// This method is to be used when an instruction is found to be dead, |
Sanjay Patel | f2ea8a2 | 2016-01-06 00:23:12 +0000 | [diff] [blame] | 659 | /// replaceable with another preexisting expression. Here we add all uses of |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 660 | /// I to the worklist, replace all uses of I with the new value, then return |
| 661 | /// I, so that the inst combiner will know that I was modified. |
Sanjay Patel | 4b19880 | 2016-02-01 22:23:39 +0000 | [diff] [blame] | 662 | Instruction *replaceInstUsesWith(Instruction &I, Value *V) { |
Owen Anderson | 51b75b8c | 2015-03-10 05:13:47 +0000 | [diff] [blame] | 663 | // If there are no uses to replace, then we return nullptr to indicate that |
| 664 | // no changes were made to the program. |
| 665 | if (I.use_empty()) return nullptr; |
| 666 | |
Chandler Carruth | d70cc60 | 2014-05-07 17:36:59 +0000 | [diff] [blame] | 667 | Worklist.AddUsersToWorkList(I); // Add all modified instrs to worklist. |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 668 | |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 669 | // If we are replacing the instruction with itself, this must be in a |
| 670 | // segment of unreachable code, so just clobber the instruction. |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 671 | if (&I == V) |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 672 | V = UndefValue::get(I.getType()); |
Frits van Bommel | d14d991 | 2011-03-27 23:32:31 +0000 | [diff] [blame] | 673 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 674 | LLVM_DEBUG(dbgs() << "IC: Replacing " << I << "\n" |
| 675 | << " with " << *V << '\n'); |
Frits van Bommel | d14d991 | 2011-03-27 23:32:31 +0000 | [diff] [blame] | 676 | |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 677 | I.replaceAllUsesWith(V); |
| 678 | return &I; |
| 679 | } |
| 680 | |
Erik Eckstein | 096ff7d | 2014-12-11 08:02:30 +0000 | [diff] [blame] | 681 | /// Creates a result tuple for an overflow intrinsic \p II with a given |
Sanjoy Das | b098447 | 2015-04-08 04:27:22 +0000 | [diff] [blame] | 682 | /// \p Result and a constant \p Overflow value. |
Erik Eckstein | 096ff7d | 2014-12-11 08:02:30 +0000 | [diff] [blame] | 683 | Instruction *CreateOverflowTuple(IntrinsicInst *II, Value *Result, |
Sanjoy Das | b098447 | 2015-04-08 04:27:22 +0000 | [diff] [blame] | 684 | Constant *Overflow) { |
| 685 | Constant *V[] = {UndefValue::get(Result->getType()), Overflow}; |
Erik Eckstein | 096ff7d | 2014-12-11 08:02:30 +0000 | [diff] [blame] | 686 | StructType *ST = cast<StructType>(II->getType()); |
| 687 | Constant *Struct = ConstantStruct::get(ST, V); |
| 688 | return InsertValueInst::Create(Struct, Result, 0); |
| 689 | } |
Chandler Carruth | b3d03df | 2015-01-20 21:10:35 +0000 | [diff] [blame] | 690 | |
Philip Reames | 8867971 | 2019-04-17 17:37:58 +0000 | [diff] [blame] | 691 | /// Create and insert the idiom we use to indicate a block is unreachable |
| 692 | /// without having to rewrite the CFG from within InstCombine. |
| 693 | void CreateNonTerminatorUnreachable(Instruction *InsertAt) { |
| 694 | auto &Ctx = InsertAt->getContext(); |
| 695 | new StoreInst(ConstantInt::getTrue(Ctx), |
| 696 | UndefValue::get(Type::getInt1PtrTy(Ctx)), |
| 697 | InsertAt); |
| 698 | } |
| 699 | |
| 700 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 701 | /// Combiner aware instruction erasure. |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 702 | /// |
| 703 | /// When dealing with an instruction that has side effects or produces a void |
| 704 | /// value, we can't rely on DCE to delete the instruction. Instead, visit |
| 705 | /// methods should return the value returned by this function. |
Sanjay Patel | 4b19880 | 2016-02-01 22:23:39 +0000 | [diff] [blame] | 706 | Instruction *eraseInstFromFunction(Instruction &I) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 707 | LLVM_DEBUG(dbgs() << "IC: ERASE " << I << '\n'); |
Adrian Prantl | fa9e84e | 2017-03-16 20:11:54 +0000 | [diff] [blame] | 708 | assert(I.use_empty() && "Cannot erase instruction that is used!"); |
Vedant Kumar | a087b78 | 2019-11-07 11:19:41 -0800 | [diff] [blame] | 709 | salvageDebugInfoOrMarkUndef(I); |
Adrian Prantl | 47ea647 | 2017-03-16 21:14:09 +0000 | [diff] [blame] | 710 | |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 711 | // Make sure that we reprocess all operands now that we reduced their |
| 712 | // use counts. |
| 713 | if (I.getNumOperands() < 8) { |
Sanjay Patel | 8af7fbc3 | 2016-01-31 16:34:48 +0000 | [diff] [blame] | 714 | for (Use &Operand : I.operands()) |
| 715 | if (auto *Inst = dyn_cast<Instruction>(Operand)) |
| 716 | Worklist.Add(Inst); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 717 | } |
| 718 | Worklist.Remove(&I); |
| 719 | I.eraseFromParent(); |
| 720 | MadeIRChange = true; |
Chandler Carruth | d70cc60 | 2014-05-07 17:36:59 +0000 | [diff] [blame] | 721 | return nullptr; // Don't do anything with FI |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 722 | } |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 723 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 724 | void computeKnownBits(const Value *V, KnownBits &Known, |
| 725 | unsigned Depth, const Instruction *CxtI) const { |
Craig Topper | 26c4159 | 2017-05-15 02:30:27 +0000 | [diff] [blame] | 726 | llvm::computeKnownBits(V, Known, DL, Depth, &AC, CxtI, &DT); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 727 | } |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 728 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 729 | KnownBits computeKnownBits(const Value *V, unsigned Depth, |
| 730 | const Instruction *CxtI) const { |
Craig Topper | 1a36b7d | 2017-05-15 06:39:41 +0000 | [diff] [blame] | 731 | return llvm::computeKnownBits(V, DL, Depth, &AC, CxtI, &DT); |
| 732 | } |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 733 | |
Craig Topper | d4039f7 | 2017-05-25 21:51:12 +0000 | [diff] [blame] | 734 | bool isKnownToBeAPowerOfTwo(const Value *V, bool OrZero = false, |
| 735 | unsigned Depth = 0, |
| 736 | const Instruction *CxtI = nullptr) { |
| 737 | return llvm::isKnownToBeAPowerOfTwo(V, DL, OrZero, Depth, &AC, CxtI, &DT); |
| 738 | } |
| 739 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 740 | bool MaskedValueIsZero(const Value *V, const APInt &Mask, unsigned Depth = 0, |
| 741 | const Instruction *CxtI = nullptr) const { |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 742 | return llvm::MaskedValueIsZero(V, Mask, DL, Depth, &AC, CxtI, &DT); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 743 | } |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 744 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 745 | unsigned ComputeNumSignBits(const Value *Op, unsigned Depth = 0, |
| 746 | const Instruction *CxtI = nullptr) const { |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 747 | return llvm::ComputeNumSignBits(Op, DL, Depth, &AC, CxtI, &DT); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 748 | } |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 749 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 750 | OverflowResult computeOverflowForUnsignedMul(const Value *LHS, |
| 751 | const Value *RHS, |
| 752 | const Instruction *CxtI) const { |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 753 | return llvm::computeOverflowForUnsignedMul(LHS, RHS, DL, &AC, CxtI, &DT); |
David Majnemer | 491331a | 2015-01-02 07:29:43 +0000 | [diff] [blame] | 754 | } |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 755 | |
Omer Paparo Bivas | fbb83de | 2018-05-10 19:46:19 +0000 | [diff] [blame] | 756 | OverflowResult computeOverflowForSignedMul(const Value *LHS, |
Nikita Popov | 39f2beb | 2019-05-26 11:43:37 +0000 | [diff] [blame] | 757 | const Value *RHS, |
Omer Paparo Bivas | fbb83de | 2018-05-10 19:46:19 +0000 | [diff] [blame] | 758 | const Instruction *CxtI) const { |
| 759 | return llvm::computeOverflowForSignedMul(LHS, RHS, DL, &AC, CxtI, &DT); |
| 760 | } |
| 761 | |
Craig Topper | 2b1fc32 | 2017-05-22 06:25:31 +0000 | [diff] [blame] | 762 | OverflowResult computeOverflowForUnsignedAdd(const Value *LHS, |
| 763 | const Value *RHS, |
| 764 | const Instruction *CxtI) const { |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 765 | return llvm::computeOverflowForUnsignedAdd(LHS, RHS, DL, &AC, CxtI, &DT); |
David Majnemer | 5310c1e | 2015-01-07 00:39:50 +0000 | [diff] [blame] | 766 | } |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 767 | |
Craig Topper | bb97372 | 2017-05-15 02:44:08 +0000 | [diff] [blame] | 768 | OverflowResult computeOverflowForSignedAdd(const Value *LHS, |
| 769 | const Value *RHS, |
| 770 | const Instruction *CxtI) const { |
| 771 | return llvm::computeOverflowForSignedAdd(LHS, RHS, DL, &AC, CxtI, &DT); |
| 772 | } |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 773 | |
Omer Paparo Bivas | fbb83de | 2018-05-10 19:46:19 +0000 | [diff] [blame] | 774 | OverflowResult computeOverflowForUnsignedSub(const Value *LHS, |
| 775 | const Value *RHS, |
| 776 | const Instruction *CxtI) const { |
| 777 | return llvm::computeOverflowForUnsignedSub(LHS, RHS, DL, &AC, CxtI, &DT); |
| 778 | } |
| 779 | |
| 780 | OverflowResult computeOverflowForSignedSub(const Value *LHS, const Value *RHS, |
| 781 | const Instruction *CxtI) const { |
| 782 | return llvm::computeOverflowForSignedSub(LHS, RHS, DL, &AC, CxtI, &DT); |
| 783 | } |
| 784 | |
Nikita Popov | 39f2beb | 2019-05-26 11:43:37 +0000 | [diff] [blame] | 785 | OverflowResult computeOverflow( |
| 786 | Instruction::BinaryOps BinaryOp, bool IsSigned, |
| 787 | Value *LHS, Value *RHS, Instruction *CxtI) const; |
| 788 | |
Davide Italiano | 2133bf5 | 2017-02-07 17:56:50 +0000 | [diff] [blame] | 789 | /// Maximum size of array considered when transforming. |
Simon Pilgrim | b569624 | 2019-08-28 15:19:49 +0000 | [diff] [blame] | 790 | uint64_t MaxArraySizeForCombine = 0; |
Davide Italiano | 2133bf5 | 2017-02-07 17:56:50 +0000 | [diff] [blame] | 791 | |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 792 | private: |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 793 | /// Performs a few simplifications for operators which are associative |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 794 | /// or commutative. |
Duncan Sands | 641baf1 | 2010-11-13 15:10:37 +0000 | [diff] [blame] | 795 | bool SimplifyAssociativeOrCommutative(BinaryOperator &I); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 796 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 797 | /// Tries to simplify binary operations which some other binary |
Chandler Carruth | b3d03df | 2015-01-20 21:10:35 +0000 | [diff] [blame] | 798 | /// operation distributes over. |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 799 | /// |
| 800 | /// It does this by either by factorizing out common terms (eg "(A*B)+(A*C)" |
| 801 | /// -> "A*(B+C)") or expanding out if this results in simplifications (eg: "A |
| 802 | /// & (B | C) -> (A&B) | (A&C)" if this is a win). Returns the simplified |
| 803 | /// value, or null if it didn't simplify. |
Duncan Sands | fbb9ac3 | 2010-12-22 13:36:08 +0000 | [diff] [blame] | 804 | Value *SimplifyUsingDistributiveLaws(BinaryOperator &I); |
Duncan Sands | adc7771f | 2010-11-23 14:23:47 +0000 | [diff] [blame] | 805 | |
Sanjoy Das | 6f1937b | 2018-04-26 20:52:28 +0000 | [diff] [blame] | 806 | /// Tries to simplify add operations using the definition of remainder. |
| 807 | /// |
| 808 | /// The definition of remainder is X % C = X - (X / C ) * C. The add |
| 809 | /// expression X % C0 + (( X / C0 ) % C1) * C0 can be simplified to |
| 810 | /// X % (C0 * C1) |
| 811 | Value *SimplifyAddWithRemainder(BinaryOperator &I); |
| 812 | |
Quentin Colombet | aa103b3 | 2017-09-20 17:32:16 +0000 | [diff] [blame] | 813 | // Binary Op helper for select operations where the expression can be |
| 814 | // efficiently reorganized. |
| 815 | Value *SimplifySelectsFeedingBinaryOp(BinaryOperator &I, Value *LHS, |
| 816 | Value *RHS); |
| 817 | |
Daniel Berlin | 2c75c63 | 2017-04-26 20:56:07 +0000 | [diff] [blame] | 818 | /// This tries to simplify binary operations by factorizing out common terms |
| 819 | /// (e. g. "(A*B)+(A*C)" -> "A*(B+C)"). |
Craig Topper | 47c8f66 | 2017-07-06 18:35:52 +0000 | [diff] [blame] | 820 | Value *tryFactorization(BinaryOperator &, Instruction::BinaryOps, Value *, |
| 821 | Value *, Value *, Value *); |
Daniel Berlin | 2c75c63 | 2017-04-26 20:56:07 +0000 | [diff] [blame] | 822 | |
Anna Thomas | d67165c | 2017-06-23 13:41:45 +0000 | [diff] [blame] | 823 | /// Match a select chain which produces one of three values based on whether |
| 824 | /// the LHS is less than, equal to, or greater than RHS respectively. |
| 825 | /// Return true if we matched a three way compare idiom. The LHS, RHS, Less, |
| 826 | /// Equal and Greater values are saved in the matching process and returned to |
| 827 | /// the caller. |
| 828 | bool matchThreeWayIntCompare(SelectInst *SI, Value *&LHS, Value *&RHS, |
| 829 | ConstantInt *&Less, ConstantInt *&Equal, |
| 830 | ConstantInt *&Greater); |
| 831 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 832 | /// Attempts to replace V with a simpler value based on the demanded |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 833 | /// bits. |
Craig Topper | b45eabc | 2017-04-26 16:39:58 +0000 | [diff] [blame] | 834 | Value *SimplifyDemandedUseBits(Value *V, APInt DemandedMask, KnownBits &Known, |
| 835 | unsigned Depth, Instruction *CxtI); |
Craig Topper | 47596dd | 2017-03-25 06:52:52 +0000 | [diff] [blame] | 836 | bool SimplifyDemandedBits(Instruction *I, unsigned Op, |
Craig Topper | b45eabc | 2017-04-26 16:39:58 +0000 | [diff] [blame] | 837 | const APInt &DemandedMask, KnownBits &Known, |
| 838 | unsigned Depth = 0); |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 839 | |
Craig Topper | b0076fe | 2017-04-12 18:05:21 +0000 | [diff] [blame] | 840 | /// Helper routine of SimplifyDemandedUseBits. It computes KnownZero/KnownOne |
| 841 | /// bits. It also tries to handle simplifications that can be done based on |
| 842 | /// DemandedMask, but without modifying the Instruction. |
| 843 | Value *SimplifyMultipleUseDemandedBits(Instruction *I, |
| 844 | const APInt &DemandedMask, |
Craig Topper | b45eabc | 2017-04-26 16:39:58 +0000 | [diff] [blame] | 845 | KnownBits &Known, |
Craig Topper | b0076fe | 2017-04-12 18:05:21 +0000 | [diff] [blame] | 846 | unsigned Depth, Instruction *CxtI); |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 847 | |
Shuxin Yang | 63e999e | 2012-12-04 00:04:54 +0000 | [diff] [blame] | 848 | /// Helper routine of SimplifyDemandedUseBits. It tries to simplify demanded |
| 849 | /// bit for "r1 = shr x, c1; r2 = shl r1, c2" instruction sequence. |
Sanjay Patel | cc663b8 | 2017-04-20 22:37:01 +0000 | [diff] [blame] | 850 | Value *simplifyShrShlDemandedBits( |
Sanjay Patel | c9485ca | 2017-04-20 22:33:54 +0000 | [diff] [blame] | 851 | Instruction *Shr, const APInt &ShrOp1, Instruction *Shl, |
Craig Topper | b45eabc | 2017-04-26 16:39:58 +0000 | [diff] [blame] | 852 | const APInt &ShlOp1, const APInt &DemandedMask, KnownBits &Known); |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 853 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 854 | /// Tries to simplify operands to an integer instruction based on its |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 855 | /// demanded bits. |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 856 | bool SimplifyDemandedInstructionBits(Instruction &Inst); |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 857 | |
Nicolai Haehnle | b29ee70 | 2018-06-21 13:37:31 +0000 | [diff] [blame] | 858 | Value *simplifyAMDGCNMemoryIntrinsicDemanded(IntrinsicInst *II, |
| 859 | APInt DemandedElts, |
Nicolai Haehnle | a69146e | 2019-02-04 21:24:19 +0000 | [diff] [blame] | 860 | int DmaskIdx = -1); |
Nicolai Haehnle | b29ee70 | 2018-06-21 13:37:31 +0000 | [diff] [blame] | 861 | |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 862 | Value *SimplifyDemandedVectorElts(Value *V, APInt DemandedElts, |
Piotr Sobczak | a861c9a | 2019-10-21 08:12:47 +0000 | [diff] [blame] | 863 | APInt &UndefElts, unsigned Depth = 0, |
| 864 | bool AllowMultipleUsers = false); |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 865 | |
Sanjay Patel | bbc6d60 | 2018-06-02 16:27:44 +0000 | [diff] [blame] | 866 | /// Canonicalize the position of binops relative to shufflevector. |
Sanjay Patel | 79dceb2 | 2018-10-03 15:20:58 +0000 | [diff] [blame] | 867 | Instruction *foldVectorBinop(BinaryOperator &Inst); |
Sanjay Patel | db0938f | 2017-01-10 23:49:07 +0000 | [diff] [blame] | 868 | |
| 869 | /// Given a binary operator, cast instruction, or select which has a PHI node |
| 870 | /// as operand #0, see if we can fold the instruction into the PHI (which is |
| 871 | /// only possible if all operands to the PHI are constants). |
Craig Topper | fb71b7d | 2017-04-14 19:20:12 +0000 | [diff] [blame] | 872 | Instruction *foldOpIntoPhi(Instruction &I, PHINode *PN); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 873 | |
Sanjay Patel | db0938f | 2017-01-10 23:49:07 +0000 | [diff] [blame] | 874 | /// Given an instruction with a select as one operand and a constant as the |
| 875 | /// other operand, try to fold the binary operator into the select arguments. |
| 876 | /// This also works for Cast instructions, which obviously do not have a |
| 877 | /// second operand. |
| 878 | Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI); |
| 879 | |
| 880 | /// This is a convenience wrapper function for the above two functions. |
Sanjay Patel | 8fdd87f | 2018-02-28 16:36:24 +0000 | [diff] [blame] | 881 | Instruction *foldBinOpIntoSelectOrPhi(BinaryOperator &I); |
Sanjay Patel | db0938f | 2017-01-10 23:49:07 +0000 | [diff] [blame] | 882 | |
Sanjay Patel | 8d810fe | 2017-10-13 16:43:58 +0000 | [diff] [blame] | 883 | Instruction *foldAddWithConstant(BinaryOperator &Add); |
| 884 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 885 | /// Try to rotate an operation below a PHI node, using PHI nodes for |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 886 | /// its operands. |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 887 | Instruction *FoldPHIArgOpIntoPHI(PHINode &PN); |
| 888 | Instruction *FoldPHIArgBinOpIntoPHI(PHINode &PN); |
| 889 | Instruction *FoldPHIArgGEPIntoPHI(PHINode &PN); |
| 890 | Instruction *FoldPHIArgLoadIntoPHI(PHINode &PN); |
Sanjay Patel | 9533407 | 2015-09-27 20:34:31 +0000 | [diff] [blame] | 891 | Instruction *FoldPHIArgZextsIntoPHI(PHINode &PN); |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 892 | |
Xinliang David Li | 4cdc9da | 2017-10-10 05:07:54 +0000 | [diff] [blame] | 893 | /// If an integer typed PHI has only one use which is an IntToPtr operation, |
| 894 | /// replace the PHI with an existing pointer typed PHI if it exists. Otherwise |
| 895 | /// insert a new pointer typed PHI and replace the original one. |
| 896 | Instruction *FoldIntegerTypedPHI(PHINode &PN); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 897 | |
Dehao Chen | f464627 | 2017-10-02 18:13:14 +0000 | [diff] [blame] | 898 | /// Helper function for FoldPHIArgXIntoPHI() to set debug location for the |
Robert Lougher | 2428a40 | 2016-12-14 17:49:19 +0000 | [diff] [blame] | 899 | /// folded operation. |
Dehao Chen | f464627 | 2017-10-02 18:13:14 +0000 | [diff] [blame] | 900 | void PHIArgMergedDebugLoc(Instruction *Inst, PHINode &PN); |
Robert Lougher | 2428a40 | 2016-12-14 17:49:19 +0000 | [diff] [blame] | 901 | |
Sanjay Patel | 4339506 | 2016-07-21 18:07:40 +0000 | [diff] [blame] | 902 | Instruction *foldGEPICmp(GEPOperator *GEPLHS, Value *RHS, |
| 903 | ICmpInst::Predicate Cond, Instruction &I); |
Pete Cooper | 980a935 | 2016-08-12 17:13:28 +0000 | [diff] [blame] | 904 | Instruction *foldAllocaCmp(ICmpInst &ICI, const AllocaInst *Alloca, |
| 905 | const Value *Other); |
Sanjay Patel | 4339506 | 2016-07-21 18:07:40 +0000 | [diff] [blame] | 906 | Instruction *foldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP, |
| 907 | GlobalVariable *GV, CmpInst &ICI, |
| 908 | ConstantInt *AndCst = nullptr); |
| 909 | Instruction *foldFCmpIntToFPConst(FCmpInst &I, Instruction *LHSI, |
| 910 | Constant *RHSC); |
Craig Topper | bee7479 | 2018-08-20 23:04:25 +0000 | [diff] [blame] | 911 | Instruction *foldICmpAddOpConst(Value *X, const APInt &C, |
Sanjay Patel | 4339506 | 2016-07-21 18:07:40 +0000 | [diff] [blame] | 912 | ICmpInst::Predicate Pred); |
Sanjay Patel | a90ee0e | 2019-08-20 14:56:44 +0000 | [diff] [blame] | 913 | Instruction *foldICmpWithCastOp(ICmpInst &ICI); |
Sanjay Patel | f58f68c | 2016-09-10 15:03:44 +0000 | [diff] [blame] | 914 | |
Sanjay Patel | 3151dec | 2016-09-12 15:24:31 +0000 | [diff] [blame] | 915 | Instruction *foldICmpUsingKnownBits(ICmpInst &Cmp); |
Sanjay Patel | a40bf9ff | 2018-12-04 15:35:17 +0000 | [diff] [blame] | 916 | Instruction *foldICmpWithDominatingICmp(ICmpInst &Cmp); |
Sanjay Patel | 06b127a | 2016-09-15 14:37:50 +0000 | [diff] [blame] | 917 | Instruction *foldICmpWithConstant(ICmpInst &Cmp); |
Sanjay Patel | f58f68c | 2016-09-10 15:03:44 +0000 | [diff] [blame] | 918 | Instruction *foldICmpInstWithConstant(ICmpInst &Cmp); |
Sanjay Patel | 10494b2 | 2016-09-16 16:10:22 +0000 | [diff] [blame] | 919 | Instruction *foldICmpInstWithConstantNotInt(ICmpInst &Cmp); |
Roman Lebedev | 2364695 | 2019-09-25 19:06:40 +0000 | [diff] [blame] | 920 | Instruction *foldICmpBinOp(ICmpInst &Cmp, const SimplifyQuery &SQ); |
Sanjay Patel | 10494b2 | 2016-09-16 16:10:22 +0000 | [diff] [blame] | 921 | Instruction *foldICmpEquality(ICmpInst &Cmp); |
Roman Lebedev | be612ea | 2019-07-30 15:28:22 +0000 | [diff] [blame] | 922 | Instruction *foldIRemByPowerOfTwoToBitTest(ICmpInst &I); |
Roman Lebedev | 49483a3 | 2019-10-20 19:38:50 +0000 | [diff] [blame] | 923 | Instruction *foldSignBitTest(ICmpInst &I); |
Nikolai Bozhenov | 0e7ebbc | 2017-10-16 09:19:21 +0000 | [diff] [blame] | 924 | Instruction *foldICmpWithZero(ICmpInst &Cmp); |
Sanjay Patel | a3f4f08 | 2016-08-16 17:54:36 +0000 | [diff] [blame] | 925 | |
Roman Lebedev | 473a063 | 2019-08-29 12:47:20 +0000 | [diff] [blame] | 926 | Value *foldUnsignedMultiplicationOverflowCheck(ICmpInst &Cmp); |
| 927 | |
Craig Topper | 524c44f | 2017-08-23 05:46:07 +0000 | [diff] [blame] | 928 | Instruction *foldICmpSelectConstant(ICmpInst &Cmp, SelectInst *Select, |
Anna Thomas | d67165c | 2017-06-23 13:41:45 +0000 | [diff] [blame] | 929 | ConstantInt *C); |
Craig Topper | 524c44f | 2017-08-23 05:46:07 +0000 | [diff] [blame] | 930 | Instruction *foldICmpTruncConstant(ICmpInst &Cmp, TruncInst *Trunc, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 931 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 932 | Instruction *foldICmpAndConstant(ICmpInst &Cmp, BinaryOperator *And, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 933 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 934 | Instruction *foldICmpXorConstant(ICmpInst &Cmp, BinaryOperator *Xor, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 935 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 936 | Instruction *foldICmpOrConstant(ICmpInst &Cmp, BinaryOperator *Or, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 937 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 938 | Instruction *foldICmpMulConstant(ICmpInst &Cmp, BinaryOperator *Mul, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 939 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 940 | Instruction *foldICmpShlConstant(ICmpInst &Cmp, BinaryOperator *Shl, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 941 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 942 | Instruction *foldICmpShrConstant(ICmpInst &Cmp, BinaryOperator *Shr, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 943 | const APInt &C); |
Sanjay Patel | 80bea34 | 2019-09-11 12:04:26 +0000 | [diff] [blame] | 944 | Instruction *foldICmpSRemConstant(ICmpInst &Cmp, BinaryOperator *UDiv, |
| 945 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 946 | Instruction *foldICmpUDivConstant(ICmpInst &Cmp, BinaryOperator *UDiv, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 947 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 948 | Instruction *foldICmpDivConstant(ICmpInst &Cmp, BinaryOperator *Div, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 949 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 950 | Instruction *foldICmpSubConstant(ICmpInst &Cmp, BinaryOperator *Sub, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 951 | const APInt &C); |
Sanjay Patel | c9196c4 | 2016-08-22 21:24:29 +0000 | [diff] [blame] | 952 | Instruction *foldICmpAddConstant(ICmpInst &Cmp, BinaryOperator *Add, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 953 | const APInt &C); |
Sanjay Patel | d3c7bb28 | 2016-08-26 16:42:33 +0000 | [diff] [blame] | 954 | Instruction *foldICmpAndConstConst(ICmpInst &Cmp, BinaryOperator *And, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 955 | const APInt &C1); |
Sanjay Patel | 14e0e18 | 2016-08-26 18:28:46 +0000 | [diff] [blame] | 956 | Instruction *foldICmpAndShift(ICmpInst &Cmp, BinaryOperator *And, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 957 | const APInt &C1, const APInt &C2); |
Sanjay Patel | 8da42cc | 2016-09-15 22:26:31 +0000 | [diff] [blame] | 958 | Instruction *foldICmpShrConstConst(ICmpInst &I, Value *ShAmt, const APInt &C1, |
| 959 | const APInt &C2); |
| 960 | Instruction *foldICmpShlConstConst(ICmpInst &I, Value *ShAmt, const APInt &C1, |
| 961 | const APInt &C2); |
Sanjay Patel | a3f4f08 | 2016-08-16 17:54:36 +0000 | [diff] [blame] | 962 | |
Sanjay Patel | f58f68c | 2016-09-10 15:03:44 +0000 | [diff] [blame] | 963 | Instruction *foldICmpBinOpEqualityWithConstant(ICmpInst &Cmp, |
| 964 | BinaryOperator *BO, |
Craig Topper | 8ed1aa9 | 2017-10-03 05:31:07 +0000 | [diff] [blame] | 965 | const APInt &C); |
Nikita Popov | 6515db2 | 2019-01-19 09:56:01 +0000 | [diff] [blame] | 966 | Instruction *foldICmpIntrinsicWithConstant(ICmpInst &ICI, IntrinsicInst *II, |
| 967 | const APInt &C); |
| 968 | Instruction *foldICmpEqIntrinsicWithConstant(ICmpInst &ICI, IntrinsicInst *II, |
| 969 | const APInt &C); |
Sanjay Patel | 4339506 | 2016-07-21 18:07:40 +0000 | [diff] [blame] | 970 | |
Sanjay Patel | 453ceff | 2016-09-29 22:18:30 +0000 | [diff] [blame] | 971 | // Helpers of visitSelectInst(). |
Sanjay Patel | f7b851f | 2016-09-30 19:49:22 +0000 | [diff] [blame] | 972 | Instruction *foldSelectExtConst(SelectInst &Sel); |
Sanjay Patel | 453ceff | 2016-09-29 22:18:30 +0000 | [diff] [blame] | 973 | Instruction *foldSelectOpOp(SelectInst &SI, Instruction *TI, Instruction *FI); |
| 974 | Instruction *foldSelectIntoOp(SelectInst &SI, Value *, Value *); |
| 975 | Instruction *foldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1, |
| 976 | Value *A, Value *B, Instruction &Outer, |
| 977 | SelectPatternFlavor SPF2, Value *C); |
| 978 | Instruction *foldSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI); |
| 979 | |
Craig Topper | 70e4f43 | 2017-04-02 17:57:30 +0000 | [diff] [blame] | 980 | Instruction *OptAndOp(BinaryOperator *Op, ConstantInt *OpRHS, |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 981 | ConstantInt *AndRHS, BinaryOperator &TheAnd); |
Jakub Staszak | 190db2f | 2013-01-14 23:16:36 +0000 | [diff] [blame] | 982 | |
Sanjay Patel | 85d7974 | 2016-08-31 19:49:56 +0000 | [diff] [blame] | 983 | Value *insertRangeTest(Value *V, const APInt &Lo, const APInt &Hi, |
| 984 | bool isSigned, bool Inside); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 985 | Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocaInst &AI); |
Sanjay Patel | 4a12aa9 | 2018-11-10 20:29:25 +0000 | [diff] [blame] | 986 | bool mergeStoreIntoSuccessor(StoreInst &SI); |
Igor Laevsky | 900ffa3 | 2017-02-08 14:32:04 +0000 | [diff] [blame] | 987 | |
Sanjay Patel | 6072842 | 2018-11-14 16:03:36 +0000 | [diff] [blame] | 988 | /// Given an 'or' instruction, check to see if it is part of a bswap idiom. |
| 989 | /// If so, return the equivalent bswap intrinsic. |
| 990 | Instruction *matchBSwap(BinaryOperator &Or); |
| 991 | |
Daniel Neilson | 8f30ec6 | 2018-05-11 14:30:02 +0000 | [diff] [blame] | 992 | Instruction *SimplifyAnyMemTransfer(AnyMemTransferInst *MI); |
Daniel Neilson | f6651d4 | 2018-05-11 20:04:50 +0000 | [diff] [blame] | 993 | Instruction *SimplifyAnyMemSet(AnyMemSetInst *MI); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 994 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 995 | Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned); |
Duncan Sands | 533c8ae | 2012-10-23 08:28:26 +0000 | [diff] [blame] | 996 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 997 | /// Returns a value X such that Val = X * Scale, or null if none. |
Chandler Carruth | 3a62216 | 2015-01-20 19:27:58 +0000 | [diff] [blame] | 998 | /// |
| 999 | /// If the multiplication is known not to overflow then NoSignedWrap is set. |
Duncan Sands | 533c8ae | 2012-10-23 08:28:26 +0000 | [diff] [blame] | 1000 | Value *Descale(Value *Val, APInt Scale, bool &NoSignedWrap); |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 1001 | }; |
| 1002 | |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 1003 | } // end namespace llvm |
Chris Lattner | 35522b7 | 2010-01-04 07:12:23 +0000 | [diff] [blame] | 1004 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 1005 | #undef DEBUG_TYPE |
| 1006 | |
Eugene Zelenko | 7f0f9bc | 2017-10-24 21:24:53 +0000 | [diff] [blame] | 1007 | #endif // LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H |