blob: 2012934dbb9b33f32264a94ae27aad8f0a22b650 [file] [log] [blame]
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001//===- InstCombineCalls.cpp -----------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the visitCall and visitInvoke functions.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carrutha9174582015-01-22 05:25:13 +000014#include "InstCombineInternal.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000015#include "llvm/ADT/APFloat.h"
16#include "llvm/ADT/APInt.h"
17#include "llvm/ADT/ArrayRef.h"
18#include "llvm/ADT/None.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000019#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/SmallVector.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000021#include "llvm/ADT/Statistic.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000022#include "llvm/ADT/Twine.h"
David Majnemer15032582015-05-22 03:56:46 +000023#include "llvm/Analysis/InstructionSimplify.h"
Chris Lattner7a9e47a2010-01-05 07:32:13 +000024#include "llvm/Analysis/MemoryBuiltins.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000025#include "llvm/Analysis/ValueTracking.h"
26#include "llvm/IR/BasicBlock.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000027#include "llvm/IR/CallSite.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000028#include "llvm/IR/Constant.h"
29#include "llvm/IR/DataLayout.h"
30#include "llvm/IR/DerivedTypes.h"
31#include "llvm/IR/Function.h"
32#include "llvm/IR/GlobalVariable.h"
33#include "llvm/IR/InstrTypes.h"
34#include "llvm/IR/Instruction.h"
35#include "llvm/IR/Instructions.h"
36#include "llvm/IR/IntrinsicInst.h"
37#include "llvm/IR/Intrinsics.h"
38#include "llvm/IR/LLVMContext.h"
39#include "llvm/IR/Metadata.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000040#include "llvm/IR/PatternMatch.h"
Philip Reames1a1bdb22014-12-02 18:50:36 +000041#include "llvm/IR/Statepoint.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000042#include "llvm/IR/Type.h"
43#include "llvm/IR/Value.h"
44#include "llvm/IR/ValueHandle.h"
45#include "llvm/Support/Casting.h"
46#include "llvm/Support/Debug.h"
Craig Topperb45eabc2017-04-26 16:39:58 +000047#include "llvm/Support/KnownBits.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000048#include "llvm/Support/MathExtras.h"
Chris Lattner6fcd32e2010-12-25 20:37:57 +000049#include "llvm/Transforms/Utils/Local.h"
Chandler Carruthba4c5172015-01-21 11:23:40 +000050#include "llvm/Transforms/Utils/SimplifyLibCalls.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000051#include <algorithm>
52#include <cassert>
53#include <cstdint>
54#include <cstring>
55#include <vector>
56
Chris Lattner7a9e47a2010-01-05 07:32:13 +000057using namespace llvm;
Michael Ilseman536cc322012-12-13 03:13:36 +000058using namespace PatternMatch;
Chris Lattner7a9e47a2010-01-05 07:32:13 +000059
Chandler Carruth964daaa2014-04-22 02:55:47 +000060#define DEBUG_TYPE "instcombine"
61
Meador Ingee3f2b262012-11-30 04:05:06 +000062STATISTIC(NumSimplified, "Number of library calls simplified");
63
Igor Laevskya9b68722017-02-08 15:21:48 +000064static cl::opt<unsigned> UnfoldElementAtomicMemcpyMaxElements(
Igor Laevsky900ffa32017-02-08 14:32:04 +000065 "unfold-element-atomic-memcpy-max-elements",
66 cl::init(16),
67 cl::desc("Maximum number of elements in atomic memcpy the optimizer is "
68 "allowed to unfold"));
69
Sanjay Patelcd4377c2016-01-20 22:24:38 +000070/// Return the specified type promoted as it would be to pass though a va_arg
71/// area.
Chris Lattner229907c2011-07-18 04:54:35 +000072static Type *getPromotedType(Type *Ty) {
73 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +000074 if (ITy->getBitWidth() < 32)
75 return Type::getInt32Ty(Ty->getContext());
76 }
77 return Ty;
78}
79
Sanjay Patel368ac5d2016-02-21 17:29:33 +000080/// Return a constant boolean vector that has true elements in all positions
Sanjay Patel24401302016-02-21 17:33:31 +000081/// where the input constant data vector has an element with the sign bit set.
Sanjay Patel368ac5d2016-02-21 17:29:33 +000082static Constant *getNegativeIsTrueBoolVec(ConstantDataVector *V) {
83 SmallVector<Constant *, 32> BoolVec;
84 IntegerType *BoolTy = Type::getInt1Ty(V->getContext());
85 for (unsigned I = 0, E = V->getNumElements(); I != E; ++I) {
86 Constant *Elt = V->getElementAsConstant(I);
87 assert((isa<ConstantInt>(Elt) || isa<ConstantFP>(Elt)) &&
88 "Unexpected constant data vector element type");
89 bool Sign = V->getElementType()->isIntegerTy()
90 ? cast<ConstantInt>(Elt)->isNegative()
91 : cast<ConstantFP>(Elt)->isNegative();
92 BoolVec.push_back(ConstantInt::get(BoolTy, Sign));
93 }
94 return ConstantVector::get(BoolVec);
95}
96
Daniel Neilson3faabbb2017-06-16 14:43:59 +000097Instruction *InstCombiner::SimplifyElementUnorderedAtomicMemCpy(
98 ElementUnorderedAtomicMemCpyInst *AMI) {
Igor Laevsky900ffa32017-02-08 14:32:04 +000099 // Try to unfold this intrinsic into sequence of explicit atomic loads and
100 // stores.
101 // First check that number of elements is compile time constant.
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000102 auto *LengthCI = dyn_cast<ConstantInt>(AMI->getLength());
103 if (!LengthCI)
Igor Laevsky900ffa32017-02-08 14:32:04 +0000104 return nullptr;
105
106 // Check that there are not too many elements.
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000107 uint64_t LengthInBytes = LengthCI->getZExtValue();
108 uint32_t ElementSizeInBytes = AMI->getElementSizeInBytes();
109 uint64_t NumElements = LengthInBytes / ElementSizeInBytes;
Igor Laevsky900ffa32017-02-08 14:32:04 +0000110 if (NumElements >= UnfoldElementAtomicMemcpyMaxElements)
111 return nullptr;
112
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000113 // Only expand if there are elements to copy.
114 if (NumElements > 0) {
115 // Don't unfold into illegal integers
116 uint64_t ElementSizeInBits = ElementSizeInBytes * 8;
117 if (!getDataLayout().isLegalInteger(ElementSizeInBits))
118 return nullptr;
Igor Laevsky900ffa32017-02-08 14:32:04 +0000119
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000120 // Cast source and destination to the correct type. Intrinsic input
121 // arguments are usually represented as i8*. Often operands will be
122 // explicitly casted to i8* and we can just strip those casts instead of
123 // inserting new ones. However it's easier to rely on other InstCombine
124 // rules which will cover trivial cases anyway.
125 Value *Src = AMI->getRawSource();
126 Value *Dst = AMI->getRawDest();
127 Type *ElementPointerType =
128 Type::getIntNPtrTy(AMI->getContext(), ElementSizeInBits,
129 Src->getType()->getPointerAddressSpace());
Igor Laevsky900ffa32017-02-08 14:32:04 +0000130
Craig Topperbb4069e2017-07-07 23:16:26 +0000131 Value *SrcCasted = Builder.CreatePointerCast(Src, ElementPointerType,
132 "memcpy_unfold.src_casted");
133 Value *DstCasted = Builder.CreatePointerCast(Dst, ElementPointerType,
134 "memcpy_unfold.dst_casted");
Igor Laevsky900ffa32017-02-08 14:32:04 +0000135
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000136 for (uint64_t i = 0; i < NumElements; ++i) {
137 // Get current element addresses
138 ConstantInt *ElementIdxCI =
139 ConstantInt::get(AMI->getContext(), APInt(64, i));
140 Value *SrcElementAddr =
Craig Topperbb4069e2017-07-07 23:16:26 +0000141 Builder.CreateGEP(SrcCasted, ElementIdxCI, "memcpy_unfold.src_addr");
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000142 Value *DstElementAddr =
Craig Topperbb4069e2017-07-07 23:16:26 +0000143 Builder.CreateGEP(DstCasted, ElementIdxCI, "memcpy_unfold.dst_addr");
Igor Laevsky900ffa32017-02-08 14:32:04 +0000144
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000145 // Load from the source. Transfer alignment information and mark load as
146 // unordered atomic.
Craig Topperbb4069e2017-07-07 23:16:26 +0000147 LoadInst *Load = Builder.CreateLoad(SrcElementAddr, "memcpy_unfold.val");
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000148 Load->setOrdering(AtomicOrdering::Unordered);
149 // We know alignment of the first element. It is also guaranteed by the
150 // verifier that element size is less or equal than first element
151 // alignment and both of this values are powers of two. This means that
152 // all subsequent accesses are at least element size aligned.
153 // TODO: We can infer better alignment but there is no evidence that this
154 // will matter.
155 Load->setAlignment(i == 0 ? AMI->getParamAlignment(1)
156 : ElementSizeInBytes);
157 Load->setDebugLoc(AMI->getDebugLoc());
Igor Laevsky900ffa32017-02-08 14:32:04 +0000158
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000159 // Store loaded value via unordered atomic store.
Craig Topperbb4069e2017-07-07 23:16:26 +0000160 StoreInst *Store = Builder.CreateStore(Load, DstElementAddr);
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000161 Store->setOrdering(AtomicOrdering::Unordered);
162 Store->setAlignment(i == 0 ? AMI->getParamAlignment(0)
163 : ElementSizeInBytes);
164 Store->setDebugLoc(AMI->getDebugLoc());
165 }
Igor Laevsky900ffa32017-02-08 14:32:04 +0000166 }
167
168 // Set the number of elements of the copy to 0, it will be deleted on the
169 // next iteration.
Daniel Neilson3faabbb2017-06-16 14:43:59 +0000170 AMI->setLength(Constant::getNullValue(LengthCI->getType()));
Igor Laevsky900ffa32017-02-08 14:32:04 +0000171 return AMI;
172}
173
Pete Cooper67cf9a72015-11-19 05:56:52 +0000174Instruction *InstCombiner::SimplifyMemTransfer(MemIntrinsic *MI) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000175 unsigned DstAlign = getKnownAlignment(MI->getArgOperand(0), DL, MI, &AC, &DT);
176 unsigned SrcAlign = getKnownAlignment(MI->getArgOperand(1), DL, MI, &AC, &DT);
Pete Cooper67cf9a72015-11-19 05:56:52 +0000177 unsigned MinAlign = std::min(DstAlign, SrcAlign);
178 unsigned CopyAlign = MI->getAlignment();
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000179
Pete Cooper67cf9a72015-11-19 05:56:52 +0000180 if (CopyAlign < MinAlign) {
181 MI->setAlignment(ConstantInt::get(MI->getAlignmentType(), MinAlign, false));
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000182 return MI;
183 }
Jim Grosbach7815f562012-02-03 00:07:04 +0000184
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000185 // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with
186 // load/store.
Gabor Greif0a136c92010-06-24 13:54:33 +0000187 ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getArgOperand(2));
Craig Topperf40110f2014-04-25 05:29:35 +0000188 if (!MemOpLength) return nullptr;
Jim Grosbach7815f562012-02-03 00:07:04 +0000189
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000190 // Source and destination pointer types are always "i8*" for intrinsic. See
191 // if the size is something we can handle with a single primitive load/store.
192 // A single load+store correctly handles overlapping memory in the memmove
193 // case.
Michael Liao69e172a2012-08-15 03:49:59 +0000194 uint64_t Size = MemOpLength->getLimitedValue();
Alp Tokercb402912014-01-24 17:20:08 +0000195 assert(Size && "0-sized memory transferring should be removed already.");
Jim Grosbach7815f562012-02-03 00:07:04 +0000196
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000197 if (Size > 8 || (Size&(Size-1)))
Craig Topperf40110f2014-04-25 05:29:35 +0000198 return nullptr; // If not 1/2/4/8 bytes, exit.
Jim Grosbach7815f562012-02-03 00:07:04 +0000199
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000200 // Use an integer load+store unless we can find something better.
Mon P Wangc576ee92010-04-04 03:10:48 +0000201 unsigned SrcAddrSp =
Gabor Greif0a136c92010-06-24 13:54:33 +0000202 cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace();
Gabor Greiff3755202010-04-16 15:33:14 +0000203 unsigned DstAddrSp =
Gabor Greif0a136c92010-06-24 13:54:33 +0000204 cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace();
Mon P Wangc576ee92010-04-04 03:10:48 +0000205
Chris Lattner229907c2011-07-18 04:54:35 +0000206 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3);
Mon P Wangc576ee92010-04-04 03:10:48 +0000207 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
208 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
Jim Grosbach7815f562012-02-03 00:07:04 +0000209
Mikael Holmen760dc9a2017-03-01 06:45:20 +0000210 // If the memcpy has metadata describing the members, see if we can get the
211 // TBAA tag describing our copy.
Craig Topperf40110f2014-04-25 05:29:35 +0000212 MDNode *CopyMD = nullptr;
Mikael Holmen760dc9a2017-03-01 06:45:20 +0000213 if (MDNode *M = MI->getMetadata(LLVMContext::MD_tbaa_struct)) {
214 if (M->getNumOperands() == 3 && M->getOperand(0) &&
215 mdconst::hasa<ConstantInt>(M->getOperand(0)) &&
Craig Topper79ab6432017-07-06 18:39:47 +0000216 mdconst::extract<ConstantInt>(M->getOperand(0))->isZero() &&
Mikael Holmen760dc9a2017-03-01 06:45:20 +0000217 M->getOperand(1) &&
218 mdconst::hasa<ConstantInt>(M->getOperand(1)) &&
219 mdconst::extract<ConstantInt>(M->getOperand(1))->getValue() ==
220 Size &&
221 M->getOperand(2) && isa<MDNode>(M->getOperand(2)))
222 CopyMD = cast<MDNode>(M->getOperand(2));
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000223 }
Jim Grosbach7815f562012-02-03 00:07:04 +0000224
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000225 // If the memcpy/memmove provides better alignment info than we can
226 // infer, use it.
Pete Cooper67cf9a72015-11-19 05:56:52 +0000227 SrcAlign = std::max(SrcAlign, CopyAlign);
228 DstAlign = std::max(DstAlign, CopyAlign);
Jim Grosbach7815f562012-02-03 00:07:04 +0000229
Craig Topperbb4069e2017-07-07 23:16:26 +0000230 Value *Src = Builder.CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy);
231 Value *Dest = Builder.CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
232 LoadInst *L = Builder.CreateLoad(Src, MI->isVolatile());
Eli Friedman49346012011-05-18 19:57:14 +0000233 L->setAlignment(SrcAlign);
Dan Gohman3f553c22012-09-13 21:51:01 +0000234 if (CopyMD)
235 L->setMetadata(LLVMContext::MD_tbaa, CopyMD);
Dorit Nuzmanabd15f62016-09-04 07:49:39 +0000236 MDNode *LoopMemParallelMD =
237 MI->getMetadata(LLVMContext::MD_mem_parallel_loop_access);
238 if (LoopMemParallelMD)
239 L->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD);
Dorit Nuzman7673ba72016-09-04 07:06:00 +0000240
Craig Topperbb4069e2017-07-07 23:16:26 +0000241 StoreInst *S = Builder.CreateStore(L, Dest, MI->isVolatile());
Eli Friedman49346012011-05-18 19:57:14 +0000242 S->setAlignment(DstAlign);
Dan Gohman3f553c22012-09-13 21:51:01 +0000243 if (CopyMD)
244 S->setMetadata(LLVMContext::MD_tbaa, CopyMD);
Dorit Nuzmanabd15f62016-09-04 07:49:39 +0000245 if (LoopMemParallelMD)
246 S->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD);
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000247
248 // Set the size of the copy to 0, it will be deleted on the next iteration.
Gabor Greif5b1370e2010-06-28 16:50:57 +0000249 MI->setArgOperand(2, Constant::getNullValue(MemOpLength->getType()));
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000250 return MI;
251}
252
253Instruction *InstCombiner::SimplifyMemSet(MemSetInst *MI) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000254 unsigned Alignment = getKnownAlignment(MI->getDest(), DL, MI, &AC, &DT);
Pete Cooper67cf9a72015-11-19 05:56:52 +0000255 if (MI->getAlignment() < Alignment) {
256 MI->setAlignment(ConstantInt::get(MI->getAlignmentType(),
257 Alignment, false));
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000258 return MI;
259 }
Jim Grosbach7815f562012-02-03 00:07:04 +0000260
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000261 // Extract the length and alignment and fill if they are constant.
262 ConstantInt *LenC = dyn_cast<ConstantInt>(MI->getLength());
263 ConstantInt *FillC = dyn_cast<ConstantInt>(MI->getValue());
Duncan Sands9dff9be2010-02-15 16:12:20 +0000264 if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8))
Craig Topperf40110f2014-04-25 05:29:35 +0000265 return nullptr;
Michael Liao69e172a2012-08-15 03:49:59 +0000266 uint64_t Len = LenC->getLimitedValue();
Pete Cooper67cf9a72015-11-19 05:56:52 +0000267 Alignment = MI->getAlignment();
Michael Liao69e172a2012-08-15 03:49:59 +0000268 assert(Len && "0-sized memory setting should be removed already.");
Jim Grosbach7815f562012-02-03 00:07:04 +0000269
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000270 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
271 if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) {
Chris Lattner229907c2011-07-18 04:54:35 +0000272 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8.
Jim Grosbach7815f562012-02-03 00:07:04 +0000273
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000274 Value *Dest = MI->getDest();
Mon P Wang1991c472010-12-20 01:05:30 +0000275 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
276 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
Craig Topperbb4069e2017-07-07 23:16:26 +0000277 Dest = Builder.CreateBitCast(Dest, NewDstPtrTy);
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000278
279 // Alignment 0 is identity for alignment 1 for memset, but not store.
280 if (Alignment == 0) Alignment = 1;
Jim Grosbach7815f562012-02-03 00:07:04 +0000281
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000282 // Extract the fill value and store.
283 uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL;
Craig Topperbb4069e2017-07-07 23:16:26 +0000284 StoreInst *S = Builder.CreateStore(ConstantInt::get(ITy, Fill), Dest,
285 MI->isVolatile());
Eli Friedman49346012011-05-18 19:57:14 +0000286 S->setAlignment(Alignment);
Jim Grosbach7815f562012-02-03 00:07:04 +0000287
Chris Lattner7a9e47a2010-01-05 07:32:13 +0000288 // Set the size of the copy to 0, it will be deleted on the next iteration.
289 MI->setLength(Constant::getNullValue(LenC->getType()));
290 return MI;
291 }
292
Simon Pilgrim18617d12015-08-05 08:18:00 +0000293 return nullptr;
294}
295
Sanjay Patel6038d3e2016-01-29 23:27:03 +0000296static Value *simplifyX86immShift(const IntrinsicInst &II,
Simon Pilgrimbecd5e82015-08-13 07:39:03 +0000297 InstCombiner::BuilderTy &Builder) {
298 bool LogicalShift = false;
299 bool ShiftLeft = false;
300
301 switch (II.getIntrinsicID()) {
Craig Topperb4173a52016-11-13 07:26:19 +0000302 default: llvm_unreachable("Unexpected intrinsic!");
Simon Pilgrimbecd5e82015-08-13 07:39:03 +0000303 case Intrinsic::x86_sse2_psra_d:
304 case Intrinsic::x86_sse2_psra_w:
305 case Intrinsic::x86_sse2_psrai_d:
306 case Intrinsic::x86_sse2_psrai_w:
307 case Intrinsic::x86_avx2_psra_d:
308 case Intrinsic::x86_avx2_psra_w:
309 case Intrinsic::x86_avx2_psrai_d:
310 case Intrinsic::x86_avx2_psrai_w:
Craig Topper8b831cb2016-11-13 01:51:55 +0000311 case Intrinsic::x86_avx512_psra_q_128:
312 case Intrinsic::x86_avx512_psrai_q_128:
313 case Intrinsic::x86_avx512_psra_q_256:
314 case Intrinsic::x86_avx512_psrai_q_256:
315 case Intrinsic::x86_avx512_psra_d_512:
316 case Intrinsic::x86_avx512_psra_q_512:
317 case Intrinsic::x86_avx512_psra_w_512:
318 case Intrinsic::x86_avx512_psrai_d_512:
319 case Intrinsic::x86_avx512_psrai_q_512:
320 case Intrinsic::x86_avx512_psrai_w_512:
Simon Pilgrimbecd5e82015-08-13 07:39:03 +0000321 LogicalShift = false; ShiftLeft = false;
322 break;
323 case Intrinsic::x86_sse2_psrl_d:
324 case Intrinsic::x86_sse2_psrl_q:
325 case Intrinsic::x86_sse2_psrl_w:
326 case Intrinsic::x86_sse2_psrli_d:
327 case Intrinsic::x86_sse2_psrli_q:
328 case Intrinsic::x86_sse2_psrli_w:
329 case Intrinsic::x86_avx2_psrl_d:
330 case Intrinsic::x86_avx2_psrl_q:
331 case Intrinsic::x86_avx2_psrl_w:
332 case Intrinsic::x86_avx2_psrli_d:
333 case Intrinsic::x86_avx2_psrli_q:
334 case Intrinsic::x86_avx2_psrli_w:
Craig Topper8b831cb2016-11-13 01:51:55 +0000335 case Intrinsic::x86_avx512_psrl_d_512:
336 case Intrinsic::x86_avx512_psrl_q_512:
337 case Intrinsic::x86_avx512_psrl_w_512:
338 case Intrinsic::x86_avx512_psrli_d_512:
339 case Intrinsic::x86_avx512_psrli_q_512:
340 case Intrinsic::x86_avx512_psrli_w_512:
Simon Pilgrimbecd5e82015-08-13 07:39:03 +0000341 LogicalShift = true; ShiftLeft = false;
342 break;
343 case Intrinsic::x86_sse2_psll_d:
344 case Intrinsic::x86_sse2_psll_q:
345 case Intrinsic::x86_sse2_psll_w:
346 case Intrinsic::x86_sse2_pslli_d:
347 case Intrinsic::x86_sse2_pslli_q:
348 case Intrinsic::x86_sse2_pslli_w:
349 case Intrinsic::x86_avx2_psll_d:
350 case Intrinsic::x86_avx2_psll_q:
351 case Intrinsic::x86_avx2_psll_w:
352 case Intrinsic::x86_avx2_pslli_d:
353 case Intrinsic::x86_avx2_pslli_q:
354 case Intrinsic::x86_avx2_pslli_w:
Craig Topper8b831cb2016-11-13 01:51:55 +0000355 case Intrinsic::x86_avx512_psll_d_512:
356 case Intrinsic::x86_avx512_psll_q_512:
357 case Intrinsic::x86_avx512_psll_w_512:
358 case Intrinsic::x86_avx512_pslli_d_512:
359 case Intrinsic::x86_avx512_pslli_q_512:
360 case Intrinsic::x86_avx512_pslli_w_512:
Simon Pilgrimbecd5e82015-08-13 07:39:03 +0000361 LogicalShift = true; ShiftLeft = true;
362 break;
363 }
Simon Pilgrima3a72b42015-08-10 20:21:15 +0000364 assert((LogicalShift || !ShiftLeft) && "Only logical shifts can shift left");
365
Simon Pilgrim3815c162015-08-07 18:22:50 +0000366 // Simplify if count is constant.
367 auto Arg1 = II.getArgOperand(1);
368 auto CAZ = dyn_cast<ConstantAggregateZero>(Arg1);
369 auto CDV = dyn_cast<ConstantDataVector>(Arg1);
370 auto CInt = dyn_cast<ConstantInt>(Arg1);
371 if (!CAZ && !CDV && !CInt)
Simon Pilgrim18617d12015-08-05 08:18:00 +0000372 return nullptr;
Simon Pilgrim3815c162015-08-07 18:22:50 +0000373
374 APInt Count(64, 0);
375 if (CDV) {
376 // SSE2/AVX2 uses all the first 64-bits of the 128-bit vector
377 // operand to compute the shift amount.
378 auto VT = cast<VectorType>(CDV->getType());
379 unsigned BitWidth = VT->getElementType()->getPrimitiveSizeInBits();
380 assert((64 % BitWidth) == 0 && "Unexpected packed shift size");
381 unsigned NumSubElts = 64 / BitWidth;
382
383 // Concatenate the sub-elements to create the 64-bit value.
384 for (unsigned i = 0; i != NumSubElts; ++i) {
385 unsigned SubEltIdx = (NumSubElts - 1) - i;
386 auto SubElt = cast<ConstantInt>(CDV->getElementAsConstant(SubEltIdx));
Craig Topper24e71012017-04-28 03:36:24 +0000387 Count <<= BitWidth;
Simon Pilgrim3815c162015-08-07 18:22:50 +0000388 Count |= SubElt->getValue().zextOrTrunc(64);
389 }
390 }
391 else if (CInt)
392 Count = CInt->getValue();
Simon Pilgrim18617d12015-08-05 08:18:00 +0000393
394 auto Vec = II.getArgOperand(0);
395 auto VT = cast<VectorType>(Vec->getType());
396 auto SVT = VT->getElementType();
Simon Pilgrim3815c162015-08-07 18:22:50 +0000397 unsigned VWidth = VT->getNumElements();
398 unsigned BitWidth = SVT->getPrimitiveSizeInBits();
399
400 // If shift-by-zero then just return the original value.
Craig Topper73ba1c82017-06-07 07:40:37 +0000401 if (Count.isNullValue())
Simon Pilgrim3815c162015-08-07 18:22:50 +0000402 return Vec;
403
Simon Pilgrima3a72b42015-08-10 20:21:15 +0000404 // Handle cases when Shift >= BitWidth.
405 if (Count.uge(BitWidth)) {
406 // If LogicalShift - just return zero.
407 if (LogicalShift)
408 return ConstantAggregateZero::get(VT);
409
410 // If ArithmeticShift - clamp Shift to (BitWidth - 1).
411 Count = APInt(64, BitWidth - 1);
412 }
Simon Pilgrim18617d12015-08-05 08:18:00 +0000413
Simon Pilgrim18617d12015-08-05 08:18:00 +0000414 // Get a constant vector of the same type as the first operand.
Simon Pilgrim3815c162015-08-07 18:22:50 +0000415 auto ShiftAmt = ConstantInt::get(SVT, Count.zextOrTrunc(BitWidth));
416 auto ShiftVec = Builder.CreateVectorSplat(VWidth, ShiftAmt);
Simon Pilgrim18617d12015-08-05 08:18:00 +0000417
418 if (ShiftLeft)
Simon Pilgrim3815c162015-08-07 18:22:50 +0000419 return Builder.CreateShl(Vec, ShiftVec);
Simon Pilgrim18617d12015-08-05 08:18:00 +0000420
Simon Pilgrima3a72b42015-08-10 20:21:15 +0000421 if (LogicalShift)
422 return Builder.CreateLShr(Vec, ShiftVec);
423
424 return Builder.CreateAShr(Vec, ShiftVec);
Simon Pilgrim18617d12015-08-05 08:18:00 +0000425}
426
Simon Pilgrimdb9893f2016-06-07 10:27:15 +0000427// Attempt to simplify AVX2 per-element shift intrinsics to a generic IR shift.
428// Unlike the generic IR shifts, the intrinsics have defined behaviour for out
429// of range shift amounts (logical - set to zero, arithmetic - splat sign bit).
430static Value *simplifyX86varShift(const IntrinsicInst &II,
431 InstCombiner::BuilderTy &Builder) {
432 bool LogicalShift = false;
433 bool ShiftLeft = false;
434
435 switch (II.getIntrinsicID()) {
Craig Topperb4173a52016-11-13 07:26:19 +0000436 default: llvm_unreachable("Unexpected intrinsic!");
Simon Pilgrimdb9893f2016-06-07 10:27:15 +0000437 case Intrinsic::x86_avx2_psrav_d:
438 case Intrinsic::x86_avx2_psrav_d_256:
Craig Topperb4173a52016-11-13 07:26:19 +0000439 case Intrinsic::x86_avx512_psrav_q_128:
440 case Intrinsic::x86_avx512_psrav_q_256:
441 case Intrinsic::x86_avx512_psrav_d_512:
442 case Intrinsic::x86_avx512_psrav_q_512:
Craig Topper1de753f2016-11-18 06:04:33 +0000443 case Intrinsic::x86_avx512_psrav_w_128:
444 case Intrinsic::x86_avx512_psrav_w_256:
445 case Intrinsic::x86_avx512_psrav_w_512:
Simon Pilgrimdb9893f2016-06-07 10:27:15 +0000446 LogicalShift = false;
447 ShiftLeft = false;
448 break;
449 case Intrinsic::x86_avx2_psrlv_d:
450 case Intrinsic::x86_avx2_psrlv_d_256:
451 case Intrinsic::x86_avx2_psrlv_q:
452 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topperb4173a52016-11-13 07:26:19 +0000453 case Intrinsic::x86_avx512_psrlv_d_512:
454 case Intrinsic::x86_avx512_psrlv_q_512:
Craig Topper1de753f2016-11-18 06:04:33 +0000455 case Intrinsic::x86_avx512_psrlv_w_128:
456 case Intrinsic::x86_avx512_psrlv_w_256:
457 case Intrinsic::x86_avx512_psrlv_w_512:
Simon Pilgrimdb9893f2016-06-07 10:27:15 +0000458 LogicalShift = true;
459 ShiftLeft = false;
460 break;
461 case Intrinsic::x86_avx2_psllv_d:
462 case Intrinsic::x86_avx2_psllv_d_256:
463 case Intrinsic::x86_avx2_psllv_q:
464 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topperb4173a52016-11-13 07:26:19 +0000465 case Intrinsic::x86_avx512_psllv_d_512:
466 case Intrinsic::x86_avx512_psllv_q_512:
Craig Topper1de753f2016-11-18 06:04:33 +0000467 case Intrinsic::x86_avx512_psllv_w_128:
468 case Intrinsic::x86_avx512_psllv_w_256:
469 case Intrinsic::x86_avx512_psllv_w_512:
Simon Pilgrimdb9893f2016-06-07 10:27:15 +0000470 LogicalShift = true;
471 ShiftLeft = true;
472 break;
473 }
474 assert((LogicalShift || !ShiftLeft) && "Only logical shifts can shift left");
475
476 // Simplify if all shift amounts are constant/undef.
477 auto *CShift = dyn_cast<Constant>(II.getArgOperand(1));
478 if (!CShift)
479 return nullptr;
480
481 auto Vec = II.getArgOperand(0);
482 auto VT = cast<VectorType>(II.getType());
483 auto SVT = VT->getVectorElementType();
484 int NumElts = VT->getNumElements();
485 int BitWidth = SVT->getIntegerBitWidth();
486
487 // Collect each element's shift amount.
488 // We also collect special cases: UNDEF = -1, OUT-OF-RANGE = BitWidth.
489 bool AnyOutOfRange = false;
490 SmallVector<int, 8> ShiftAmts;
491 for (int I = 0; I < NumElts; ++I) {
492 auto *CElt = CShift->getAggregateElement(I);
493 if (CElt && isa<UndefValue>(CElt)) {
494 ShiftAmts.push_back(-1);
495 continue;
496 }
497
498 auto *COp = dyn_cast_or_null<ConstantInt>(CElt);
499 if (!COp)
500 return nullptr;
501
502 // Handle out of range shifts.
503 // If LogicalShift - set to BitWidth (special case).
504 // If ArithmeticShift - set to (BitWidth - 1) (sign splat).
505 APInt ShiftVal = COp->getValue();
506 if (ShiftVal.uge(BitWidth)) {
507 AnyOutOfRange = LogicalShift;
508 ShiftAmts.push_back(LogicalShift ? BitWidth : BitWidth - 1);
509 continue;
510 }
511
512 ShiftAmts.push_back((int)ShiftVal.getZExtValue());
513 }
514
515 // If all elements out of range or UNDEF, return vector of zeros/undefs.
516 // ArithmeticShift should only hit this if they are all UNDEF.
517 auto OutOfRange = [&](int Idx) { return (Idx < 0) || (BitWidth <= Idx); };
Eugene Zelenkocdc71612016-08-11 17:20:18 +0000518 if (all_of(ShiftAmts, OutOfRange)) {
Simon Pilgrimdb9893f2016-06-07 10:27:15 +0000519 SmallVector<Constant *, 8> ConstantVec;
520 for (int Idx : ShiftAmts) {
521 if (Idx < 0) {
522 ConstantVec.push_back(UndefValue::get(SVT));
523 } else {
524 assert(LogicalShift && "Logical shift expected");
525 ConstantVec.push_back(ConstantInt::getNullValue(SVT));
526 }
527 }
528 return ConstantVector::get(ConstantVec);
529 }
530
531 // We can't handle only some out of range values with generic logical shifts.
532 if (AnyOutOfRange)
533 return nullptr;
534
535 // Build the shift amount constant vector.
536 SmallVector<Constant *, 8> ShiftVecAmts;
537 for (int Idx : ShiftAmts) {
538 if (Idx < 0)
539 ShiftVecAmts.push_back(UndefValue::get(SVT));
540 else
541 ShiftVecAmts.push_back(ConstantInt::get(SVT, Idx));
542 }
543 auto ShiftVec = ConstantVector::get(ShiftVecAmts);
544
545 if (ShiftLeft)
546 return Builder.CreateShl(Vec, ShiftVec);
547
548 if (LogicalShift)
549 return Builder.CreateLShr(Vec, ShiftVec);
550
551 return Builder.CreateAShr(Vec, ShiftVec);
552}
553
Simon Pilgrimf6f3a3612017-01-23 15:22:59 +0000554static Value *simplifyX86muldq(const IntrinsicInst &II,
555 InstCombiner::BuilderTy &Builder) {
Simon Pilgrima50a93f2017-01-20 18:20:30 +0000556 Value *Arg0 = II.getArgOperand(0);
557 Value *Arg1 = II.getArgOperand(1);
558 Type *ResTy = II.getType();
Simon Pilgrimf6f3a3612017-01-23 15:22:59 +0000559 assert(Arg0->getType()->getScalarSizeInBits() == 32 &&
560 Arg1->getType()->getScalarSizeInBits() == 32 &&
561 ResTy->getScalarSizeInBits() == 64 && "Unexpected muldq/muludq types");
Simon Pilgrima50a93f2017-01-20 18:20:30 +0000562
Simon Pilgrimbb13fda2017-01-23 12:07:32 +0000563 // muldq/muludq(undef, undef) -> zero (matches generic mul behavior)
Simon Pilgrim78f86302017-01-24 11:07:41 +0000564 if (isa<UndefValue>(Arg0) || isa<UndefValue>(Arg1))
Simon Pilgrimbb13fda2017-01-23 12:07:32 +0000565 return ConstantAggregateZero::get(ResTy);
Simon Pilgrima50a93f2017-01-20 18:20:30 +0000566
Simon Pilgrimf6f3a3612017-01-23 15:22:59 +0000567 // Constant folding.
568 // PMULDQ = (mul(vXi64 sext(shuffle<0,2,..>(Arg0)),
569 // vXi64 sext(shuffle<0,2,..>(Arg1))))
570 // PMULUDQ = (mul(vXi64 zext(shuffle<0,2,..>(Arg0)),
571 // vXi64 zext(shuffle<0,2,..>(Arg1))))
572 if (!isa<Constant>(Arg0) || !isa<Constant>(Arg1))
573 return nullptr;
574
575 unsigned NumElts = ResTy->getVectorNumElements();
576 assert(Arg0->getType()->getVectorNumElements() == (2 * NumElts) &&
577 Arg1->getType()->getVectorNumElements() == (2 * NumElts) &&
578 "Unexpected muldq/muludq types");
579
580 unsigned IntrinsicID = II.getIntrinsicID();
581 bool IsSigned = (Intrinsic::x86_sse41_pmuldq == IntrinsicID ||
582 Intrinsic::x86_avx2_pmul_dq == IntrinsicID ||
583 Intrinsic::x86_avx512_pmul_dq_512 == IntrinsicID);
584
585 SmallVector<unsigned, 16> ShuffleMask;
586 for (unsigned i = 0; i != NumElts; ++i)
587 ShuffleMask.push_back(i * 2);
588
589 auto *LHS = Builder.CreateShuffleVector(Arg0, Arg0, ShuffleMask);
590 auto *RHS = Builder.CreateShuffleVector(Arg1, Arg1, ShuffleMask);
591
592 if (IsSigned) {
593 LHS = Builder.CreateSExt(LHS, ResTy);
594 RHS = Builder.CreateSExt(RHS, ResTy);
595 } else {
596 LHS = Builder.CreateZExt(LHS, ResTy);
597 RHS = Builder.CreateZExt(RHS, ResTy);
598 }
599
600 return Builder.CreateMul(LHS, RHS);
Simon Pilgrima50a93f2017-01-20 18:20:30 +0000601}
602
Craig Topper4853c432017-07-06 23:18:42 +0000603static Value *simplifyX86pack(IntrinsicInst &II, bool IsSigned) {
Simon Pilgrim6f6b2792017-01-25 14:37:24 +0000604 Value *Arg0 = II.getArgOperand(0);
605 Value *Arg1 = II.getArgOperand(1);
606 Type *ResTy = II.getType();
607
608 // Fast all undef handling.
609 if (isa<UndefValue>(Arg0) && isa<UndefValue>(Arg1))
610 return UndefValue::get(ResTy);
611
612 Type *ArgTy = Arg0->getType();
613 unsigned NumLanes = ResTy->getPrimitiveSizeInBits() / 128;
614 unsigned NumDstElts = ResTy->getVectorNumElements();
615 unsigned NumSrcElts = ArgTy->getVectorNumElements();
616 assert(NumDstElts == (2 * NumSrcElts) && "Unexpected packing types");
617
618 unsigned NumDstEltsPerLane = NumDstElts / NumLanes;
619 unsigned NumSrcEltsPerLane = NumSrcElts / NumLanes;
620 unsigned DstScalarSizeInBits = ResTy->getScalarSizeInBits();
621 assert(ArgTy->getScalarSizeInBits() == (2 * DstScalarSizeInBits) &&
622 "Unexpected packing types");
623
624 // Constant folding.
625 auto *Cst0 = dyn_cast<Constant>(Arg0);
626 auto *Cst1 = dyn_cast<Constant>(Arg1);
627 if (!Cst0 || !Cst1)
628 return nullptr;
629
630 SmallVector<Constant *, 32> Vals;
631 for (unsigned Lane = 0; Lane != NumLanes; ++Lane) {
632 for (unsigned Elt = 0; Elt != NumDstEltsPerLane; ++Elt) {
633 unsigned SrcIdx = Lane * NumSrcEltsPerLane + Elt % NumSrcEltsPerLane;
634 auto *Cst = (Elt >= NumSrcEltsPerLane) ? Cst1 : Cst0;
635 auto *COp = Cst->getAggregateElement(SrcIdx);
636 if (COp && isa<UndefValue>(COp)) {
637 Vals.push_back(UndefValue::get(ResTy->getScalarType()));
638 continue;
639 }
640
641 auto *CInt = dyn_cast_or_null<ConstantInt>(COp);
642 if (!CInt)
643 return nullptr;
644
645 APInt Val = CInt->getValue();
646 assert(Val.getBitWidth() == ArgTy->getScalarSizeInBits() &&
647 "Unexpected constant bitwidth");
648
649 if (IsSigned) {
650 // PACKSS: Truncate signed value with signed saturation.
651 // Source values less than dst minint are saturated to minint.
652 // Source values greater than dst maxint are saturated to maxint.
653 if (Val.isSignedIntN(DstScalarSizeInBits))
654 Val = Val.trunc(DstScalarSizeInBits);
655 else if (Val.isNegative())
656 Val = APInt::getSignedMinValue(DstScalarSizeInBits);
657 else
658 Val = APInt::getSignedMaxValue(DstScalarSizeInBits);
659 } else {
660 // PACKUS: Truncate signed value with unsigned saturation.
661 // Source values less than zero are saturated to zero.
662 // Source values greater than dst maxuint are saturated to maxuint.
663 if (Val.isIntN(DstScalarSizeInBits))
664 Val = Val.trunc(DstScalarSizeInBits);
665 else if (Val.isNegative())
666 Val = APInt::getNullValue(DstScalarSizeInBits);
667 else
668 Val = APInt::getAllOnesValue(DstScalarSizeInBits);
669 }
670
671 Vals.push_back(ConstantInt::get(ResTy->getScalarType(), Val));
672 }
673 }
674
675 return ConstantVector::get(Vals);
676}
677
Craig Topper4853c432017-07-06 23:18:42 +0000678static Value *simplifyX86movmsk(const IntrinsicInst &II) {
Simon Pilgrim91e3ac82016-06-07 08:18:35 +0000679 Value *Arg = II.getArgOperand(0);
680 Type *ResTy = II.getType();
681 Type *ArgTy = Arg->getType();
682
683 // movmsk(undef) -> zero as we must ensure the upper bits are zero.
684 if (isa<UndefValue>(Arg))
685 return Constant::getNullValue(ResTy);
686
687 // We can't easily peek through x86_mmx types.
688 if (!ArgTy->isVectorTy())
689 return nullptr;
690
691 auto *C = dyn_cast<Constant>(Arg);
692 if (!C)
693 return nullptr;
694
695 // Extract signbits of the vector input and pack into integer result.
696 APInt Result(ResTy->getPrimitiveSizeInBits(), 0);
697 for (unsigned I = 0, E = ArgTy->getVectorNumElements(); I != E; ++I) {
698 auto *COp = C->getAggregateElement(I);
699 if (!COp)
700 return nullptr;
701 if (isa<UndefValue>(COp))
702 continue;
703
704 auto *CInt = dyn_cast<ConstantInt>(COp);
705 auto *CFp = dyn_cast<ConstantFP>(COp);
706 if (!CInt && !CFp)
707 return nullptr;
708
709 if ((CInt && CInt->isNegative()) || (CFp && CFp->isNegative()))
710 Result.setBit(I);
711 }
712
713 return Constant::getIntegerValue(ResTy, Result);
714}
715
Sanjay Patel6038d3e2016-01-29 23:27:03 +0000716static Value *simplifyX86insertps(const IntrinsicInst &II,
Sanjay Patelc86867c2015-04-16 17:52:13 +0000717 InstCombiner::BuilderTy &Builder) {
Sanjay Patel03c03f52016-01-28 00:03:16 +0000718 auto *CInt = dyn_cast<ConstantInt>(II.getArgOperand(2));
719 if (!CInt)
720 return nullptr;
Simon Pilgrim54fcd622015-07-25 20:41:00 +0000721
Sanjay Patel03c03f52016-01-28 00:03:16 +0000722 VectorType *VecTy = cast<VectorType>(II.getType());
723 assert(VecTy->getNumElements() == 4 && "insertps with wrong vector type");
Sanjay Patelc86867c2015-04-16 17:52:13 +0000724
Sanjay Patel03c03f52016-01-28 00:03:16 +0000725 // The immediate permute control byte looks like this:
726 // [3:0] - zero mask for each 32-bit lane
727 // [5:4] - select one 32-bit destination lane
728 // [7:6] - select one 32-bit source lane
Sanjay Patelc86867c2015-04-16 17:52:13 +0000729
Sanjay Patel03c03f52016-01-28 00:03:16 +0000730 uint8_t Imm = CInt->getZExtValue();
731 uint8_t ZMask = Imm & 0xf;
732 uint8_t DestLane = (Imm >> 4) & 0x3;
733 uint8_t SourceLane = (Imm >> 6) & 0x3;
Sanjay Patelc1d20a32015-04-25 20:55:25 +0000734
Sanjay Patel03c03f52016-01-28 00:03:16 +0000735 ConstantAggregateZero *ZeroVector = ConstantAggregateZero::get(VecTy);
Sanjay Patelc86867c2015-04-16 17:52:13 +0000736
Sanjay Patel03c03f52016-01-28 00:03:16 +0000737 // If all zero mask bits are set, this was just a weird way to
738 // generate a zero vector.
739 if (ZMask == 0xf)
740 return ZeroVector;
Sanjay Patelc1d20a32015-04-25 20:55:25 +0000741
Sanjay Patel03c03f52016-01-28 00:03:16 +0000742 // Initialize by passing all of the first source bits through.
Craig Topper99d1eab2016-06-12 00:41:19 +0000743 uint32_t ShuffleMask[4] = { 0, 1, 2, 3 };
Sanjay Patelc1d20a32015-04-25 20:55:25 +0000744
Sanjay Patel03c03f52016-01-28 00:03:16 +0000745 // We may replace the second operand with the zero vector.
746 Value *V1 = II.getArgOperand(1);
747
748 if (ZMask) {
749 // If the zero mask is being used with a single input or the zero mask
750 // overrides the destination lane, this is a shuffle with the zero vector.
751 if ((II.getArgOperand(0) == II.getArgOperand(1)) ||
752 (ZMask & (1 << DestLane))) {
753 V1 = ZeroVector;
754 // We may still move 32-bits of the first source vector from one lane
755 // to another.
756 ShuffleMask[DestLane] = SourceLane;
757 // The zero mask may override the previous insert operation.
758 for (unsigned i = 0; i < 4; ++i)
759 if ((ZMask >> i) & 0x1)
760 ShuffleMask[i] = i + 4;
Sanjay Patelc1d20a32015-04-25 20:55:25 +0000761 } else {
Sanjay Patel03c03f52016-01-28 00:03:16 +0000762 // TODO: Model this case as 2 shuffles or a 'logical and' plus shuffle?
763 return nullptr;
Sanjay Patelc1d20a32015-04-25 20:55:25 +0000764 }
Sanjay Patel03c03f52016-01-28 00:03:16 +0000765 } else {
766 // Replace the selected destination lane with the selected source lane.
767 ShuffleMask[DestLane] = SourceLane + 4;
Sanjay Patelc86867c2015-04-16 17:52:13 +0000768 }
Sanjay Patel03c03f52016-01-28 00:03:16 +0000769
770 return Builder.CreateShuffleVector(II.getArgOperand(0), V1, ShuffleMask);
Sanjay Patelc86867c2015-04-16 17:52:13 +0000771}
772
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000773/// Attempt to simplify SSE4A EXTRQ/EXTRQI instructions using constant folding
774/// or conversion to a shuffle vector.
Sanjay Patel6038d3e2016-01-29 23:27:03 +0000775static Value *simplifyX86extrq(IntrinsicInst &II, Value *Op0,
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000776 ConstantInt *CILength, ConstantInt *CIIndex,
777 InstCombiner::BuilderTy &Builder) {
778 auto LowConstantHighUndef = [&](uint64_t Val) {
779 Type *IntTy64 = Type::getInt64Ty(II.getContext());
780 Constant *Args[] = {ConstantInt::get(IntTy64, Val),
781 UndefValue::get(IntTy64)};
782 return ConstantVector::get(Args);
783 };
784
785 // See if we're dealing with constant values.
786 Constant *C0 = dyn_cast<Constant>(Op0);
787 ConstantInt *CI0 =
Andrea Di Biagio8df5b9c2016-09-07 12:03:03 +0000788 C0 ? dyn_cast_or_null<ConstantInt>(C0->getAggregateElement((unsigned)0))
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000789 : nullptr;
790
791 // Attempt to constant fold.
792 if (CILength && CIIndex) {
793 // From AMD documentation: "The bit index and field length are each six
794 // bits in length other bits of the field are ignored."
795 APInt APIndex = CIIndex->getValue().zextOrTrunc(6);
796 APInt APLength = CILength->getValue().zextOrTrunc(6);
797
798 unsigned Index = APIndex.getZExtValue();
799
800 // From AMD documentation: "a value of zero in the field length is
801 // defined as length of 64".
802 unsigned Length = APLength == 0 ? 64 : APLength.getZExtValue();
803
804 // From AMD documentation: "If the sum of the bit index + length field
805 // is greater than 64, the results are undefined".
806 unsigned End = Index + Length;
807
808 // Note that both field index and field length are 8-bit quantities.
809 // Since variables 'Index' and 'Length' are unsigned values
810 // obtained from zero-extending field index and field length
811 // respectively, their sum should never wrap around.
812 if (End > 64)
813 return UndefValue::get(II.getType());
814
815 // If we are inserting whole bytes, we can convert this to a shuffle.
816 // Lowering can recognize EXTRQI shuffle masks.
817 if ((Length % 8) == 0 && (Index % 8) == 0) {
818 // Convert bit indices to byte indices.
819 Length /= 8;
820 Index /= 8;
821
822 Type *IntTy8 = Type::getInt8Ty(II.getContext());
823 Type *IntTy32 = Type::getInt32Ty(II.getContext());
824 VectorType *ShufTy = VectorType::get(IntTy8, 16);
825
826 SmallVector<Constant *, 16> ShuffleMask;
827 for (int i = 0; i != (int)Length; ++i)
828 ShuffleMask.push_back(
829 Constant::getIntegerValue(IntTy32, APInt(32, i + Index)));
830 for (int i = Length; i != 8; ++i)
831 ShuffleMask.push_back(
832 Constant::getIntegerValue(IntTy32, APInt(32, i + 16)));
833 for (int i = 8; i != 16; ++i)
834 ShuffleMask.push_back(UndefValue::get(IntTy32));
835
836 Value *SV = Builder.CreateShuffleVector(
837 Builder.CreateBitCast(Op0, ShufTy),
838 ConstantAggregateZero::get(ShufTy), ConstantVector::get(ShuffleMask));
839 return Builder.CreateBitCast(SV, II.getType());
840 }
841
842 // Constant Fold - shift Index'th bit to lowest position and mask off
843 // Length bits.
844 if (CI0) {
845 APInt Elt = CI0->getValue();
Craig Topperfc947bc2017-04-18 17:14:21 +0000846 Elt.lshrInPlace(Index);
847 Elt = Elt.zextOrTrunc(Length);
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000848 return LowConstantHighUndef(Elt.getZExtValue());
849 }
850
851 // If we were an EXTRQ call, we'll save registers if we convert to EXTRQI.
852 if (II.getIntrinsicID() == Intrinsic::x86_sse4a_extrq) {
853 Value *Args[] = {Op0, CILength, CIIndex};
Sanjay Patelaf674fb2015-12-14 17:24:23 +0000854 Module *M = II.getModule();
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000855 Value *F = Intrinsic::getDeclaration(M, Intrinsic::x86_sse4a_extrqi);
856 return Builder.CreateCall(F, Args);
857 }
858 }
859
860 // Constant Fold - extraction from zero is always {zero, undef}.
Craig Topperca2c8762017-07-06 18:39:49 +0000861 if (CI0 && CI0->isZero())
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000862 return LowConstantHighUndef(0);
863
864 return nullptr;
865}
866
867/// Attempt to simplify SSE4A INSERTQ/INSERTQI instructions using constant
868/// folding or conversion to a shuffle vector.
Sanjay Patel6038d3e2016-01-29 23:27:03 +0000869static Value *simplifyX86insertq(IntrinsicInst &II, Value *Op0, Value *Op1,
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000870 APInt APLength, APInt APIndex,
871 InstCombiner::BuilderTy &Builder) {
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000872 // From AMD documentation: "The bit index and field length are each six bits
873 // in length other bits of the field are ignored."
874 APIndex = APIndex.zextOrTrunc(6);
875 APLength = APLength.zextOrTrunc(6);
876
877 // Attempt to constant fold.
878 unsigned Index = APIndex.getZExtValue();
879
880 // From AMD documentation: "a value of zero in the field length is
881 // defined as length of 64".
882 unsigned Length = APLength == 0 ? 64 : APLength.getZExtValue();
883
884 // From AMD documentation: "If the sum of the bit index + length field
885 // is greater than 64, the results are undefined".
886 unsigned End = Index + Length;
887
888 // Note that both field index and field length are 8-bit quantities.
889 // Since variables 'Index' and 'Length' are unsigned values
890 // obtained from zero-extending field index and field length
891 // respectively, their sum should never wrap around.
892 if (End > 64)
893 return UndefValue::get(II.getType());
894
895 // If we are inserting whole bytes, we can convert this to a shuffle.
896 // Lowering can recognize INSERTQI shuffle masks.
897 if ((Length % 8) == 0 && (Index % 8) == 0) {
898 // Convert bit indices to byte indices.
899 Length /= 8;
900 Index /= 8;
901
902 Type *IntTy8 = Type::getInt8Ty(II.getContext());
903 Type *IntTy32 = Type::getInt32Ty(II.getContext());
904 VectorType *ShufTy = VectorType::get(IntTy8, 16);
905
906 SmallVector<Constant *, 16> ShuffleMask;
907 for (int i = 0; i != (int)Index; ++i)
908 ShuffleMask.push_back(Constant::getIntegerValue(IntTy32, APInt(32, i)));
909 for (int i = 0; i != (int)Length; ++i)
910 ShuffleMask.push_back(
911 Constant::getIntegerValue(IntTy32, APInt(32, i + 16)));
912 for (int i = Index + Length; i != 8; ++i)
913 ShuffleMask.push_back(Constant::getIntegerValue(IntTy32, APInt(32, i)));
914 for (int i = 8; i != 16; ++i)
915 ShuffleMask.push_back(UndefValue::get(IntTy32));
916
917 Value *SV = Builder.CreateShuffleVector(Builder.CreateBitCast(Op0, ShufTy),
918 Builder.CreateBitCast(Op1, ShufTy),
919 ConstantVector::get(ShuffleMask));
920 return Builder.CreateBitCast(SV, II.getType());
921 }
922
923 // See if we're dealing with constant values.
924 Constant *C0 = dyn_cast<Constant>(Op0);
925 Constant *C1 = dyn_cast<Constant>(Op1);
926 ConstantInt *CI00 =
Andrea Di Biagiof3fd3162016-09-07 12:47:53 +0000927 C0 ? dyn_cast_or_null<ConstantInt>(C0->getAggregateElement((unsigned)0))
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000928 : nullptr;
929 ConstantInt *CI10 =
Andrea Di Biagiof3fd3162016-09-07 12:47:53 +0000930 C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)0))
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000931 : nullptr;
932
933 // Constant Fold - insert bottom Length bits starting at the Index'th bit.
934 if (CI00 && CI10) {
935 APInt V00 = CI00->getValue();
936 APInt V10 = CI10->getValue();
937 APInt Mask = APInt::getLowBitsSet(64, Length).shl(Index);
938 V00 = V00 & ~Mask;
939 V10 = V10.zextOrTrunc(Length).zextOrTrunc(64).shl(Index);
940 APInt Val = V00 | V10;
941 Type *IntTy64 = Type::getInt64Ty(II.getContext());
942 Constant *Args[] = {ConstantInt::get(IntTy64, Val.getZExtValue()),
943 UndefValue::get(IntTy64)};
944 return ConstantVector::get(Args);
945 }
946
947 // If we were an INSERTQ call, we'll save demanded elements if we convert to
948 // INSERTQI.
949 if (II.getIntrinsicID() == Intrinsic::x86_sse4a_insertq) {
950 Type *IntTy8 = Type::getInt8Ty(II.getContext());
951 Constant *CILength = ConstantInt::get(IntTy8, Length, false);
952 Constant *CIIndex = ConstantInt::get(IntTy8, Index, false);
953
954 Value *Args[] = {Op0, Op1, CILength, CIIndex};
Sanjay Patelaf674fb2015-12-14 17:24:23 +0000955 Module *M = II.getModule();
Simon Pilgrim216b1bf2015-10-17 11:40:05 +0000956 Value *F = Intrinsic::getDeclaration(M, Intrinsic::x86_sse4a_insertqi);
957 return Builder.CreateCall(F, Args);
958 }
959
960 return nullptr;
961}
962
Simon Pilgrimc0c56e72016-04-24 17:00:34 +0000963/// Attempt to convert pshufb* to shufflevector if the mask is constant.
964static Value *simplifyX86pshufb(const IntrinsicInst &II,
965 InstCombiner::BuilderTy &Builder) {
Simon Pilgrimbf60cc42016-04-29 21:34:54 +0000966 Constant *V = dyn_cast<Constant>(II.getArgOperand(1));
967 if (!V)
968 return nullptr;
969
Simon Pilgrime5e8c2f2016-05-01 19:26:21 +0000970 auto *VecTy = cast<VectorType>(II.getType());
971 auto *MaskEltTy = Type::getInt32Ty(II.getContext());
972 unsigned NumElts = VecTy->getNumElements();
Craig Topper9a63d7a2016-12-11 00:23:50 +0000973 assert((NumElts == 16 || NumElts == 32 || NumElts == 64) &&
Simon Pilgrimc0c56e72016-04-24 17:00:34 +0000974 "Unexpected number of elements in shuffle mask!");
Simon Pilgrimbf60cc42016-04-29 21:34:54 +0000975
Simon Pilgrime5e8c2f2016-05-01 19:26:21 +0000976 // Construct a shuffle mask from constant integers or UNDEFs.
Craig Topper9a63d7a2016-12-11 00:23:50 +0000977 Constant *Indexes[64] = {nullptr};
Simon Pilgrimc0c56e72016-04-24 17:00:34 +0000978
Simon Pilgrimbf60cc42016-04-29 21:34:54 +0000979 // Each byte in the shuffle control mask forms an index to permute the
980 // corresponding byte in the destination operand.
981 for (unsigned I = 0; I < NumElts; ++I) {
982 Constant *COp = V->getAggregateElement(I);
Simon Pilgrime5e8c2f2016-05-01 19:26:21 +0000983 if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp)))
Simon Pilgrimbf60cc42016-04-29 21:34:54 +0000984 return nullptr;
Simon Pilgrimc0c56e72016-04-24 17:00:34 +0000985
Simon Pilgrime5e8c2f2016-05-01 19:26:21 +0000986 if (isa<UndefValue>(COp)) {
987 Indexes[I] = UndefValue::get(MaskEltTy);
988 continue;
989 }
990
Simon Pilgrimbf60cc42016-04-29 21:34:54 +0000991 int8_t Index = cast<ConstantInt>(COp)->getValue().getZExtValue();
992
993 // If the most significant bit (bit[7]) of each byte of the shuffle
994 // control mask is set, then zero is written in the result byte.
995 // The zero vector is in the right-hand side of the resulting
996 // shufflevector.
997
Simon Pilgrime5e8c2f2016-05-01 19:26:21 +0000998 // The value of each index for the high 128-bit lane is the least
999 // significant 4 bits of the respective shuffle control byte.
1000 Index = ((Index < 0) ? NumElts : Index & 0x0F) + (I & 0xF0);
1001 Indexes[I] = ConstantInt::get(MaskEltTy, Index);
Simon Pilgrimbf60cc42016-04-29 21:34:54 +00001002 }
Simon Pilgrimc0c56e72016-04-24 17:00:34 +00001003
Simon Pilgrime5e8c2f2016-05-01 19:26:21 +00001004 auto ShuffleMask = ConstantVector::get(makeArrayRef(Indexes, NumElts));
Simon Pilgrimc0c56e72016-04-24 17:00:34 +00001005 auto V1 = II.getArgOperand(0);
Simon Pilgrime5e8c2f2016-05-01 19:26:21 +00001006 auto V2 = Constant::getNullValue(VecTy);
Simon Pilgrimc0c56e72016-04-24 17:00:34 +00001007 return Builder.CreateShuffleVector(V1, V2, ShuffleMask);
1008}
1009
Simon Pilgrim2f6097d2016-04-24 17:23:46 +00001010/// Attempt to convert vpermilvar* to shufflevector if the mask is constant.
1011static Value *simplifyX86vpermilvar(const IntrinsicInst &II,
1012 InstCombiner::BuilderTy &Builder) {
Simon Pilgrim640f9962016-04-30 07:23:30 +00001013 Constant *V = dyn_cast<Constant>(II.getArgOperand(1));
1014 if (!V)
1015 return nullptr;
Simon Pilgrim2f6097d2016-04-24 17:23:46 +00001016
Craig Topper58917f32016-12-11 01:59:36 +00001017 auto *VecTy = cast<VectorType>(II.getType());
Simon Pilgrimeeacc402016-05-01 20:22:42 +00001018 auto *MaskEltTy = Type::getInt32Ty(II.getContext());
Craig Topper58917f32016-12-11 01:59:36 +00001019 unsigned NumElts = VecTy->getVectorNumElements();
1020 bool IsPD = VecTy->getScalarType()->isDoubleTy();
1021 unsigned NumLaneElts = IsPD ? 2 : 4;
1022 assert(NumElts == 16 || NumElts == 8 || NumElts == 4 || NumElts == 2);
Simon Pilgrim2f6097d2016-04-24 17:23:46 +00001023
Simon Pilgrimeeacc402016-05-01 20:22:42 +00001024 // Construct a shuffle mask from constant integers or UNDEFs.
Craig Topper58917f32016-12-11 01:59:36 +00001025 Constant *Indexes[16] = {nullptr};
Simon Pilgrim640f9962016-04-30 07:23:30 +00001026
1027 // The intrinsics only read one or two bits, clear the rest.
Simon Pilgrimeeacc402016-05-01 20:22:42 +00001028 for (unsigned I = 0; I < NumElts; ++I) {
Simon Pilgrim640f9962016-04-30 07:23:30 +00001029 Constant *COp = V->getAggregateElement(I);
Simon Pilgrimeeacc402016-05-01 20:22:42 +00001030 if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp)))
Simon Pilgrim640f9962016-04-30 07:23:30 +00001031 return nullptr;
1032
Simon Pilgrimeeacc402016-05-01 20:22:42 +00001033 if (isa<UndefValue>(COp)) {
1034 Indexes[I] = UndefValue::get(MaskEltTy);
1035 continue;
1036 }
1037
1038 APInt Index = cast<ConstantInt>(COp)->getValue();
1039 Index = Index.zextOrTrunc(32).getLoBits(2);
Simon Pilgrim640f9962016-04-30 07:23:30 +00001040
1041 // The PD variants uses bit 1 to select per-lane element index, so
1042 // shift down to convert to generic shuffle mask index.
Craig Topper58917f32016-12-11 01:59:36 +00001043 if (IsPD)
Craig Topperfc947bc2017-04-18 17:14:21 +00001044 Index.lshrInPlace(1);
Simon Pilgrimeeacc402016-05-01 20:22:42 +00001045
1046 // The _256 variants are a bit trickier since the mask bits always index
1047 // into the corresponding 128 half. In order to convert to a generic
1048 // shuffle, we have to make that explicit.
Craig Topper58917f32016-12-11 01:59:36 +00001049 Index += APInt(32, (I / NumLaneElts) * NumLaneElts);
Simon Pilgrimeeacc402016-05-01 20:22:42 +00001050
1051 Indexes[I] = ConstantInt::get(MaskEltTy, Index);
Simon Pilgrim2f6097d2016-04-24 17:23:46 +00001052 }
1053
Simon Pilgrimeeacc402016-05-01 20:22:42 +00001054 auto ShuffleMask = ConstantVector::get(makeArrayRef(Indexes, NumElts));
Simon Pilgrim2f6097d2016-04-24 17:23:46 +00001055 auto V1 = II.getArgOperand(0);
1056 auto V2 = UndefValue::get(V1->getType());
1057 return Builder.CreateShuffleVector(V1, V2, ShuffleMask);
1058}
1059
Simon Pilgrim8cddf8b2016-05-01 16:41:22 +00001060/// Attempt to convert vpermd/vpermps to shufflevector if the mask is constant.
1061static Value *simplifyX86vpermv(const IntrinsicInst &II,
1062 InstCombiner::BuilderTy &Builder) {
1063 auto *V = dyn_cast<Constant>(II.getArgOperand(1));
1064 if (!V)
1065 return nullptr;
1066
Simon Pilgrimca140b12016-05-01 20:43:02 +00001067 auto *VecTy = cast<VectorType>(II.getType());
1068 auto *MaskEltTy = Type::getInt32Ty(II.getContext());
Simon Pilgrim8cddf8b2016-05-01 16:41:22 +00001069 unsigned Size = VecTy->getNumElements();
Craig Toppere3280452016-12-25 23:58:57 +00001070 assert((Size == 4 || Size == 8 || Size == 16 || Size == 32 || Size == 64) &&
1071 "Unexpected shuffle mask size");
Simon Pilgrim8cddf8b2016-05-01 16:41:22 +00001072
Simon Pilgrimca140b12016-05-01 20:43:02 +00001073 // Construct a shuffle mask from constant integers or UNDEFs.
Craig Toppere3280452016-12-25 23:58:57 +00001074 Constant *Indexes[64] = {nullptr};
Simon Pilgrim8cddf8b2016-05-01 16:41:22 +00001075
1076 for (unsigned I = 0; I < Size; ++I) {
1077 Constant *COp = V->getAggregateElement(I);
Simon Pilgrimca140b12016-05-01 20:43:02 +00001078 if (!COp || (!isa<UndefValue>(COp) && !isa<ConstantInt>(COp)))
Simon Pilgrim8cddf8b2016-05-01 16:41:22 +00001079 return nullptr;
1080
Simon Pilgrimca140b12016-05-01 20:43:02 +00001081 if (isa<UndefValue>(COp)) {
1082 Indexes[I] = UndefValue::get(MaskEltTy);
1083 continue;
1084 }
1085
Craig Toppere3280452016-12-25 23:58:57 +00001086 uint32_t Index = cast<ConstantInt>(COp)->getZExtValue();
1087 Index &= Size - 1;
Simon Pilgrimca140b12016-05-01 20:43:02 +00001088 Indexes[I] = ConstantInt::get(MaskEltTy, Index);
Simon Pilgrim8cddf8b2016-05-01 16:41:22 +00001089 }
1090
Simon Pilgrimca140b12016-05-01 20:43:02 +00001091 auto ShuffleMask = ConstantVector::get(makeArrayRef(Indexes, Size));
Simon Pilgrim8cddf8b2016-05-01 16:41:22 +00001092 auto V1 = II.getArgOperand(0);
1093 auto V2 = UndefValue::get(VecTy);
1094 return Builder.CreateShuffleVector(V1, V2, ShuffleMask);
1095}
1096
Sanjay Patelccf5f242015-03-20 21:47:56 +00001097/// The shuffle mask for a perm2*128 selects any two halves of two 256-bit
1098/// source vectors, unless a zero bit is set. If a zero bit is set,
1099/// then ignore that half of the mask and clear that half of the vector.
Sanjay Patel6038d3e2016-01-29 23:27:03 +00001100static Value *simplifyX86vperm2(const IntrinsicInst &II,
Sanjay Patelccf5f242015-03-20 21:47:56 +00001101 InstCombiner::BuilderTy &Builder) {
Sanjay Patel03c03f52016-01-28 00:03:16 +00001102 auto *CInt = dyn_cast<ConstantInt>(II.getArgOperand(2));
1103 if (!CInt)
1104 return nullptr;
Sanjay Patelccf5f242015-03-20 21:47:56 +00001105
Sanjay Patel03c03f52016-01-28 00:03:16 +00001106 VectorType *VecTy = cast<VectorType>(II.getType());
1107 ConstantAggregateZero *ZeroVector = ConstantAggregateZero::get(VecTy);
Sanjay Patel43a87fd2015-03-24 20:36:42 +00001108
Sanjay Patel03c03f52016-01-28 00:03:16 +00001109 // The immediate permute control byte looks like this:
1110 // [1:0] - select 128 bits from sources for low half of destination
1111 // [2] - ignore
1112 // [3] - zero low half of destination
1113 // [5:4] - select 128 bits from sources for high half of destination
1114 // [6] - ignore
1115 // [7] - zero high half of destination
Sanjay Patel43a87fd2015-03-24 20:36:42 +00001116
Sanjay Patel03c03f52016-01-28 00:03:16 +00001117 uint8_t Imm = CInt->getZExtValue();
Sanjay Patel43a87fd2015-03-24 20:36:42 +00001118
Sanjay Patel03c03f52016-01-28 00:03:16 +00001119 bool LowHalfZero = Imm & 0x08;
1120 bool HighHalfZero = Imm & 0x80;
Sanjay Patel43a87fd2015-03-24 20:36:42 +00001121
Sanjay Patel03c03f52016-01-28 00:03:16 +00001122 // If both zero mask bits are set, this was just a weird way to
1123 // generate a zero vector.
1124 if (LowHalfZero && HighHalfZero)
1125 return ZeroVector;
Sanjay Patel43a87fd2015-03-24 20:36:42 +00001126
Sanjay Patel03c03f52016-01-28 00:03:16 +00001127 // If 0 or 1 zero mask bits are set, this is a simple shuffle.
1128 unsigned NumElts = VecTy->getNumElements();
1129 unsigned HalfSize = NumElts / 2;
Craig Topper99d1eab2016-06-12 00:41:19 +00001130 SmallVector<uint32_t, 8> ShuffleMask(NumElts);
Simon Pilgrim54fcd622015-07-25 20:41:00 +00001131
Sanjay Patel03c03f52016-01-28 00:03:16 +00001132 // The high bit of the selection field chooses the 1st or 2nd operand.
1133 bool LowInputSelect = Imm & 0x02;
1134 bool HighInputSelect = Imm & 0x20;
Sanjay Patelccf5f242015-03-20 21:47:56 +00001135
Sanjay Patel03c03f52016-01-28 00:03:16 +00001136 // The low bit of the selection field chooses the low or high half
1137 // of the selected operand.
1138 bool LowHalfSelect = Imm & 0x01;
1139 bool HighHalfSelect = Imm & 0x10;
Simon Pilgrim54fcd622015-07-25 20:41:00 +00001140
Sanjay Patel03c03f52016-01-28 00:03:16 +00001141 // Determine which operand(s) are actually in use for this instruction.
1142 Value *V0 = LowInputSelect ? II.getArgOperand(1) : II.getArgOperand(0);
1143 Value *V1 = HighInputSelect ? II.getArgOperand(1) : II.getArgOperand(0);
Simon Pilgrim54fcd622015-07-25 20:41:00 +00001144
Sanjay Patel03c03f52016-01-28 00:03:16 +00001145 // If needed, replace operands based on zero mask.
1146 V0 = LowHalfZero ? ZeroVector : V0;
1147 V1 = HighHalfZero ? ZeroVector : V1;
Sanjay Patelccf5f242015-03-20 21:47:56 +00001148
Sanjay Patel03c03f52016-01-28 00:03:16 +00001149 // Permute low half of result.
1150 unsigned StartIndex = LowHalfSelect ? HalfSize : 0;
1151 for (unsigned i = 0; i < HalfSize; ++i)
1152 ShuffleMask[i] = StartIndex + i;
Sanjay Patel43a87fd2015-03-24 20:36:42 +00001153
Sanjay Patel03c03f52016-01-28 00:03:16 +00001154 // Permute high half of result.
1155 StartIndex = HighHalfSelect ? HalfSize : 0;
1156 StartIndex += NumElts;
1157 for (unsigned i = 0; i < HalfSize; ++i)
1158 ShuffleMask[i + HalfSize] = StartIndex + i;
1159
1160 return Builder.CreateShuffleVector(V0, V1, ShuffleMask);
Sanjay Patelccf5f242015-03-20 21:47:56 +00001161}
1162
Simon Pilgrim1d1c56e22015-10-11 14:38:34 +00001163/// Decode XOP integer vector comparison intrinsics.
Sanjay Patel6038d3e2016-01-29 23:27:03 +00001164static Value *simplifyX86vpcom(const IntrinsicInst &II,
Sanjay Patelf9f5d3c2016-01-29 23:14:58 +00001165 InstCombiner::BuilderTy &Builder,
1166 bool IsSigned) {
Simon Pilgrim1d1c56e22015-10-11 14:38:34 +00001167 if (auto *CInt = dyn_cast<ConstantInt>(II.getArgOperand(2))) {
1168 uint64_t Imm = CInt->getZExtValue() & 0x7;
1169 VectorType *VecTy = cast<VectorType>(II.getType());
1170 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1171
1172 switch (Imm) {
1173 case 0x0:
1174 Pred = IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1175 break;
1176 case 0x1:
1177 Pred = IsSigned ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE;
1178 break;
1179 case 0x2:
1180 Pred = IsSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1181 break;
1182 case 0x3:
1183 Pred = IsSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE;
1184 break;
1185 case 0x4:
1186 Pred = ICmpInst::ICMP_EQ; break;
1187 case 0x5:
1188 Pred = ICmpInst::ICMP_NE; break;
1189 case 0x6:
1190 return ConstantInt::getSigned(VecTy, 0); // FALSE
1191 case 0x7:
1192 return ConstantInt::getSigned(VecTy, -1); // TRUE
1193 }
1194
Sanjay Patelf9f5d3c2016-01-29 23:14:58 +00001195 if (Value *Cmp = Builder.CreateICmp(Pred, II.getArgOperand(0),
1196 II.getArgOperand(1)))
Simon Pilgrim1d1c56e22015-10-11 14:38:34 +00001197 return Builder.CreateSExtOrTrunc(Cmp, VecTy);
1198 }
1199 return nullptr;
1200}
1201
Craig Toppere3280452016-12-25 23:58:57 +00001202// Emit a select instruction and appropriate bitcasts to help simplify
1203// masked intrinsics.
1204static Value *emitX86MaskSelect(Value *Mask, Value *Op0, Value *Op1,
1205 InstCombiner::BuilderTy &Builder) {
Craig Topper99163632016-12-30 23:06:28 +00001206 unsigned VWidth = Op0->getType()->getVectorNumElements();
1207
1208 // If the mask is all ones we don't need the select. But we need to check
1209 // only the bit thats will be used in case VWidth is less than 8.
1210 if (auto *C = dyn_cast<ConstantInt>(Mask))
1211 if (C->getValue().zextOrTrunc(VWidth).isAllOnesValue())
1212 return Op0;
1213
Craig Toppere3280452016-12-25 23:58:57 +00001214 auto *MaskTy = VectorType::get(Builder.getInt1Ty(),
1215 cast<IntegerType>(Mask->getType())->getBitWidth());
1216 Mask = Builder.CreateBitCast(Mask, MaskTy);
1217
1218 // If we have less than 8 elements, then the starting mask was an i8 and
1219 // we need to extract down to the right number of elements.
Craig Toppere3280452016-12-25 23:58:57 +00001220 if (VWidth < 8) {
1221 uint32_t Indices[4];
1222 for (unsigned i = 0; i != VWidth; ++i)
1223 Indices[i] = i;
1224 Mask = Builder.CreateShuffleVector(Mask, Mask,
1225 makeArrayRef(Indices, VWidth),
1226 "extract");
1227 }
1228
1229 return Builder.CreateSelect(Mask, Op0, Op1);
1230}
1231
Sanjay Patel0069f562016-01-31 16:35:23 +00001232static Value *simplifyMinnumMaxnum(const IntrinsicInst &II) {
1233 Value *Arg0 = II.getArgOperand(0);
1234 Value *Arg1 = II.getArgOperand(1);
1235
1236 // fmin(x, x) -> x
1237 if (Arg0 == Arg1)
1238 return Arg0;
1239
1240 const auto *C1 = dyn_cast<ConstantFP>(Arg1);
1241
1242 // fmin(x, nan) -> x
1243 if (C1 && C1->isNaN())
1244 return Arg0;
1245
1246 // This is the value because if undef were NaN, we would return the other
1247 // value and cannot return a NaN unless both operands are.
1248 //
1249 // fmin(undef, x) -> x
1250 if (isa<UndefValue>(Arg0))
1251 return Arg1;
1252
1253 // fmin(x, undef) -> x
1254 if (isa<UndefValue>(Arg1))
1255 return Arg0;
1256
1257 Value *X = nullptr;
1258 Value *Y = nullptr;
1259 if (II.getIntrinsicID() == Intrinsic::minnum) {
1260 // fmin(x, fmin(x, y)) -> fmin(x, y)
1261 // fmin(y, fmin(x, y)) -> fmin(x, y)
1262 if (match(Arg1, m_FMin(m_Value(X), m_Value(Y)))) {
1263 if (Arg0 == X || Arg0 == Y)
1264 return Arg1;
1265 }
1266
1267 // fmin(fmin(x, y), x) -> fmin(x, y)
1268 // fmin(fmin(x, y), y) -> fmin(x, y)
1269 if (match(Arg0, m_FMin(m_Value(X), m_Value(Y)))) {
1270 if (Arg1 == X || Arg1 == Y)
1271 return Arg0;
1272 }
1273
1274 // TODO: fmin(nnan x, inf) -> x
1275 // TODO: fmin(nnan ninf x, flt_max) -> x
1276 if (C1 && C1->isInfinity()) {
1277 // fmin(x, -inf) -> -inf
1278 if (C1->isNegative())
1279 return Arg1;
1280 }
1281 } else {
1282 assert(II.getIntrinsicID() == Intrinsic::maxnum);
1283 // fmax(x, fmax(x, y)) -> fmax(x, y)
1284 // fmax(y, fmax(x, y)) -> fmax(x, y)
1285 if (match(Arg1, m_FMax(m_Value(X), m_Value(Y)))) {
1286 if (Arg0 == X || Arg0 == Y)
1287 return Arg1;
1288 }
1289
1290 // fmax(fmax(x, y), x) -> fmax(x, y)
1291 // fmax(fmax(x, y), y) -> fmax(x, y)
1292 if (match(Arg0, m_FMax(m_Value(X), m_Value(Y)))) {
1293 if (Arg1 == X || Arg1 == Y)
1294 return Arg0;
1295 }
1296
1297 // TODO: fmax(nnan x, -inf) -> x
1298 // TODO: fmax(nnan ninf x, -flt_max) -> x
1299 if (C1 && C1->isInfinity()) {
1300 // fmax(x, inf) -> inf
1301 if (!C1->isNegative())
1302 return Arg1;
1303 }
1304 }
1305 return nullptr;
1306}
1307
David Majnemer666aa942016-07-14 06:58:42 +00001308static bool maskIsAllOneOrUndef(Value *Mask) {
1309 auto *ConstMask = dyn_cast<Constant>(Mask);
1310 if (!ConstMask)
1311 return false;
1312 if (ConstMask->isAllOnesValue() || isa<UndefValue>(ConstMask))
1313 return true;
1314 for (unsigned I = 0, E = ConstMask->getType()->getVectorNumElements(); I != E;
1315 ++I) {
1316 if (auto *MaskElt = ConstMask->getAggregateElement(I))
1317 if (MaskElt->isAllOnesValue() || isa<UndefValue>(MaskElt))
1318 continue;
1319 return false;
1320 }
1321 return true;
1322}
1323
Sanjay Patelb695c552016-02-01 17:00:10 +00001324static Value *simplifyMaskedLoad(const IntrinsicInst &II,
1325 InstCombiner::BuilderTy &Builder) {
David Majnemer666aa942016-07-14 06:58:42 +00001326 // If the mask is all ones or undefs, this is a plain vector load of the 1st
1327 // argument.
1328 if (maskIsAllOneOrUndef(II.getArgOperand(2))) {
Sanjay Patelb695c552016-02-01 17:00:10 +00001329 Value *LoadPtr = II.getArgOperand(0);
1330 unsigned Alignment = cast<ConstantInt>(II.getArgOperand(1))->getZExtValue();
1331 return Builder.CreateAlignedLoad(LoadPtr, Alignment, "unmaskedload");
1332 }
1333
1334 return nullptr;
1335}
1336
Sanjay Patel04f792b2016-02-01 19:39:52 +00001337static Instruction *simplifyMaskedStore(IntrinsicInst &II, InstCombiner &IC) {
1338 auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3));
1339 if (!ConstMask)
1340 return nullptr;
1341
1342 // If the mask is all zeros, this instruction does nothing.
1343 if (ConstMask->isNullValue())
Sanjay Patel4b198802016-02-01 22:23:39 +00001344 return IC.eraseInstFromFunction(II);
Sanjay Patel04f792b2016-02-01 19:39:52 +00001345
1346 // If the mask is all ones, this is a plain vector store of the 1st argument.
1347 if (ConstMask->isAllOnesValue()) {
1348 Value *StorePtr = II.getArgOperand(1);
1349 unsigned Alignment = cast<ConstantInt>(II.getArgOperand(2))->getZExtValue();
1350 return new StoreInst(II.getArgOperand(0), StorePtr, false, Alignment);
1351 }
1352
1353 return nullptr;
1354}
1355
Sanjay Patel103ab7d2016-02-01 22:10:26 +00001356static Instruction *simplifyMaskedGather(IntrinsicInst &II, InstCombiner &IC) {
1357 // If the mask is all zeros, return the "passthru" argument of the gather.
1358 auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(2));
1359 if (ConstMask && ConstMask->isNullValue())
Sanjay Patel4b198802016-02-01 22:23:39 +00001360 return IC.replaceInstUsesWith(II, II.getArgOperand(3));
Sanjay Patel103ab7d2016-02-01 22:10:26 +00001361
1362 return nullptr;
1363}
1364
1365static Instruction *simplifyMaskedScatter(IntrinsicInst &II, InstCombiner &IC) {
1366 // If the mask is all zeros, a scatter does nothing.
1367 auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3));
1368 if (ConstMask && ConstMask->isNullValue())
Sanjay Patel4b198802016-02-01 22:23:39 +00001369 return IC.eraseInstFromFunction(II);
Sanjay Patel103ab7d2016-02-01 22:10:26 +00001370
1371 return nullptr;
1372}
1373
Amaury Sechet763c59d2016-08-18 20:43:50 +00001374static Instruction *foldCttzCtlz(IntrinsicInst &II, InstCombiner &IC) {
1375 assert((II.getIntrinsicID() == Intrinsic::cttz ||
1376 II.getIntrinsicID() == Intrinsic::ctlz) &&
1377 "Expected cttz or ctlz intrinsic");
Sanjay Patel8e3ab172016-08-05 22:42:46 +00001378 Value *Op0 = II.getArgOperand(0);
Sanjay Patel8e3ab172016-08-05 22:42:46 +00001379
Craig Topper8205a1a2017-05-24 16:53:07 +00001380 KnownBits Known = IC.computeKnownBits(Op0, 0, &II);
Sanjay Patel8e3ab172016-08-05 22:42:46 +00001381
1382 // Create a mask for bits above (ctlz) or below (cttz) the first known one.
1383 bool IsTZ = II.getIntrinsicID() == Intrinsic::cttz;
Craig Topper8df66c62017-05-12 17:20:30 +00001384 unsigned PossibleZeros = IsTZ ? Known.countMaxTrailingZeros()
1385 : Known.countMaxLeadingZeros();
1386 unsigned DefiniteZeros = IsTZ ? Known.countMinTrailingZeros()
1387 : Known.countMinLeadingZeros();
Sanjay Patel8e3ab172016-08-05 22:42:46 +00001388
1389 // If all bits above (ctlz) or below (cttz) the first known one are known
1390 // zero, this value is constant.
1391 // FIXME: This should be in InstSimplify because we're replacing an
1392 // instruction with a constant.
Craig Topper9474e9b2017-04-27 04:51:25 +00001393 if (PossibleZeros == DefiniteZeros) {
Craig Topper0799ff92017-06-03 18:50:32 +00001394 auto *C = ConstantInt::get(Op0->getType(), DefiniteZeros);
Amaury Sechet763c59d2016-08-18 20:43:50 +00001395 return IC.replaceInstUsesWith(II, C);
1396 }
1397
1398 // If the input to cttz/ctlz is known to be non-zero,
1399 // then change the 'ZeroIsUndef' parameter to 'true'
1400 // because we know the zero behavior can't affect the result.
Craig Topper73ba1c82017-06-07 07:40:37 +00001401 if (!Known.One.isNullValue() ||
Craig Topperd45185f2017-05-26 18:23:57 +00001402 isKnownNonZero(Op0, IC.getDataLayout(), 0, &IC.getAssumptionCache(), &II,
1403 &IC.getDominatorTree())) {
Amaury Sechet763c59d2016-08-18 20:43:50 +00001404 if (!match(II.getArgOperand(1), m_One())) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001405 II.setOperand(1, IC.Builder.getTrue());
Amaury Sechet763c59d2016-08-18 20:43:50 +00001406 return &II;
1407 }
1408 }
Sanjay Patel8e3ab172016-08-05 22:42:46 +00001409
Craig Topper5b173f22017-06-21 16:32:35 +00001410 // Add range metadata since known bits can't completely reflect what we know.
1411 // TODO: Handle splat vectors.
1412 auto *IT = dyn_cast<IntegerType>(Op0->getType());
1413 if (IT && IT->getBitWidth() != 1 && !II.getMetadata(LLVMContext::MD_range)) {
1414 Metadata *LowAndHigh[] = {
1415 ConstantAsMetadata::get(ConstantInt::get(IT, DefiniteZeros)),
1416 ConstantAsMetadata::get(ConstantInt::get(IT, PossibleZeros + 1))};
1417 II.setMetadata(LLVMContext::MD_range,
1418 MDNode::get(II.getContext(), LowAndHigh));
1419 return &II;
1420 }
1421
1422 return nullptr;
1423}
1424
1425static Instruction *foldCtpop(IntrinsicInst &II, InstCombiner &IC) {
1426 assert(II.getIntrinsicID() == Intrinsic::ctpop &&
1427 "Expected ctpop intrinsic");
1428 Value *Op0 = II.getArgOperand(0);
1429 // FIXME: Try to simplify vectors of integers.
1430 auto *IT = dyn_cast<IntegerType>(Op0->getType());
1431 if (!IT)
1432 return nullptr;
1433
1434 unsigned BitWidth = IT->getBitWidth();
1435 KnownBits Known(BitWidth);
1436 IC.computeKnownBits(Op0, Known, 0, &II);
1437
1438 unsigned MinCount = Known.countMinPopulation();
1439 unsigned MaxCount = Known.countMaxPopulation();
1440
1441 // Add range metadata since known bits can't completely reflect what we know.
1442 if (IT->getBitWidth() != 1 && !II.getMetadata(LLVMContext::MD_range)) {
1443 Metadata *LowAndHigh[] = {
1444 ConstantAsMetadata::get(ConstantInt::get(IT, MinCount)),
1445 ConstantAsMetadata::get(ConstantInt::get(IT, MaxCount + 1))};
1446 II.setMetadata(LLVMContext::MD_range,
1447 MDNode::get(II.getContext(), LowAndHigh));
1448 return &II;
1449 }
1450
Sanjay Patel8e3ab172016-08-05 22:42:46 +00001451 return nullptr;
1452}
1453
Sanjay Patel1ace9932016-02-26 21:04:14 +00001454// TODO: If the x86 backend knew how to convert a bool vector mask back to an
1455// XMM register mask efficiently, we could transform all x86 masked intrinsics
1456// to LLVM masked intrinsics and remove the x86 masked intrinsic defs.
Sanjay Patel98a71502016-02-29 23:16:48 +00001457static Instruction *simplifyX86MaskedLoad(IntrinsicInst &II, InstCombiner &IC) {
1458 Value *Ptr = II.getOperand(0);
1459 Value *Mask = II.getOperand(1);
Sanjay Patel5e5056d2016-04-12 23:16:23 +00001460 Constant *ZeroVec = Constant::getNullValue(II.getType());
Sanjay Patel98a71502016-02-29 23:16:48 +00001461
1462 // Special case a zero mask since that's not a ConstantDataVector.
Sanjay Patel5e5056d2016-04-12 23:16:23 +00001463 // This masked load instruction creates a zero vector.
Sanjay Patel98a71502016-02-29 23:16:48 +00001464 if (isa<ConstantAggregateZero>(Mask))
Sanjay Patel5e5056d2016-04-12 23:16:23 +00001465 return IC.replaceInstUsesWith(II, ZeroVec);
Sanjay Patel98a71502016-02-29 23:16:48 +00001466
1467 auto *ConstMask = dyn_cast<ConstantDataVector>(Mask);
1468 if (!ConstMask)
1469 return nullptr;
1470
1471 // The mask is constant. Convert this x86 intrinsic to the LLVM instrinsic
1472 // to allow target-independent optimizations.
1473
1474 // First, cast the x86 intrinsic scalar pointer to a vector pointer to match
1475 // the LLVM intrinsic definition for the pointer argument.
1476 unsigned AddrSpace = cast<PointerType>(Ptr->getType())->getAddressSpace();
1477 PointerType *VecPtrTy = PointerType::get(II.getType(), AddrSpace);
Craig Topperbb4069e2017-07-07 23:16:26 +00001478 Value *PtrCast = IC.Builder.CreateBitCast(Ptr, VecPtrTy, "castvec");
Sanjay Patel98a71502016-02-29 23:16:48 +00001479
1480 // Second, convert the x86 XMM integer vector mask to a vector of bools based
1481 // on each element's most significant bit (the sign bit).
1482 Constant *BoolMask = getNegativeIsTrueBoolVec(ConstMask);
1483
Sanjay Patel5e5056d2016-04-12 23:16:23 +00001484 // The pass-through vector for an x86 masked load is a zero vector.
1485 CallInst *NewMaskedLoad =
Craig Topperbb4069e2017-07-07 23:16:26 +00001486 IC.Builder.CreateMaskedLoad(PtrCast, 1, BoolMask, ZeroVec);
Sanjay Patel98a71502016-02-29 23:16:48 +00001487 return IC.replaceInstUsesWith(II, NewMaskedLoad);
1488}
1489
1490// TODO: If the x86 backend knew how to convert a bool vector mask back to an
1491// XMM register mask efficiently, we could transform all x86 masked intrinsics
1492// to LLVM masked intrinsics and remove the x86 masked intrinsic defs.
Sanjay Patel1ace9932016-02-26 21:04:14 +00001493static bool simplifyX86MaskedStore(IntrinsicInst &II, InstCombiner &IC) {
1494 Value *Ptr = II.getOperand(0);
1495 Value *Mask = II.getOperand(1);
1496 Value *Vec = II.getOperand(2);
1497
1498 // Special case a zero mask since that's not a ConstantDataVector:
1499 // this masked store instruction does nothing.
1500 if (isa<ConstantAggregateZero>(Mask)) {
1501 IC.eraseInstFromFunction(II);
1502 return true;
1503 }
1504
Sanjay Patelc4acbae2016-03-12 15:16:59 +00001505 // The SSE2 version is too weird (eg, unaligned but non-temporal) to do
1506 // anything else at this level.
1507 if (II.getIntrinsicID() == Intrinsic::x86_sse2_maskmov_dqu)
1508 return false;
1509
Sanjay Patel1ace9932016-02-26 21:04:14 +00001510 auto *ConstMask = dyn_cast<ConstantDataVector>(Mask);
1511 if (!ConstMask)
1512 return false;
1513
1514 // The mask is constant. Convert this x86 intrinsic to the LLVM instrinsic
1515 // to allow target-independent optimizations.
1516
1517 // First, cast the x86 intrinsic scalar pointer to a vector pointer to match
1518 // the LLVM intrinsic definition for the pointer argument.
1519 unsigned AddrSpace = cast<PointerType>(Ptr->getType())->getAddressSpace();
1520 PointerType *VecPtrTy = PointerType::get(Vec->getType(), AddrSpace);
Craig Topperbb4069e2017-07-07 23:16:26 +00001521 Value *PtrCast = IC.Builder.CreateBitCast(Ptr, VecPtrTy, "castvec");
Sanjay Patel1ace9932016-02-26 21:04:14 +00001522
1523 // Second, convert the x86 XMM integer vector mask to a vector of bools based
1524 // on each element's most significant bit (the sign bit).
1525 Constant *BoolMask = getNegativeIsTrueBoolVec(ConstMask);
1526
Craig Topperbb4069e2017-07-07 23:16:26 +00001527 IC.Builder.CreateMaskedStore(Vec, PtrCast, 1, BoolMask);
Sanjay Patel1ace9932016-02-26 21:04:14 +00001528
1529 // 'Replace uses' doesn't work for stores. Erase the original masked store.
1530 IC.eraseInstFromFunction(II);
1531 return true;
1532}
1533
Matt Arsenaultcdb468c2017-02-27 23:08:49 +00001534// Constant fold llvm.amdgcn.fmed3 intrinsics for standard inputs.
1535//
1536// A single NaN input is folded to minnum, so we rely on that folding for
1537// handling NaNs.
1538static APFloat fmed3AMDGCN(const APFloat &Src0, const APFloat &Src1,
1539 const APFloat &Src2) {
1540 APFloat Max3 = maxnum(maxnum(Src0, Src1), Src2);
1541
1542 APFloat::cmpResult Cmp0 = Max3.compare(Src0);
1543 assert(Cmp0 != APFloat::cmpUnordered && "nans handled separately");
1544 if (Cmp0 == APFloat::cmpEqual)
1545 return maxnum(Src1, Src2);
1546
1547 APFloat::cmpResult Cmp1 = Max3.compare(Src1);
1548 assert(Cmp1 != APFloat::cmpUnordered && "nans handled separately");
1549 if (Cmp1 == APFloat::cmpEqual)
1550 return maxnum(Src0, Src2);
1551
1552 return maxnum(Src0, Src1);
1553}
1554
Arnaud A. de Grandmaison333ef382016-05-10 09:24:49 +00001555// Returns true iff the 2 intrinsics have the same operands, limiting the
1556// comparison to the first NumOperands.
1557static bool haveSameOperands(const IntrinsicInst &I, const IntrinsicInst &E,
1558 unsigned NumOperands) {
1559 assert(I.getNumArgOperands() >= NumOperands && "Not enough operands");
1560 assert(E.getNumArgOperands() >= NumOperands && "Not enough operands");
1561 for (unsigned i = 0; i < NumOperands; i++)
1562 if (I.getArgOperand(i) != E.getArgOperand(i))
1563 return false;
1564 return true;
1565}
1566
1567// Remove trivially empty start/end intrinsic ranges, i.e. a start
1568// immediately followed by an end (ignoring debuginfo or other
1569// start/end intrinsics in between). As this handles only the most trivial
1570// cases, tracking the nesting level is not needed:
1571//
1572// call @llvm.foo.start(i1 0) ; &I
1573// call @llvm.foo.start(i1 0)
1574// call @llvm.foo.end(i1 0) ; This one will not be skipped: it will be removed
1575// call @llvm.foo.end(i1 0)
1576static bool removeTriviallyEmptyRange(IntrinsicInst &I, unsigned StartID,
1577 unsigned EndID, InstCombiner &IC) {
1578 assert(I.getIntrinsicID() == StartID &&
1579 "Start intrinsic does not have expected ID");
1580 BasicBlock::iterator BI(I), BE(I.getParent()->end());
1581 for (++BI; BI != BE; ++BI) {
1582 if (auto *E = dyn_cast<IntrinsicInst>(BI)) {
1583 if (isa<DbgInfoIntrinsic>(E) || E->getIntrinsicID() == StartID)
1584 continue;
1585 if (E->getIntrinsicID() == EndID &&
1586 haveSameOperands(I, *E, E->getNumArgOperands())) {
1587 IC.eraseInstFromFunction(*E);
1588 IC.eraseInstFromFunction(I);
1589 return true;
1590 }
1591 }
1592 break;
1593 }
1594
1595 return false;
1596}
1597
Justin Lebar698c31b2017-01-27 00:58:58 +00001598// Convert NVVM intrinsics to target-generic LLVM code where possible.
1599static Instruction *SimplifyNVVMIntrinsic(IntrinsicInst *II, InstCombiner &IC) {
1600 // Each NVVM intrinsic we can simplify can be replaced with one of:
1601 //
1602 // * an LLVM intrinsic,
1603 // * an LLVM cast operation,
1604 // * an LLVM binary operation, or
1605 // * ad-hoc LLVM IR for the particular operation.
1606
1607 // Some transformations are only valid when the module's
1608 // flush-denormals-to-zero (ftz) setting is true/false, whereas other
1609 // transformations are valid regardless of the module's ftz setting.
1610 enum FtzRequirementTy {
1611 FTZ_Any, // Any ftz setting is ok.
1612 FTZ_MustBeOn, // Transformation is valid only if ftz is on.
1613 FTZ_MustBeOff, // Transformation is valid only if ftz is off.
1614 };
1615 // Classes of NVVM intrinsics that can't be replaced one-to-one with a
1616 // target-generic intrinsic, cast op, or binary op but that we can nonetheless
1617 // simplify.
1618 enum SpecialCase {
1619 SPC_Reciprocal,
1620 };
1621
1622 // SimplifyAction is a poor-man's variant (plus an additional flag) that
1623 // represents how to replace an NVVM intrinsic with target-generic LLVM IR.
1624 struct SimplifyAction {
1625 // Invariant: At most one of these Optionals has a value.
1626 Optional<Intrinsic::ID> IID;
1627 Optional<Instruction::CastOps> CastOp;
1628 Optional<Instruction::BinaryOps> BinaryOp;
1629 Optional<SpecialCase> Special;
1630
1631 FtzRequirementTy FtzRequirement = FTZ_Any;
1632
1633 SimplifyAction() = default;
1634
1635 SimplifyAction(Intrinsic::ID IID, FtzRequirementTy FtzReq)
1636 : IID(IID), FtzRequirement(FtzReq) {}
1637
1638 // Cast operations don't have anything to do with FTZ, so we skip that
1639 // argument.
1640 SimplifyAction(Instruction::CastOps CastOp) : CastOp(CastOp) {}
1641
1642 SimplifyAction(Instruction::BinaryOps BinaryOp, FtzRequirementTy FtzReq)
1643 : BinaryOp(BinaryOp), FtzRequirement(FtzReq) {}
1644
1645 SimplifyAction(SpecialCase Special, FtzRequirementTy FtzReq)
1646 : Special(Special), FtzRequirement(FtzReq) {}
1647 };
1648
1649 // Try to generate a SimplifyAction describing how to replace our
1650 // IntrinsicInstr with target-generic LLVM IR.
1651 const SimplifyAction Action = [II]() -> SimplifyAction {
1652 switch (II->getIntrinsicID()) {
1653
1654 // NVVM intrinsics that map directly to LLVM intrinsics.
1655 case Intrinsic::nvvm_ceil_d:
1656 return {Intrinsic::ceil, FTZ_Any};
1657 case Intrinsic::nvvm_ceil_f:
1658 return {Intrinsic::ceil, FTZ_MustBeOff};
1659 case Intrinsic::nvvm_ceil_ftz_f:
1660 return {Intrinsic::ceil, FTZ_MustBeOn};
1661 case Intrinsic::nvvm_fabs_d:
1662 return {Intrinsic::fabs, FTZ_Any};
1663 case Intrinsic::nvvm_fabs_f:
1664 return {Intrinsic::fabs, FTZ_MustBeOff};
1665 case Intrinsic::nvvm_fabs_ftz_f:
1666 return {Intrinsic::fabs, FTZ_MustBeOn};
1667 case Intrinsic::nvvm_floor_d:
1668 return {Intrinsic::floor, FTZ_Any};
1669 case Intrinsic::nvvm_floor_f:
1670 return {Intrinsic::floor, FTZ_MustBeOff};
1671 case Intrinsic::nvvm_floor_ftz_f:
1672 return {Intrinsic::floor, FTZ_MustBeOn};
1673 case Intrinsic::nvvm_fma_rn_d:
1674 return {Intrinsic::fma, FTZ_Any};
1675 case Intrinsic::nvvm_fma_rn_f:
1676 return {Intrinsic::fma, FTZ_MustBeOff};
1677 case Intrinsic::nvvm_fma_rn_ftz_f:
1678 return {Intrinsic::fma, FTZ_MustBeOn};
1679 case Intrinsic::nvvm_fmax_d:
1680 return {Intrinsic::maxnum, FTZ_Any};
1681 case Intrinsic::nvvm_fmax_f:
1682 return {Intrinsic::maxnum, FTZ_MustBeOff};
1683 case Intrinsic::nvvm_fmax_ftz_f:
1684 return {Intrinsic::maxnum, FTZ_MustBeOn};
1685 case Intrinsic::nvvm_fmin_d:
1686 return {Intrinsic::minnum, FTZ_Any};
1687 case Intrinsic::nvvm_fmin_f:
1688 return {Intrinsic::minnum, FTZ_MustBeOff};
1689 case Intrinsic::nvvm_fmin_ftz_f:
1690 return {Intrinsic::minnum, FTZ_MustBeOn};
1691 case Intrinsic::nvvm_round_d:
1692 return {Intrinsic::round, FTZ_Any};
1693 case Intrinsic::nvvm_round_f:
1694 return {Intrinsic::round, FTZ_MustBeOff};
1695 case Intrinsic::nvvm_round_ftz_f:
1696 return {Intrinsic::round, FTZ_MustBeOn};
1697 case Intrinsic::nvvm_sqrt_rn_d:
1698 return {Intrinsic::sqrt, FTZ_Any};
1699 case Intrinsic::nvvm_sqrt_f:
1700 // nvvm_sqrt_f is a special case. For most intrinsics, foo_ftz_f is the
1701 // ftz version, and foo_f is the non-ftz version. But nvvm_sqrt_f adopts
1702 // the ftz-ness of the surrounding code. sqrt_rn_f and sqrt_rn_ftz_f are
1703 // the versions with explicit ftz-ness.
1704 return {Intrinsic::sqrt, FTZ_Any};
1705 case Intrinsic::nvvm_sqrt_rn_f:
1706 return {Intrinsic::sqrt, FTZ_MustBeOff};
1707 case Intrinsic::nvvm_sqrt_rn_ftz_f:
1708 return {Intrinsic::sqrt, FTZ_MustBeOn};
1709 case Intrinsic::nvvm_trunc_d:
1710 return {Intrinsic::trunc, FTZ_Any};
1711 case Intrinsic::nvvm_trunc_f:
1712 return {Intrinsic::trunc, FTZ_MustBeOff};
1713 case Intrinsic::nvvm_trunc_ftz_f:
1714 return {Intrinsic::trunc, FTZ_MustBeOn};
1715
1716 // NVVM intrinsics that map to LLVM cast operations.
1717 //
1718 // Note that llvm's target-generic conversion operators correspond to the rz
1719 // (round to zero) versions of the nvvm conversion intrinsics, even though
1720 // most everything else here uses the rn (round to nearest even) nvvm ops.
1721 case Intrinsic::nvvm_d2i_rz:
1722 case Intrinsic::nvvm_f2i_rz:
1723 case Intrinsic::nvvm_d2ll_rz:
1724 case Intrinsic::nvvm_f2ll_rz:
1725 return {Instruction::FPToSI};
1726 case Intrinsic::nvvm_d2ui_rz:
1727 case Intrinsic::nvvm_f2ui_rz:
1728 case Intrinsic::nvvm_d2ull_rz:
1729 case Intrinsic::nvvm_f2ull_rz:
1730 return {Instruction::FPToUI};
1731 case Intrinsic::nvvm_i2d_rz:
1732 case Intrinsic::nvvm_i2f_rz:
1733 case Intrinsic::nvvm_ll2d_rz:
1734 case Intrinsic::nvvm_ll2f_rz:
1735 return {Instruction::SIToFP};
1736 case Intrinsic::nvvm_ui2d_rz:
1737 case Intrinsic::nvvm_ui2f_rz:
1738 case Intrinsic::nvvm_ull2d_rz:
1739 case Intrinsic::nvvm_ull2f_rz:
1740 return {Instruction::UIToFP};
1741
1742 // NVVM intrinsics that map to LLVM binary ops.
1743 case Intrinsic::nvvm_add_rn_d:
1744 return {Instruction::FAdd, FTZ_Any};
1745 case Intrinsic::nvvm_add_rn_f:
1746 return {Instruction::FAdd, FTZ_MustBeOff};
1747 case Intrinsic::nvvm_add_rn_ftz_f:
1748 return {Instruction::FAdd, FTZ_MustBeOn};
1749 case Intrinsic::nvvm_mul_rn_d:
1750 return {Instruction::FMul, FTZ_Any};
1751 case Intrinsic::nvvm_mul_rn_f:
1752 return {Instruction::FMul, FTZ_MustBeOff};
1753 case Intrinsic::nvvm_mul_rn_ftz_f:
1754 return {Instruction::FMul, FTZ_MustBeOn};
1755 case Intrinsic::nvvm_div_rn_d:
1756 return {Instruction::FDiv, FTZ_Any};
1757 case Intrinsic::nvvm_div_rn_f:
1758 return {Instruction::FDiv, FTZ_MustBeOff};
1759 case Intrinsic::nvvm_div_rn_ftz_f:
1760 return {Instruction::FDiv, FTZ_MustBeOn};
1761
1762 // The remainder of cases are NVVM intrinsics that map to LLVM idioms, but
1763 // need special handling.
1764 //
Hiroshi Inoue0ca79dc2017-07-11 06:04:59 +00001765 // We seem to be missing intrinsics for rcp.approx.{ftz.}f32, which is just
Justin Lebar698c31b2017-01-27 00:58:58 +00001766 // as well.
1767 case Intrinsic::nvvm_rcp_rn_d:
1768 return {SPC_Reciprocal, FTZ_Any};
1769 case Intrinsic::nvvm_rcp_rn_f:
1770 return {SPC_Reciprocal, FTZ_MustBeOff};
1771 case Intrinsic::nvvm_rcp_rn_ftz_f:
1772 return {SPC_Reciprocal, FTZ_MustBeOn};
1773
1774 // We do not currently simplify intrinsics that give an approximate answer.
1775 // These include:
1776 //
1777 // - nvvm_cos_approx_{f,ftz_f}
1778 // - nvvm_ex2_approx_{d,f,ftz_f}
1779 // - nvvm_lg2_approx_{d,f,ftz_f}
1780 // - nvvm_sin_approx_{f,ftz_f}
1781 // - nvvm_sqrt_approx_{f,ftz_f}
1782 // - nvvm_rsqrt_approx_{d,f,ftz_f}
1783 // - nvvm_div_approx_{ftz_d,ftz_f,f}
1784 // - nvvm_rcp_approx_ftz_d
1785 //
1786 // Ideally we'd encode them as e.g. "fast call @llvm.cos", where "fast"
1787 // means that fastmath is enabled in the intrinsic. Unfortunately only
1788 // binary operators (currently) have a fastmath bit in SelectionDAG, so this
1789 // information gets lost and we can't select on it.
1790 //
1791 // TODO: div and rcp are lowered to a binary op, so these we could in theory
1792 // lower them to "fast fdiv".
1793
1794 default:
1795 return {};
1796 }
1797 }();
1798
1799 // If Action.FtzRequirementTy is not satisfied by the module's ftz state, we
1800 // can bail out now. (Notice that in the case that IID is not an NVVM
1801 // intrinsic, we don't have to look up any module metadata, as
1802 // FtzRequirementTy will be FTZ_Any.)
1803 if (Action.FtzRequirement != FTZ_Any) {
1804 bool FtzEnabled =
1805 II->getFunction()->getFnAttribute("nvptx-f32ftz").getValueAsString() ==
1806 "true";
1807
1808 if (FtzEnabled != (Action.FtzRequirement == FTZ_MustBeOn))
1809 return nullptr;
1810 }
1811
1812 // Simplify to target-generic intrinsic.
1813 if (Action.IID) {
1814 SmallVector<Value *, 4> Args(II->arg_operands());
1815 // All the target-generic intrinsics currently of interest to us have one
1816 // type argument, equal to that of the nvvm intrinsic's argument.
Justin Lebare3ac0fb2017-01-27 01:49:39 +00001817 Type *Tys[] = {II->getArgOperand(0)->getType()};
Justin Lebar698c31b2017-01-27 00:58:58 +00001818 return CallInst::Create(
1819 Intrinsic::getDeclaration(II->getModule(), *Action.IID, Tys), Args);
1820 }
1821
1822 // Simplify to target-generic binary op.
1823 if (Action.BinaryOp)
1824 return BinaryOperator::Create(*Action.BinaryOp, II->getArgOperand(0),
1825 II->getArgOperand(1), II->getName());
1826
1827 // Simplify to target-generic cast op.
1828 if (Action.CastOp)
1829 return CastInst::Create(*Action.CastOp, II->getArgOperand(0), II->getType(),
1830 II->getName());
1831
1832 // All that's left are the special cases.
1833 if (!Action.Special)
1834 return nullptr;
1835
1836 switch (*Action.Special) {
1837 case SPC_Reciprocal:
1838 // Simplify reciprocal.
1839 return BinaryOperator::Create(
1840 Instruction::FDiv, ConstantFP::get(II->getArgOperand(0)->getType(), 1),
1841 II->getArgOperand(0), II->getName());
1842 }
Justin Lebar25ebe2d2017-01-27 02:04:07 +00001843 llvm_unreachable("All SpecialCase enumerators should be handled in switch.");
Justin Lebar698c31b2017-01-27 00:58:58 +00001844}
1845
Arnaud A. de Grandmaison333ef382016-05-10 09:24:49 +00001846Instruction *InstCombiner::visitVAStartInst(VAStartInst &I) {
1847 removeTriviallyEmptyRange(I, Intrinsic::vastart, Intrinsic::vaend, *this);
1848 return nullptr;
1849}
1850
1851Instruction *InstCombiner::visitVACopyInst(VACopyInst &I) {
1852 removeTriviallyEmptyRange(I, Intrinsic::vacopy, Intrinsic::vaend, *this);
1853 return nullptr;
1854}
1855
Sanjay Patelcd4377c2016-01-20 22:24:38 +00001856/// CallInst simplification. This mostly only handles folding of intrinsic
1857/// instructions. For normal calls, it allows visitCallSite to do the heavy
1858/// lifting.
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001859Instruction *InstCombiner::visitCallInst(CallInst &CI) {
David Majnemer15032582015-05-22 03:56:46 +00001860 auto Args = CI.arg_operands();
Andrew Kaylor647025f2017-06-09 23:18:11 +00001861 if (Value *V = SimplifyCall(&CI, CI.getCalledValue(), Args.begin(),
1862 Args.end(), SQ.getWithInstruction(&CI)))
Sanjay Patel4b198802016-02-01 22:23:39 +00001863 return replaceInstUsesWith(CI, V);
David Majnemer15032582015-05-22 03:56:46 +00001864
Justin Bogner99798402016-08-05 01:06:44 +00001865 if (isFreeCall(&CI, &TLI))
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001866 return visitFree(CI);
1867
1868 // If the caller function is nounwind, mark the call as nounwind, even if the
1869 // callee isn't.
Sanjay Patel5a470952016-08-11 15:16:06 +00001870 if (CI.getFunction()->doesNotThrow() && !CI.doesNotThrow()) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001871 CI.setDoesNotThrow();
1872 return &CI;
1873 }
Jim Grosbach7815f562012-02-03 00:07:04 +00001874
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001875 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
1876 if (!II) return visitCallSite(&CI);
Gabor Greif589a0b92010-06-24 12:58:35 +00001877
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001878 // Intrinsics cannot occur in an invoke, so handle them here instead of in
1879 // visitCallSite.
1880 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(II)) {
1881 bool Changed = false;
1882
1883 // memmove/cpy/set of zero bytes is a noop.
1884 if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
Chris Lattnerc663a672010-10-01 05:51:02 +00001885 if (NumBytes->isNullValue())
Sanjay Patel4b198802016-02-01 22:23:39 +00001886 return eraseInstFromFunction(CI);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001887
1888 if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
1889 if (CI->getZExtValue() == 1) {
1890 // Replace the instruction with just byte operations. We would
1891 // transform other cases to loads/stores, but we don't know if
1892 // alignment is sufficient.
1893 }
1894 }
Jim Grosbach7815f562012-02-03 00:07:04 +00001895
Chris Lattnerc663a672010-10-01 05:51:02 +00001896 // No other transformations apply to volatile transfers.
1897 if (MI->isVolatile())
Craig Topperf40110f2014-04-25 05:29:35 +00001898 return nullptr;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001899
1900 // If we have a memmove and the source operation is a constant global,
1901 // then the source and dest pointers can't alias, so we can change this
1902 // into a call to memcpy.
1903 if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(MI)) {
1904 if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))
1905 if (GVSrc->isConstant()) {
Sanjay Patelaf674fb2015-12-14 17:24:23 +00001906 Module *M = CI.getModule();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001907 Intrinsic::ID MemCpyID = Intrinsic::memcpy;
Jay Foadb804a2b2011-07-12 14:06:48 +00001908 Type *Tys[3] = { CI.getArgOperand(0)->getType(),
1909 CI.getArgOperand(1)->getType(),
1910 CI.getArgOperand(2)->getType() };
Benjamin Kramere6e19332011-07-14 17:45:39 +00001911 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001912 Changed = true;
1913 }
1914 }
1915
1916 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI)) {
1917 // memmove(x,x,size) -> noop.
1918 if (MTI->getSource() == MTI->getDest())
Sanjay Patel4b198802016-02-01 22:23:39 +00001919 return eraseInstFromFunction(CI);
Eric Christopher7258dcd2010-04-16 23:37:20 +00001920 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001921
Eric Christopher7258dcd2010-04-16 23:37:20 +00001922 // If we can determine a pointer alignment that is bigger than currently
1923 // set, update the alignment.
Pete Cooper67cf9a72015-11-19 05:56:52 +00001924 if (isa<MemTransferInst>(MI)) {
1925 if (Instruction *I = SimplifyMemTransfer(MI))
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001926 return I;
1927 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) {
1928 if (Instruction *I = SimplifyMemSet(MSI))
1929 return I;
1930 }
Gabor Greif590d95e2010-06-24 13:42:49 +00001931
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001932 if (Changed) return II;
1933 }
Jim Grosbach7815f562012-02-03 00:07:04 +00001934
Daniel Neilson3faabbb2017-06-16 14:43:59 +00001935 if (auto *AMI = dyn_cast<ElementUnorderedAtomicMemCpyInst>(II)) {
1936 if (Constant *C = dyn_cast<Constant>(AMI->getLength()))
Igor Laevsky4b317fa2017-02-08 14:23:47 +00001937 if (C->isNullValue())
1938 return eraseInstFromFunction(*AMI);
Igor Laevsky900ffa32017-02-08 14:32:04 +00001939
Daniel Neilson3faabbb2017-06-16 14:43:59 +00001940 if (Instruction *I = SimplifyElementUnorderedAtomicMemCpy(AMI))
Igor Laevsky900ffa32017-02-08 14:32:04 +00001941 return I;
Igor Laevsky4b317fa2017-02-08 14:23:47 +00001942 }
1943
Justin Lebar698c31b2017-01-27 00:58:58 +00001944 if (Instruction *I = SimplifyNVVMIntrinsic(II, *this))
1945 return I;
1946
Sanjay Patel1c600c62016-01-20 16:41:43 +00001947 auto SimplifyDemandedVectorEltsLow = [this](Value *Op, unsigned Width,
1948 unsigned DemandedWidth) {
Simon Pilgrim61116dd2015-09-17 20:32:45 +00001949 APInt UndefElts(Width, 0);
1950 APInt DemandedElts = APInt::getLowBitsSet(Width, DemandedWidth);
1951 return SimplifyDemandedVectorElts(Op, DemandedElts, UndefElts);
1952 };
1953
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001954 switch (II->getIntrinsicID()) {
1955 default: break;
George Burgess IV3f089142016-12-20 23:46:36 +00001956 case Intrinsic::objectsize:
1957 if (ConstantInt *N =
1958 lowerObjectSizeCall(II, DL, &TLI, /*MustSucceed=*/false))
1959 return replaceInstUsesWith(CI, N);
Craig Topperf40110f2014-04-25 05:29:35 +00001960 return nullptr;
George Burgess IV3f089142016-12-20 23:46:36 +00001961
Michael Ilseman536cc322012-12-13 03:13:36 +00001962 case Intrinsic::bswap: {
1963 Value *IIOperand = II->getArgOperand(0);
Craig Topperf40110f2014-04-25 05:29:35 +00001964 Value *X = nullptr;
Michael Ilseman536cc322012-12-13 03:13:36 +00001965
Craig Topper0f746c22017-07-04 06:50:48 +00001966 // TODO should this be in InstSimplify?
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001967 // bswap(bswap(x)) -> x
Michael Ilseman536cc322012-12-13 03:13:36 +00001968 if (match(IIOperand, m_BSwap(m_Value(X))))
Craig Topper0f746c22017-07-04 06:50:48 +00001969 return replaceInstUsesWith(CI, X);
Jim Grosbach7815f562012-02-03 00:07:04 +00001970
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001971 // bswap(trunc(bswap(x))) -> trunc(lshr(x, c))
Michael Ilseman536cc322012-12-13 03:13:36 +00001972 if (match(IIOperand, m_Trunc(m_BSwap(m_Value(X))))) {
1973 unsigned C = X->getType()->getPrimitiveSizeInBits() -
1974 IIOperand->getType()->getPrimitiveSizeInBits();
1975 Value *CV = ConstantInt::get(X->getType(), C);
Craig Topperbb4069e2017-07-07 23:16:26 +00001976 Value *V = Builder.CreateLShr(X, CV);
Michael Ilseman536cc322012-12-13 03:13:36 +00001977 return new TruncInst(V, IIOperand->getType());
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001978 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00001979 break;
Michael Ilseman536cc322012-12-13 03:13:36 +00001980 }
1981
James Molloy2d09c002015-11-12 12:39:41 +00001982 case Intrinsic::bitreverse: {
1983 Value *IIOperand = II->getArgOperand(0);
1984 Value *X = nullptr;
1985
Craig Topper0f746c22017-07-04 06:50:48 +00001986 // TODO should this be in InstSimplify?
James Molloy2d09c002015-11-12 12:39:41 +00001987 // bitreverse(bitreverse(x)) -> x
Simon Pilgrim77c3c5f2017-06-30 18:58:29 +00001988 if (match(IIOperand, m_BitReverse(m_Value(X))))
Sanjay Patel4b198802016-02-01 22:23:39 +00001989 return replaceInstUsesWith(CI, X);
James Molloy2d09c002015-11-12 12:39:41 +00001990 break;
1991 }
1992
Sanjay Patelb695c552016-02-01 17:00:10 +00001993 case Intrinsic::masked_load:
Craig Topperbb4069e2017-07-07 23:16:26 +00001994 if (Value *SimplifiedMaskedOp = simplifyMaskedLoad(*II, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00001995 return replaceInstUsesWith(CI, SimplifiedMaskedOp);
Sanjay Patelb695c552016-02-01 17:00:10 +00001996 break;
Sanjay Patel04f792b2016-02-01 19:39:52 +00001997 case Intrinsic::masked_store:
1998 return simplifyMaskedStore(*II, *this);
Sanjay Patel103ab7d2016-02-01 22:10:26 +00001999 case Intrinsic::masked_gather:
2000 return simplifyMaskedGather(*II, *this);
2001 case Intrinsic::masked_scatter:
2002 return simplifyMaskedScatter(*II, *this);
Sanjay Patelb695c552016-02-01 17:00:10 +00002003
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002004 case Intrinsic::powi:
Gabor Greif589a0b92010-06-24 12:58:35 +00002005 if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002006 // powi(x, 0) -> 1.0
2007 if (Power->isZero())
Sanjay Patel4b198802016-02-01 22:23:39 +00002008 return replaceInstUsesWith(CI, ConstantFP::get(CI.getType(), 1.0));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002009 // powi(x, 1) -> x
2010 if (Power->isOne())
Sanjay Patel4b198802016-02-01 22:23:39 +00002011 return replaceInstUsesWith(CI, II->getArgOperand(0));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002012 // powi(x, -1) -> 1/x
Craig Topper79ab6432017-07-06 18:39:47 +00002013 if (Power->isMinusOne())
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002014 return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0),
Gabor Greif589a0b92010-06-24 12:58:35 +00002015 II->getArgOperand(0));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002016 }
2017 break;
Jim Grosbach7815f562012-02-03 00:07:04 +00002018
Sanjay Patel8e3ab172016-08-05 22:42:46 +00002019 case Intrinsic::cttz:
2020 case Intrinsic::ctlz:
Amaury Sechet763c59d2016-08-18 20:43:50 +00002021 if (auto *I = foldCttzCtlz(*II, *this))
2022 return I;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002023 break;
Sanjoy Dasb0984472015-04-08 04:27:22 +00002024
Craig Topper5b173f22017-06-21 16:32:35 +00002025 case Intrinsic::ctpop:
2026 if (auto *I = foldCtpop(*II, *this))
2027 return I;
2028 break;
2029
Nick Lewyckyabe2cc12015-04-13 19:17:37 +00002030 case Intrinsic::uadd_with_overflow:
2031 case Intrinsic::sadd_with_overflow:
2032 case Intrinsic::umul_with_overflow:
2033 case Intrinsic::smul_with_overflow:
Gabor Greif5b1370e2010-06-28 16:50:57 +00002034 if (isa<Constant>(II->getArgOperand(0)) &&
2035 !isa<Constant>(II->getArgOperand(1))) {
Sanjoy Dasb0984472015-04-08 04:27:22 +00002036 // Canonicalize constants into the RHS.
Gabor Greif5b1370e2010-06-28 16:50:57 +00002037 Value *LHS = II->getArgOperand(0);
2038 II->setArgOperand(0, II->getArgOperand(1));
2039 II->setArgOperand(1, LHS);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002040 return II;
2041 }
Justin Bognercd1d5aa2016-08-17 20:30:52 +00002042 LLVM_FALLTHROUGH;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002043
Nick Lewyckyabe2cc12015-04-13 19:17:37 +00002044 case Intrinsic::usub_with_overflow:
2045 case Intrinsic::ssub_with_overflow: {
Sanjoy Dasb0984472015-04-08 04:27:22 +00002046 OverflowCheckFlavor OCF =
2047 IntrinsicIDToOverflowCheckFlavor(II->getIntrinsicID());
2048 assert(OCF != OCF_INVALID && "unexpected!");
Jim Grosbach7815f562012-02-03 00:07:04 +00002049
Sanjoy Dasb0984472015-04-08 04:27:22 +00002050 Value *OperationResult = nullptr;
2051 Constant *OverflowResult = nullptr;
2052 if (OptimizeOverflowCheck(OCF, II->getArgOperand(0), II->getArgOperand(1),
2053 *II, OperationResult, OverflowResult))
2054 return CreateOverflowTuple(II, OperationResult, OverflowResult);
Benjamin Kramera420df22014-07-04 10:22:21 +00002055
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002056 break;
Erik Eckstein096ff7d2014-12-11 08:02:30 +00002057 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002058
Matt Arsenaultd6511b42014-10-21 23:00:20 +00002059 case Intrinsic::minnum:
2060 case Intrinsic::maxnum: {
2061 Value *Arg0 = II->getArgOperand(0);
2062 Value *Arg1 = II->getArgOperand(1);
Sanjay Patel0069f562016-01-31 16:35:23 +00002063 // Canonicalize constants to the RHS.
2064 if (isa<ConstantFP>(Arg0) && !isa<ConstantFP>(Arg1)) {
Matt Arsenaultd6511b42014-10-21 23:00:20 +00002065 II->setArgOperand(0, Arg1);
2066 II->setArgOperand(1, Arg0);
2067 return II;
2068 }
Sanjay Patel0069f562016-01-31 16:35:23 +00002069 if (Value *V = simplifyMinnumMaxnum(*II))
Sanjay Patel4b198802016-02-01 22:23:39 +00002070 return replaceInstUsesWith(*II, V);
Matt Arsenaultd6511b42014-10-21 23:00:20 +00002071 break;
2072 }
Matt Arsenault1cc294c2017-01-03 04:32:31 +00002073 case Intrinsic::fmuladd: {
Matt Arsenault92057602017-02-16 18:46:24 +00002074 // Canonicalize fast fmuladd to the separate fmul + fadd.
2075 if (II->hasUnsafeAlgebra()) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002076 BuilderTy::FastMathFlagGuard Guard(Builder);
2077 Builder.setFastMathFlags(II->getFastMathFlags());
2078 Value *Mul = Builder.CreateFMul(II->getArgOperand(0),
2079 II->getArgOperand(1));
2080 Value *Add = Builder.CreateFAdd(Mul, II->getArgOperand(2));
Matt Arsenault92057602017-02-16 18:46:24 +00002081 Add->takeName(II);
2082 return replaceInstUsesWith(*II, Add);
2083 }
2084
2085 LLVM_FALLTHROUGH;
2086 }
2087 case Intrinsic::fma: {
Matt Arsenault1cc294c2017-01-03 04:32:31 +00002088 Value *Src0 = II->getArgOperand(0);
2089 Value *Src1 = II->getArgOperand(1);
2090
Matt Arsenaultb264c942017-01-03 04:32:35 +00002091 // Canonicalize constants into the RHS.
2092 if (isa<Constant>(Src0) && !isa<Constant>(Src1)) {
2093 II->setArgOperand(0, Src1);
2094 II->setArgOperand(1, Src0);
2095 std::swap(Src0, Src1);
2096 }
2097
2098 Value *LHS = nullptr;
2099 Value *RHS = nullptr;
2100
Matt Arsenault1cc294c2017-01-03 04:32:31 +00002101 // fma fneg(x), fneg(y), z -> fma x, y, z
2102 if (match(Src0, m_FNeg(m_Value(LHS))) &&
2103 match(Src1, m_FNeg(m_Value(RHS)))) {
Matt Arsenault3f509042017-01-10 23:17:52 +00002104 II->setArgOperand(0, LHS);
2105 II->setArgOperand(1, RHS);
2106 return II;
Matt Arsenault1cc294c2017-01-03 04:32:31 +00002107 }
2108
2109 // fma fabs(x), fabs(x), z -> fma x, x, z
2110 if (match(Src0, m_Intrinsic<Intrinsic::fabs>(m_Value(LHS))) &&
2111 match(Src1, m_Intrinsic<Intrinsic::fabs>(m_Value(RHS))) && LHS == RHS) {
Matt Arsenault3f509042017-01-10 23:17:52 +00002112 II->setArgOperand(0, LHS);
2113 II->setArgOperand(1, RHS);
2114 return II;
Matt Arsenault1cc294c2017-01-03 04:32:31 +00002115 }
2116
Matt Arsenaultb264c942017-01-03 04:32:35 +00002117 // fma x, 1, z -> fadd x, z
2118 if (match(Src1, m_FPOne())) {
2119 Instruction *RI = BinaryOperator::CreateFAdd(Src0, II->getArgOperand(2));
2120 RI->copyFastMathFlags(II);
2121 return RI;
2122 }
2123
Matt Arsenault1cc294c2017-01-03 04:32:31 +00002124 break;
2125 }
Matt Arsenault56ff4832017-01-03 22:40:34 +00002126 case Intrinsic::fabs: {
2127 Value *Cond;
2128 Constant *LHS, *RHS;
2129 if (match(II->getArgOperand(0),
2130 m_Select(m_Value(Cond), m_Constant(LHS), m_Constant(RHS)))) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002131 CallInst *Call0 = Builder.CreateCall(II->getCalledFunction(), {LHS});
2132 CallInst *Call1 = Builder.CreateCall(II->getCalledFunction(), {RHS});
Matt Arsenault56ff4832017-01-03 22:40:34 +00002133 return SelectInst::Create(Cond, Call0, Call1);
2134 }
2135
Matt Arsenault954a6242017-01-23 23:55:08 +00002136 LLVM_FALLTHROUGH;
2137 }
2138 case Intrinsic::ceil:
2139 case Intrinsic::floor:
2140 case Intrinsic::round:
2141 case Intrinsic::nearbyint:
Joerg Sonnenberger28bed102017-03-31 19:58:07 +00002142 case Intrinsic::rint:
Matt Arsenault954a6242017-01-23 23:55:08 +00002143 case Intrinsic::trunc: {
Matt Arsenault72333442017-01-17 00:10:40 +00002144 Value *ExtSrc;
2145 if (match(II->getArgOperand(0), m_FPExt(m_Value(ExtSrc))) &&
2146 II->getArgOperand(0)->hasOneUse()) {
2147 // fabs (fpext x) -> fpext (fabs x)
Matt Arsenault954a6242017-01-23 23:55:08 +00002148 Value *F = Intrinsic::getDeclaration(II->getModule(), II->getIntrinsicID(),
Matt Arsenault72333442017-01-17 00:10:40 +00002149 { ExtSrc->getType() });
Craig Topperbb4069e2017-07-07 23:16:26 +00002150 CallInst *NewFabs = Builder.CreateCall(F, ExtSrc);
Matt Arsenault72333442017-01-17 00:10:40 +00002151 NewFabs->copyFastMathFlags(II);
2152 NewFabs->takeName(II);
2153 return new FPExtInst(NewFabs, II->getType());
2154 }
2155
Matt Arsenault56ff4832017-01-03 22:40:34 +00002156 break;
2157 }
Matt Arsenault3bdd75d2017-01-04 22:49:03 +00002158 case Intrinsic::cos:
2159 case Intrinsic::amdgcn_cos: {
2160 Value *SrcSrc;
2161 Value *Src = II->getArgOperand(0);
2162 if (match(Src, m_FNeg(m_Value(SrcSrc))) ||
2163 match(Src, m_Intrinsic<Intrinsic::fabs>(m_Value(SrcSrc)))) {
2164 // cos(-x) -> cos(x)
2165 // cos(fabs(x)) -> cos(x)
2166 II->setArgOperand(0, SrcSrc);
2167 return II;
2168 }
2169
2170 break;
2171 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002172 case Intrinsic::ppc_altivec_lvx:
2173 case Intrinsic::ppc_altivec_lvxl:
Bill Wendlingb902f1d2011-04-13 00:36:11 +00002174 // Turn PPC lvx -> load if the pointer is known aligned.
Daniel Jasperaec2fa32016-12-19 08:22:17 +00002175 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, DL, II, &AC,
Justin Bogner99798402016-08-05 01:06:44 +00002176 &DT) >= 16) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002177 Value *Ptr = Builder.CreateBitCast(II->getArgOperand(0),
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002178 PointerType::getUnqual(II->getType()));
2179 return new LoadInst(Ptr);
2180 }
2181 break;
Bill Schmidt72954782014-11-12 04:19:40 +00002182 case Intrinsic::ppc_vsx_lxvw4x:
2183 case Intrinsic::ppc_vsx_lxvd2x: {
2184 // Turn PPC VSX loads into normal loads.
Craig Topperbb4069e2017-07-07 23:16:26 +00002185 Value *Ptr = Builder.CreateBitCast(II->getArgOperand(0),
2186 PointerType::getUnqual(II->getType()));
Bill Schmidt72954782014-11-12 04:19:40 +00002187 return new LoadInst(Ptr, Twine(""), false, 1);
2188 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002189 case Intrinsic::ppc_altivec_stvx:
2190 case Intrinsic::ppc_altivec_stvxl:
2191 // Turn stvx -> store if the pointer is known aligned.
Daniel Jasperaec2fa32016-12-19 08:22:17 +00002192 if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, DL, II, &AC,
Justin Bogner99798402016-08-05 01:06:44 +00002193 &DT) >= 16) {
Jim Grosbach7815f562012-02-03 00:07:04 +00002194 Type *OpPtrTy =
Gabor Greifa6d75e22010-06-24 15:51:11 +00002195 PointerType::getUnqual(II->getArgOperand(0)->getType());
Craig Topperbb4069e2017-07-07 23:16:26 +00002196 Value *Ptr = Builder.CreateBitCast(II->getArgOperand(1), OpPtrTy);
Gabor Greifa6d75e22010-06-24 15:51:11 +00002197 return new StoreInst(II->getArgOperand(0), Ptr);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002198 }
2199 break;
Bill Schmidt72954782014-11-12 04:19:40 +00002200 case Intrinsic::ppc_vsx_stxvw4x:
2201 case Intrinsic::ppc_vsx_stxvd2x: {
2202 // Turn PPC VSX stores into normal stores.
2203 Type *OpPtrTy = PointerType::getUnqual(II->getArgOperand(0)->getType());
Craig Topperbb4069e2017-07-07 23:16:26 +00002204 Value *Ptr = Builder.CreateBitCast(II->getArgOperand(1), OpPtrTy);
Bill Schmidt72954782014-11-12 04:19:40 +00002205 return new StoreInst(II->getArgOperand(0), Ptr, false, 1);
2206 }
Hal Finkel221f4672015-02-26 18:56:03 +00002207 case Intrinsic::ppc_qpx_qvlfs:
2208 // Turn PPC QPX qvlfs -> load if the pointer is known aligned.
Daniel Jasperaec2fa32016-12-19 08:22:17 +00002209 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, DL, II, &AC,
Justin Bogner99798402016-08-05 01:06:44 +00002210 &DT) >= 16) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002211 Type *VTy = VectorType::get(Builder.getFloatTy(),
Hal Finkelf0d68d72015-05-11 06:37:03 +00002212 II->getType()->getVectorNumElements());
Craig Topperbb4069e2017-07-07 23:16:26 +00002213 Value *Ptr = Builder.CreateBitCast(II->getArgOperand(0),
Hal Finkelf0d68d72015-05-11 06:37:03 +00002214 PointerType::getUnqual(VTy));
Craig Topperbb4069e2017-07-07 23:16:26 +00002215 Value *Load = Builder.CreateLoad(Ptr);
Hal Finkelf0d68d72015-05-11 06:37:03 +00002216 return new FPExtInst(Load, II->getType());
Hal Finkel221f4672015-02-26 18:56:03 +00002217 }
2218 break;
2219 case Intrinsic::ppc_qpx_qvlfd:
2220 // Turn PPC QPX qvlfd -> load if the pointer is known aligned.
Daniel Jasperaec2fa32016-12-19 08:22:17 +00002221 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 32, DL, II, &AC,
Justin Bogner99798402016-08-05 01:06:44 +00002222 &DT) >= 32) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002223 Value *Ptr = Builder.CreateBitCast(II->getArgOperand(0),
Hal Finkel221f4672015-02-26 18:56:03 +00002224 PointerType::getUnqual(II->getType()));
2225 return new LoadInst(Ptr);
2226 }
2227 break;
2228 case Intrinsic::ppc_qpx_qvstfs:
2229 // Turn PPC QPX qvstfs -> store if the pointer is known aligned.
Daniel Jasperaec2fa32016-12-19 08:22:17 +00002230 if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, DL, II, &AC,
Justin Bogner99798402016-08-05 01:06:44 +00002231 &DT) >= 16) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002232 Type *VTy = VectorType::get(Builder.getFloatTy(),
Hal Finkelf0d68d72015-05-11 06:37:03 +00002233 II->getArgOperand(0)->getType()->getVectorNumElements());
Craig Topperbb4069e2017-07-07 23:16:26 +00002234 Value *TOp = Builder.CreateFPTrunc(II->getArgOperand(0), VTy);
Hal Finkelf0d68d72015-05-11 06:37:03 +00002235 Type *OpPtrTy = PointerType::getUnqual(VTy);
Craig Topperbb4069e2017-07-07 23:16:26 +00002236 Value *Ptr = Builder.CreateBitCast(II->getArgOperand(1), OpPtrTy);
Hal Finkelf0d68d72015-05-11 06:37:03 +00002237 return new StoreInst(TOp, Ptr);
Hal Finkel221f4672015-02-26 18:56:03 +00002238 }
2239 break;
2240 case Intrinsic::ppc_qpx_qvstfd:
2241 // Turn PPC QPX qvstfd -> store if the pointer is known aligned.
Daniel Jasperaec2fa32016-12-19 08:22:17 +00002242 if (getOrEnforceKnownAlignment(II->getArgOperand(1), 32, DL, II, &AC,
Justin Bogner99798402016-08-05 01:06:44 +00002243 &DT) >= 32) {
Hal Finkel221f4672015-02-26 18:56:03 +00002244 Type *OpPtrTy =
2245 PointerType::getUnqual(II->getArgOperand(0)->getType());
Craig Topperbb4069e2017-07-07 23:16:26 +00002246 Value *Ptr = Builder.CreateBitCast(II->getArgOperand(1), OpPtrTy);
Hal Finkel221f4672015-02-26 18:56:03 +00002247 return new StoreInst(II->getArgOperand(0), Ptr);
2248 }
2249 break;
Simon Pilgrim20c607b2015-09-12 13:39:53 +00002250
Craig Topper83240032017-07-31 18:52:13 +00002251 case Intrinsic::x86_bmi_bextr_32:
2252 case Intrinsic::x86_bmi_bextr_64:
2253 case Intrinsic::x86_tbm_bextri_u32:
2254 case Intrinsic::x86_tbm_bextri_u64:
2255 // If the RHS is a constant we can try some simplifications.
2256 if (auto *C = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
2257 uint64_t Shift = C->getZExtValue();
2258 uint64_t Length = (Shift >> 8) & 0xff;
2259 Shift &= 0xff;
2260 unsigned BitWidth = II->getType()->getIntegerBitWidth();
2261 // If the length is 0 or the shift is out of range, replace with zero.
2262 if (Length == 0 || Shift >= BitWidth)
2263 return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), 0));
2264 // If the LHS is also a constant, we can completely constant fold this.
2265 if (auto *InC = dyn_cast<ConstantInt>(II->getArgOperand(0))) {
2266 uint64_t Result = InC->getZExtValue() >> Shift;
2267 if (Length > BitWidth)
2268 Length = BitWidth;
2269 Result &= maskTrailingOnes<uint64_t>(Length);
2270 return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), Result));
2271 }
2272 // TODO should we turn this into 'and' if shift is 0? Or 'shl' if we
2273 // are only masking bits that a shift already cleared?
2274 }
2275 break;
2276
Craig Topper317a51e2017-07-31 18:52:15 +00002277 case Intrinsic::x86_bmi_bzhi_32:
2278 case Intrinsic::x86_bmi_bzhi_64:
2279 // If the RHS is a constant we can try some simplifications.
2280 if (auto *C = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
2281 uint64_t Index = C->getZExtValue() & 0xff;
2282 unsigned BitWidth = II->getType()->getIntegerBitWidth();
2283 if (Index >= BitWidth)
2284 return replaceInstUsesWith(CI, II->getArgOperand(0));
2285 if (Index == 0)
2286 return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), 0));
2287 // If the LHS is also a constant, we can completely constant fold this.
2288 if (auto *InC = dyn_cast<ConstantInt>(II->getArgOperand(0))) {
2289 uint64_t Result = InC->getZExtValue();
2290 Result &= maskTrailingOnes<uint64_t>(Index);
2291 return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), Result));
2292 }
2293 // TODO should we convert this to an AND if the RHS is constant?
2294 }
2295 break;
2296
Simon Pilgrim20c607b2015-09-12 13:39:53 +00002297 case Intrinsic::x86_vcvtph2ps_128:
2298 case Intrinsic::x86_vcvtph2ps_256: {
2299 auto Arg = II->getArgOperand(0);
2300 auto ArgType = cast<VectorType>(Arg->getType());
2301 auto RetType = cast<VectorType>(II->getType());
2302 unsigned ArgWidth = ArgType->getNumElements();
2303 unsigned RetWidth = RetType->getNumElements();
2304 assert(RetWidth <= ArgWidth && "Unexpected input/return vector widths");
2305 assert(ArgType->isIntOrIntVectorTy() &&
2306 ArgType->getScalarSizeInBits() == 16 &&
2307 "CVTPH2PS input type should be 16-bit integer vector");
2308 assert(RetType->getScalarType()->isFloatTy() &&
2309 "CVTPH2PS output type should be 32-bit float vector");
2310
2311 // Constant folding: Convert to generic half to single conversion.
Simon Pilgrim48ffca02015-09-12 14:00:17 +00002312 if (isa<ConstantAggregateZero>(Arg))
Sanjay Patel4b198802016-02-01 22:23:39 +00002313 return replaceInstUsesWith(*II, ConstantAggregateZero::get(RetType));
Simon Pilgrim20c607b2015-09-12 13:39:53 +00002314
Simon Pilgrim48ffca02015-09-12 14:00:17 +00002315 if (isa<ConstantDataVector>(Arg)) {
Simon Pilgrim20c607b2015-09-12 13:39:53 +00002316 auto VectorHalfAsShorts = Arg;
2317 if (RetWidth < ArgWidth) {
Craig Topper99d1eab2016-06-12 00:41:19 +00002318 SmallVector<uint32_t, 8> SubVecMask;
Simon Pilgrim20c607b2015-09-12 13:39:53 +00002319 for (unsigned i = 0; i != RetWidth; ++i)
2320 SubVecMask.push_back((int)i);
Craig Topperbb4069e2017-07-07 23:16:26 +00002321 VectorHalfAsShorts = Builder.CreateShuffleVector(
Simon Pilgrim20c607b2015-09-12 13:39:53 +00002322 Arg, UndefValue::get(ArgType), SubVecMask);
2323 }
2324
2325 auto VectorHalfType =
2326 VectorType::get(Type::getHalfTy(II->getContext()), RetWidth);
2327 auto VectorHalfs =
Craig Topperbb4069e2017-07-07 23:16:26 +00002328 Builder.CreateBitCast(VectorHalfAsShorts, VectorHalfType);
2329 auto VectorFloats = Builder.CreateFPExt(VectorHalfs, RetType);
Sanjay Patel4b198802016-02-01 22:23:39 +00002330 return replaceInstUsesWith(*II, VectorFloats);
Simon Pilgrim20c607b2015-09-12 13:39:53 +00002331 }
2332
2333 // We only use the lowest lanes of the argument.
Simon Pilgrim996725e2015-09-19 11:41:53 +00002334 if (Value *V = SimplifyDemandedVectorEltsLow(Arg, ArgWidth, RetWidth)) {
Simon Pilgrim20c607b2015-09-12 13:39:53 +00002335 II->setArgOperand(0, V);
2336 return II;
2337 }
2338 break;
2339 }
2340
Chandler Carruthcf414cf2011-01-10 07:19:37 +00002341 case Intrinsic::x86_sse_cvtss2si:
2342 case Intrinsic::x86_sse_cvtss2si64:
2343 case Intrinsic::x86_sse_cvttss2si:
2344 case Intrinsic::x86_sse_cvttss2si64:
2345 case Intrinsic::x86_sse2_cvtsd2si:
2346 case Intrinsic::x86_sse2_cvtsd2si64:
2347 case Intrinsic::x86_sse2_cvttsd2si:
Craig Topperaeaa52c2016-12-14 07:46:12 +00002348 case Intrinsic::x86_sse2_cvttsd2si64:
2349 case Intrinsic::x86_avx512_vcvtss2si32:
2350 case Intrinsic::x86_avx512_vcvtss2si64:
2351 case Intrinsic::x86_avx512_vcvtss2usi32:
2352 case Intrinsic::x86_avx512_vcvtss2usi64:
2353 case Intrinsic::x86_avx512_vcvtsd2si32:
2354 case Intrinsic::x86_avx512_vcvtsd2si64:
2355 case Intrinsic::x86_avx512_vcvtsd2usi32:
2356 case Intrinsic::x86_avx512_vcvtsd2usi64:
2357 case Intrinsic::x86_avx512_cvttss2si:
2358 case Intrinsic::x86_avx512_cvttss2si64:
2359 case Intrinsic::x86_avx512_cvttss2usi:
2360 case Intrinsic::x86_avx512_cvttss2usi64:
2361 case Intrinsic::x86_avx512_cvttsd2si:
2362 case Intrinsic::x86_avx512_cvttsd2si64:
2363 case Intrinsic::x86_avx512_cvttsd2usi:
2364 case Intrinsic::x86_avx512_cvttsd2usi64: {
Chandler Carruthcf414cf2011-01-10 07:19:37 +00002365 // These intrinsics only demand the 0th element of their input vectors. If
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002366 // we can simplify the input based on that, do so now.
Simon Pilgrim996725e2015-09-19 11:41:53 +00002367 Value *Arg = II->getArgOperand(0);
2368 unsigned VWidth = Arg->getType()->getVectorNumElements();
2369 if (Value *V = SimplifyDemandedVectorEltsLow(Arg, VWidth, 1)) {
Gabor Greif5b1370e2010-06-28 16:50:57 +00002370 II->setArgOperand(0, V);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00002371 return II;
2372 }
Simon Pilgrim18617d12015-08-05 08:18:00 +00002373 break;
2374 }
2375
Simon Pilgrim91e3ac82016-06-07 08:18:35 +00002376 case Intrinsic::x86_mmx_pmovmskb:
2377 case Intrinsic::x86_sse_movmsk_ps:
2378 case Intrinsic::x86_sse2_movmsk_pd:
2379 case Intrinsic::x86_sse2_pmovmskb_128:
2380 case Intrinsic::x86_avx_movmsk_pd_256:
2381 case Intrinsic::x86_avx_movmsk_ps_256:
2382 case Intrinsic::x86_avx2_pmovmskb: {
Craig Topper4853c432017-07-06 23:18:42 +00002383 if (Value *V = simplifyX86movmsk(*II))
Simon Pilgrim91e3ac82016-06-07 08:18:35 +00002384 return replaceInstUsesWith(*II, V);
2385 break;
2386 }
2387
Simon Pilgrim471efd22016-02-20 23:17:35 +00002388 case Intrinsic::x86_sse_comieq_ss:
2389 case Intrinsic::x86_sse_comige_ss:
2390 case Intrinsic::x86_sse_comigt_ss:
2391 case Intrinsic::x86_sse_comile_ss:
2392 case Intrinsic::x86_sse_comilt_ss:
2393 case Intrinsic::x86_sse_comineq_ss:
2394 case Intrinsic::x86_sse_ucomieq_ss:
2395 case Intrinsic::x86_sse_ucomige_ss:
2396 case Intrinsic::x86_sse_ucomigt_ss:
2397 case Intrinsic::x86_sse_ucomile_ss:
2398 case Intrinsic::x86_sse_ucomilt_ss:
2399 case Intrinsic::x86_sse_ucomineq_ss:
2400 case Intrinsic::x86_sse2_comieq_sd:
2401 case Intrinsic::x86_sse2_comige_sd:
2402 case Intrinsic::x86_sse2_comigt_sd:
2403 case Intrinsic::x86_sse2_comile_sd:
2404 case Intrinsic::x86_sse2_comilt_sd:
2405 case Intrinsic::x86_sse2_comineq_sd:
2406 case Intrinsic::x86_sse2_ucomieq_sd:
2407 case Intrinsic::x86_sse2_ucomige_sd:
2408 case Intrinsic::x86_sse2_ucomigt_sd:
2409 case Intrinsic::x86_sse2_ucomile_sd:
2410 case Intrinsic::x86_sse2_ucomilt_sd:
Craig Topperd9639532016-12-11 07:42:04 +00002411 case Intrinsic::x86_sse2_ucomineq_sd:
Craig Topperd00db692016-12-31 00:45:06 +00002412 case Intrinsic::x86_avx512_vcomi_ss:
2413 case Intrinsic::x86_avx512_vcomi_sd:
Craig Topperd9639532016-12-11 07:42:04 +00002414 case Intrinsic::x86_avx512_mask_cmp_ss:
2415 case Intrinsic::x86_avx512_mask_cmp_sd: {
Simon Pilgrim471efd22016-02-20 23:17:35 +00002416 // These intrinsics only demand the 0th element of their input vectors. If
2417 // we can simplify the input based on that, do so now.
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002418 bool MadeChange = false;
Simon Pilgrim471efd22016-02-20 23:17:35 +00002419 Value *Arg0 = II->getArgOperand(0);
2420 Value *Arg1 = II->getArgOperand(1);
2421 unsigned VWidth = Arg0->getType()->getVectorNumElements();
2422 if (Value *V = SimplifyDemandedVectorEltsLow(Arg0, VWidth, 1)) {
2423 II->setArgOperand(0, V);
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002424 MadeChange = true;
Simon Pilgrim471efd22016-02-20 23:17:35 +00002425 }
2426 if (Value *V = SimplifyDemandedVectorEltsLow(Arg1, VWidth, 1)) {
2427 II->setArgOperand(1, V);
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002428 MadeChange = true;
Simon Pilgrim471efd22016-02-20 23:17:35 +00002429 }
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002430 if (MadeChange)
2431 return II;
Simon Pilgrim471efd22016-02-20 23:17:35 +00002432 break;
2433 }
Michael Zuckerman16b20d22017-04-16 13:26:08 +00002434 case Intrinsic::x86_avx512_mask_cmp_pd_128:
2435 case Intrinsic::x86_avx512_mask_cmp_pd_256:
2436 case Intrinsic::x86_avx512_mask_cmp_pd_512:
2437 case Intrinsic::x86_avx512_mask_cmp_ps_128:
2438 case Intrinsic::x86_avx512_mask_cmp_ps_256:
2439 case Intrinsic::x86_avx512_mask_cmp_ps_512: {
2440 // Folding cmp(sub(a,b),0) -> cmp(a,b) and cmp(0,sub(a,b)) -> cmp(b,a)
2441 Value *Arg0 = II->getArgOperand(0);
2442 Value *Arg1 = II->getArgOperand(1);
2443 bool Arg0IsZero = match(Arg0, m_Zero());
2444 if (Arg0IsZero)
2445 std::swap(Arg0, Arg1);
2446 Value *A, *B;
2447 // This fold requires only the NINF(not +/- inf) since inf minus
2448 // inf is nan.
2449 // NSZ(No Signed Zeros) is not needed because zeros of any sign are
2450 // equal for both compares.
2451 // NNAN is not needed because nans compare the same for both compares.
2452 // The compare intrinsic uses the above assumptions and therefore
2453 // doesn't require additional flags.
2454 if ((match(Arg0, m_OneUse(m_FSub(m_Value(A), m_Value(B)))) &&
2455 match(Arg1, m_Zero()) &&
2456 cast<Instruction>(Arg0)->getFastMathFlags().noInfs())) {
2457 if (Arg0IsZero)
2458 std::swap(A, B);
2459 II->setArgOperand(0, A);
2460 II->setArgOperand(1, B);
2461 return II;
2462 }
2463 break;
2464 }
Simon Pilgrim471efd22016-02-20 23:17:35 +00002465
Craig Topper020b2282016-12-27 00:23:16 +00002466 case Intrinsic::x86_avx512_mask_add_ps_512:
2467 case Intrinsic::x86_avx512_mask_div_ps_512:
2468 case Intrinsic::x86_avx512_mask_mul_ps_512:
2469 case Intrinsic::x86_avx512_mask_sub_ps_512:
2470 case Intrinsic::x86_avx512_mask_add_pd_512:
2471 case Intrinsic::x86_avx512_mask_div_pd_512:
2472 case Intrinsic::x86_avx512_mask_mul_pd_512:
2473 case Intrinsic::x86_avx512_mask_sub_pd_512:
2474 // If the rounding mode is CUR_DIRECTION(4) we can turn these into regular
2475 // IR operations.
2476 if (auto *R = dyn_cast<ConstantInt>(II->getArgOperand(4))) {
2477 if (R->getValue() == 4) {
2478 Value *Arg0 = II->getArgOperand(0);
2479 Value *Arg1 = II->getArgOperand(1);
2480
2481 Value *V;
2482 switch (II->getIntrinsicID()) {
2483 default: llvm_unreachable("Case stmts out of sync!");
2484 case Intrinsic::x86_avx512_mask_add_ps_512:
2485 case Intrinsic::x86_avx512_mask_add_pd_512:
Craig Topperbb4069e2017-07-07 23:16:26 +00002486 V = Builder.CreateFAdd(Arg0, Arg1);
Craig Topper020b2282016-12-27 00:23:16 +00002487 break;
2488 case Intrinsic::x86_avx512_mask_sub_ps_512:
2489 case Intrinsic::x86_avx512_mask_sub_pd_512:
Craig Topperbb4069e2017-07-07 23:16:26 +00002490 V = Builder.CreateFSub(Arg0, Arg1);
Craig Topper020b2282016-12-27 00:23:16 +00002491 break;
2492 case Intrinsic::x86_avx512_mask_mul_ps_512:
2493 case Intrinsic::x86_avx512_mask_mul_pd_512:
Craig Topperbb4069e2017-07-07 23:16:26 +00002494 V = Builder.CreateFMul(Arg0, Arg1);
Craig Topper020b2282016-12-27 00:23:16 +00002495 break;
2496 case Intrinsic::x86_avx512_mask_div_ps_512:
2497 case Intrinsic::x86_avx512_mask_div_pd_512:
Craig Topperbb4069e2017-07-07 23:16:26 +00002498 V = Builder.CreateFDiv(Arg0, Arg1);
Craig Topper020b2282016-12-27 00:23:16 +00002499 break;
2500 }
2501
2502 // Create a select for the masking.
2503 V = emitX86MaskSelect(II->getArgOperand(3), V, II->getArgOperand(2),
Craig Topperbb4069e2017-07-07 23:16:26 +00002504 Builder);
Craig Topper020b2282016-12-27 00:23:16 +00002505 return replaceInstUsesWith(*II, V);
2506 }
2507 }
2508 break;
2509
Craig Topper790d0fa2016-12-11 07:42:01 +00002510 case Intrinsic::x86_avx512_mask_add_ss_round:
2511 case Intrinsic::x86_avx512_mask_div_ss_round:
2512 case Intrinsic::x86_avx512_mask_mul_ss_round:
2513 case Intrinsic::x86_avx512_mask_sub_ss_round:
Craig Topper790d0fa2016-12-11 07:42:01 +00002514 case Intrinsic::x86_avx512_mask_add_sd_round:
2515 case Intrinsic::x86_avx512_mask_div_sd_round:
2516 case Intrinsic::x86_avx512_mask_mul_sd_round:
2517 case Intrinsic::x86_avx512_mask_sub_sd_round:
Craig Topper7b788ada2016-12-26 06:33:19 +00002518 // If the rounding mode is CUR_DIRECTION(4) we can turn these into regular
2519 // IR operations.
2520 if (auto *R = dyn_cast<ConstantInt>(II->getArgOperand(4))) {
2521 if (R->getValue() == 4) {
Craig Topper7f8540b2016-12-27 01:56:30 +00002522 // Extract the element as scalars.
2523 Value *Arg0 = II->getArgOperand(0);
2524 Value *Arg1 = II->getArgOperand(1);
Craig Topperbb4069e2017-07-07 23:16:26 +00002525 Value *LHS = Builder.CreateExtractElement(Arg0, (uint64_t)0);
2526 Value *RHS = Builder.CreateExtractElement(Arg1, (uint64_t)0);
Craig Topper7b788ada2016-12-26 06:33:19 +00002527
Craig Topper7f8540b2016-12-27 01:56:30 +00002528 Value *V;
2529 switch (II->getIntrinsicID()) {
2530 default: llvm_unreachable("Case stmts out of sync!");
2531 case Intrinsic::x86_avx512_mask_add_ss_round:
2532 case Intrinsic::x86_avx512_mask_add_sd_round:
Craig Topperbb4069e2017-07-07 23:16:26 +00002533 V = Builder.CreateFAdd(LHS, RHS);
Craig Topper7f8540b2016-12-27 01:56:30 +00002534 break;
2535 case Intrinsic::x86_avx512_mask_sub_ss_round:
2536 case Intrinsic::x86_avx512_mask_sub_sd_round:
Craig Topperbb4069e2017-07-07 23:16:26 +00002537 V = Builder.CreateFSub(LHS, RHS);
Craig Topper7f8540b2016-12-27 01:56:30 +00002538 break;
2539 case Intrinsic::x86_avx512_mask_mul_ss_round:
2540 case Intrinsic::x86_avx512_mask_mul_sd_round:
Craig Topperbb4069e2017-07-07 23:16:26 +00002541 V = Builder.CreateFMul(LHS, RHS);
Craig Topper7f8540b2016-12-27 01:56:30 +00002542 break;
2543 case Intrinsic::x86_avx512_mask_div_ss_round:
2544 case Intrinsic::x86_avx512_mask_div_sd_round:
Craig Topperbb4069e2017-07-07 23:16:26 +00002545 V = Builder.CreateFDiv(LHS, RHS);
Craig Topper7f8540b2016-12-27 01:56:30 +00002546 break;
Craig Topper7b788ada2016-12-26 06:33:19 +00002547 }
Craig Topper7f8540b2016-12-27 01:56:30 +00002548
2549 // Handle the masking aspect of the intrinsic.
Craig Topper7f8540b2016-12-27 01:56:30 +00002550 Value *Mask = II->getArgOperand(3);
Craig Topper99163632016-12-30 23:06:28 +00002551 auto *C = dyn_cast<ConstantInt>(Mask);
2552 // We don't need a select if we know the mask bit is a 1.
2553 if (!C || !C->getValue()[0]) {
2554 // Cast the mask to an i1 vector and then extract the lowest element.
Craig Topperbb4069e2017-07-07 23:16:26 +00002555 auto *MaskTy = VectorType::get(Builder.getInt1Ty(),
Craig Topper7f8540b2016-12-27 01:56:30 +00002556 cast<IntegerType>(Mask->getType())->getBitWidth());
Craig Topperbb4069e2017-07-07 23:16:26 +00002557 Mask = Builder.CreateBitCast(Mask, MaskTy);
2558 Mask = Builder.CreateExtractElement(Mask, (uint64_t)0);
Craig Topper99163632016-12-30 23:06:28 +00002559 // Extract the lowest element from the passthru operand.
Craig Topperbb4069e2017-07-07 23:16:26 +00002560 Value *Passthru = Builder.CreateExtractElement(II->getArgOperand(2),
Craig Topper99163632016-12-30 23:06:28 +00002561 (uint64_t)0);
Craig Topperbb4069e2017-07-07 23:16:26 +00002562 V = Builder.CreateSelect(Mask, V, Passthru);
Craig Topper99163632016-12-30 23:06:28 +00002563 }
Craig Topper7f8540b2016-12-27 01:56:30 +00002564
2565 // Insert the result back into the original argument 0.
Craig Topperbb4069e2017-07-07 23:16:26 +00002566 V = Builder.CreateInsertElement(Arg0, V, (uint64_t)0);
Craig Topper7f8540b2016-12-27 01:56:30 +00002567
2568 return replaceInstUsesWith(*II, V);
Craig Topper7b788ada2016-12-26 06:33:19 +00002569 }
2570 }
2571 LLVM_FALLTHROUGH;
2572
2573 // X86 scalar intrinsics simplified with SimplifyDemandedVectorElts.
2574 case Intrinsic::x86_avx512_mask_max_ss_round:
2575 case Intrinsic::x86_avx512_mask_min_ss_round:
Craig Topper790d0fa2016-12-11 07:42:01 +00002576 case Intrinsic::x86_avx512_mask_max_sd_round:
Craig Topper268b3ab2016-12-14 06:06:58 +00002577 case Intrinsic::x86_avx512_mask_min_sd_round:
Craig Topperab5f3552016-12-15 03:49:45 +00002578 case Intrinsic::x86_avx512_mask_vfmadd_ss:
2579 case Intrinsic::x86_avx512_mask_vfmadd_sd:
2580 case Intrinsic::x86_avx512_maskz_vfmadd_ss:
2581 case Intrinsic::x86_avx512_maskz_vfmadd_sd:
2582 case Intrinsic::x86_avx512_mask3_vfmadd_ss:
2583 case Intrinsic::x86_avx512_mask3_vfmadd_sd:
2584 case Intrinsic::x86_avx512_mask3_vfmsub_ss:
2585 case Intrinsic::x86_avx512_mask3_vfmsub_sd:
2586 case Intrinsic::x86_avx512_mask3_vfnmsub_ss:
2587 case Intrinsic::x86_avx512_mask3_vfnmsub_sd:
Craig Topperdfd268d2016-12-14 05:43:05 +00002588 case Intrinsic::x86_fma_vfmadd_ss:
2589 case Intrinsic::x86_fma_vfmsub_ss:
2590 case Intrinsic::x86_fma_vfnmadd_ss:
2591 case Intrinsic::x86_fma_vfnmsub_ss:
2592 case Intrinsic::x86_fma_vfmadd_sd:
2593 case Intrinsic::x86_fma_vfmsub_sd:
2594 case Intrinsic::x86_fma_vfnmadd_sd:
2595 case Intrinsic::x86_fma_vfnmsub_sd:
Craig Toppera0372de2016-12-14 03:17:27 +00002596 case Intrinsic::x86_sse_cmp_ss:
2597 case Intrinsic::x86_sse_min_ss:
2598 case Intrinsic::x86_sse_max_ss:
2599 case Intrinsic::x86_sse2_cmp_sd:
2600 case Intrinsic::x86_sse2_min_sd:
2601 case Intrinsic::x86_sse2_max_sd:
Craig Toppereb6a20e2016-12-14 03:17:30 +00002602 case Intrinsic::x86_sse41_round_ss:
2603 case Intrinsic::x86_sse41_round_sd:
Craig Topperac75bca2016-12-13 07:45:45 +00002604 case Intrinsic::x86_xop_vfrcz_ss:
2605 case Intrinsic::x86_xop_vfrcz_sd: {
2606 unsigned VWidth = II->getType()->getVectorNumElements();
2607 APInt UndefElts(VWidth, 0);
2608 APInt AllOnesEltMask(APInt::getAllOnesValue(VWidth));
2609 if (Value *V = SimplifyDemandedVectorElts(II, AllOnesEltMask, UndefElts)) {
2610 if (V != II)
2611 return replaceInstUsesWith(*II, V);
2612 return II;
2613 }
2614 break;
2615 }
2616
Simon Pilgrima3a72b42015-08-10 20:21:15 +00002617 // Constant fold ashr( <A x Bi>, Ci ).
Simon Pilgrimbecd5e82015-08-13 07:39:03 +00002618 // Constant fold lshr( <A x Bi>, Ci ).
2619 // Constant fold shl( <A x Bi>, Ci ).
Simon Pilgrima3a72b42015-08-10 20:21:15 +00002620 case Intrinsic::x86_sse2_psrai_d:
2621 case Intrinsic::x86_sse2_psrai_w:
Simon Pilgrima3a72b42015-08-10 20:21:15 +00002622 case Intrinsic::x86_avx2_psrai_d:
2623 case Intrinsic::x86_avx2_psrai_w:
Craig Topper8b831cb2016-11-13 01:51:55 +00002624 case Intrinsic::x86_avx512_psrai_q_128:
2625 case Intrinsic::x86_avx512_psrai_q_256:
2626 case Intrinsic::x86_avx512_psrai_d_512:
2627 case Intrinsic::x86_avx512_psrai_q_512:
2628 case Intrinsic::x86_avx512_psrai_w_512:
Simon Pilgrim18617d12015-08-05 08:18:00 +00002629 case Intrinsic::x86_sse2_psrli_d:
2630 case Intrinsic::x86_sse2_psrli_q:
2631 case Intrinsic::x86_sse2_psrli_w:
Simon Pilgrim18617d12015-08-05 08:18:00 +00002632 case Intrinsic::x86_avx2_psrli_d:
2633 case Intrinsic::x86_avx2_psrli_q:
2634 case Intrinsic::x86_avx2_psrli_w:
Craig Topper8b831cb2016-11-13 01:51:55 +00002635 case Intrinsic::x86_avx512_psrli_d_512:
2636 case Intrinsic::x86_avx512_psrli_q_512:
2637 case Intrinsic::x86_avx512_psrli_w_512:
Michael J. Spencerdee4b2c2014-04-24 00:58:18 +00002638 case Intrinsic::x86_sse2_pslli_d:
2639 case Intrinsic::x86_sse2_pslli_q:
2640 case Intrinsic::x86_sse2_pslli_w:
Simon Pilgrim18617d12015-08-05 08:18:00 +00002641 case Intrinsic::x86_avx2_pslli_d:
2642 case Intrinsic::x86_avx2_pslli_q:
2643 case Intrinsic::x86_avx2_pslli_w:
Craig Topper8b831cb2016-11-13 01:51:55 +00002644 case Intrinsic::x86_avx512_pslli_d_512:
2645 case Intrinsic::x86_avx512_pslli_q_512:
2646 case Intrinsic::x86_avx512_pslli_w_512:
Craig Topperbb4069e2017-07-07 23:16:26 +00002647 if (Value *V = simplifyX86immShift(*II, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00002648 return replaceInstUsesWith(*II, V);
Simon Pilgrim18617d12015-08-05 08:18:00 +00002649 break;
2650
Simon Pilgrimbecd5e82015-08-13 07:39:03 +00002651 case Intrinsic::x86_sse2_psra_d:
2652 case Intrinsic::x86_sse2_psra_w:
2653 case Intrinsic::x86_avx2_psra_d:
2654 case Intrinsic::x86_avx2_psra_w:
Craig Topper8b831cb2016-11-13 01:51:55 +00002655 case Intrinsic::x86_avx512_psra_q_128:
2656 case Intrinsic::x86_avx512_psra_q_256:
2657 case Intrinsic::x86_avx512_psra_d_512:
2658 case Intrinsic::x86_avx512_psra_q_512:
2659 case Intrinsic::x86_avx512_psra_w_512:
Simon Pilgrimbecd5e82015-08-13 07:39:03 +00002660 case Intrinsic::x86_sse2_psrl_d:
2661 case Intrinsic::x86_sse2_psrl_q:
2662 case Intrinsic::x86_sse2_psrl_w:
2663 case Intrinsic::x86_avx2_psrl_d:
2664 case Intrinsic::x86_avx2_psrl_q:
2665 case Intrinsic::x86_avx2_psrl_w:
Craig Topper8b831cb2016-11-13 01:51:55 +00002666 case Intrinsic::x86_avx512_psrl_d_512:
2667 case Intrinsic::x86_avx512_psrl_q_512:
2668 case Intrinsic::x86_avx512_psrl_w_512:
Simon Pilgrimbecd5e82015-08-13 07:39:03 +00002669 case Intrinsic::x86_sse2_psll_d:
2670 case Intrinsic::x86_sse2_psll_q:
2671 case Intrinsic::x86_sse2_psll_w:
2672 case Intrinsic::x86_avx2_psll_d:
2673 case Intrinsic::x86_avx2_psll_q:
Craig Topper8b831cb2016-11-13 01:51:55 +00002674 case Intrinsic::x86_avx2_psll_w:
2675 case Intrinsic::x86_avx512_psll_d_512:
2676 case Intrinsic::x86_avx512_psll_q_512:
2677 case Intrinsic::x86_avx512_psll_w_512: {
Craig Topperbb4069e2017-07-07 23:16:26 +00002678 if (Value *V = simplifyX86immShift(*II, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00002679 return replaceInstUsesWith(*II, V);
Simon Pilgrimbecd5e82015-08-13 07:39:03 +00002680
2681 // SSE2/AVX2 uses only the first 64-bits of the 128-bit vector
2682 // operand to compute the shift amount.
Simon Pilgrim996725e2015-09-19 11:41:53 +00002683 Value *Arg1 = II->getArgOperand(1);
2684 assert(Arg1->getType()->getPrimitiveSizeInBits() == 128 &&
Simon Pilgrimbecd5e82015-08-13 07:39:03 +00002685 "Unexpected packed shift size");
Simon Pilgrim996725e2015-09-19 11:41:53 +00002686 unsigned VWidth = Arg1->getType()->getVectorNumElements();
Simon Pilgrimbecd5e82015-08-13 07:39:03 +00002687
Simon Pilgrim996725e2015-09-19 11:41:53 +00002688 if (Value *V = SimplifyDemandedVectorEltsLow(Arg1, VWidth, VWidth / 2)) {
Simon Pilgrimbecd5e82015-08-13 07:39:03 +00002689 II->setArgOperand(1, V);
2690 return II;
2691 }
2692 break;
2693 }
2694
Simon Pilgrimdb9893f2016-06-07 10:27:15 +00002695 case Intrinsic::x86_avx2_psllv_d:
2696 case Intrinsic::x86_avx2_psllv_d_256:
2697 case Intrinsic::x86_avx2_psllv_q:
2698 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topperb4173a52016-11-13 07:26:19 +00002699 case Intrinsic::x86_avx512_psllv_d_512:
2700 case Intrinsic::x86_avx512_psllv_q_512:
Craig Topper1de753f2016-11-18 06:04:33 +00002701 case Intrinsic::x86_avx512_psllv_w_128:
2702 case Intrinsic::x86_avx512_psllv_w_256:
2703 case Intrinsic::x86_avx512_psllv_w_512:
Simon Pilgrimdb9893f2016-06-07 10:27:15 +00002704 case Intrinsic::x86_avx2_psrav_d:
2705 case Intrinsic::x86_avx2_psrav_d_256:
Craig Topperb4173a52016-11-13 07:26:19 +00002706 case Intrinsic::x86_avx512_psrav_q_128:
2707 case Intrinsic::x86_avx512_psrav_q_256:
2708 case Intrinsic::x86_avx512_psrav_d_512:
2709 case Intrinsic::x86_avx512_psrav_q_512:
Craig Topper1de753f2016-11-18 06:04:33 +00002710 case Intrinsic::x86_avx512_psrav_w_128:
2711 case Intrinsic::x86_avx512_psrav_w_256:
2712 case Intrinsic::x86_avx512_psrav_w_512:
Simon Pilgrimdb9893f2016-06-07 10:27:15 +00002713 case Intrinsic::x86_avx2_psrlv_d:
2714 case Intrinsic::x86_avx2_psrlv_d_256:
2715 case Intrinsic::x86_avx2_psrlv_q:
2716 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topperb4173a52016-11-13 07:26:19 +00002717 case Intrinsic::x86_avx512_psrlv_d_512:
2718 case Intrinsic::x86_avx512_psrlv_q_512:
Craig Topper1de753f2016-11-18 06:04:33 +00002719 case Intrinsic::x86_avx512_psrlv_w_128:
2720 case Intrinsic::x86_avx512_psrlv_w_256:
2721 case Intrinsic::x86_avx512_psrlv_w_512:
Craig Topperbb4069e2017-07-07 23:16:26 +00002722 if (Value *V = simplifyX86varShift(*II, Builder))
Simon Pilgrimdb9893f2016-06-07 10:27:15 +00002723 return replaceInstUsesWith(*II, V);
2724 break;
2725
Simon Pilgrimc9cf7fc2016-12-26 23:28:17 +00002726 case Intrinsic::x86_sse2_pmulu_dq:
2727 case Intrinsic::x86_sse41_pmuldq:
2728 case Intrinsic::x86_avx2_pmul_dq:
Craig Topper72f2d4e2016-12-27 05:30:09 +00002729 case Intrinsic::x86_avx2_pmulu_dq:
2730 case Intrinsic::x86_avx512_pmul_dq_512:
2731 case Intrinsic::x86_avx512_pmulu_dq_512: {
Craig Topperbb4069e2017-07-07 23:16:26 +00002732 if (Value *V = simplifyX86muldq(*II, Builder))
Simon Pilgrima50a93f2017-01-20 18:20:30 +00002733 return replaceInstUsesWith(*II, V);
2734
Simon Pilgrimc9cf7fc2016-12-26 23:28:17 +00002735 unsigned VWidth = II->getType()->getVectorNumElements();
2736 APInt UndefElts(VWidth, 0);
2737 APInt DemandedElts = APInt::getAllOnesValue(VWidth);
2738 if (Value *V = SimplifyDemandedVectorElts(II, DemandedElts, UndefElts)) {
2739 if (V != II)
2740 return replaceInstUsesWith(*II, V);
2741 return II;
2742 }
2743 break;
2744 }
2745
Simon Pilgrim6f6b2792017-01-25 14:37:24 +00002746 case Intrinsic::x86_sse2_packssdw_128:
2747 case Intrinsic::x86_sse2_packsswb_128:
2748 case Intrinsic::x86_avx2_packssdw:
2749 case Intrinsic::x86_avx2_packsswb:
Craig Topper3731f4d2017-02-16 07:35:23 +00002750 case Intrinsic::x86_avx512_packssdw_512:
2751 case Intrinsic::x86_avx512_packsswb_512:
Craig Topper4853c432017-07-06 23:18:42 +00002752 if (Value *V = simplifyX86pack(*II, true))
Simon Pilgrim6f6b2792017-01-25 14:37:24 +00002753 return replaceInstUsesWith(*II, V);
2754 break;
2755
2756 case Intrinsic::x86_sse2_packuswb_128:
2757 case Intrinsic::x86_sse41_packusdw:
2758 case Intrinsic::x86_avx2_packusdw:
2759 case Intrinsic::x86_avx2_packuswb:
Craig Topper3731f4d2017-02-16 07:35:23 +00002760 case Intrinsic::x86_avx512_packusdw_512:
2761 case Intrinsic::x86_avx512_packuswb_512:
Craig Topper4853c432017-07-06 23:18:42 +00002762 if (Value *V = simplifyX86pack(*II, false))
Simon Pilgrim6f6b2792017-01-25 14:37:24 +00002763 return replaceInstUsesWith(*II, V);
2764 break;
2765
Craig Topperb6122122017-01-26 05:17:13 +00002766 case Intrinsic::x86_pclmulqdq: {
2767 if (auto *C = dyn_cast<ConstantInt>(II->getArgOperand(2))) {
2768 unsigned Imm = C->getZExtValue();
2769
2770 bool MadeChange = false;
2771 Value *Arg0 = II->getArgOperand(0);
2772 Value *Arg1 = II->getArgOperand(1);
2773 unsigned VWidth = Arg0->getType()->getVectorNumElements();
2774 APInt DemandedElts(VWidth, 0);
2775
2776 APInt UndefElts1(VWidth, 0);
2777 DemandedElts = (Imm & 0x01) ? 2 : 1;
2778 if (Value *V = SimplifyDemandedVectorElts(Arg0, DemandedElts,
2779 UndefElts1)) {
2780 II->setArgOperand(0, V);
2781 MadeChange = true;
2782 }
2783
2784 APInt UndefElts2(VWidth, 0);
2785 DemandedElts = (Imm & 0x10) ? 2 : 1;
2786 if (Value *V = SimplifyDemandedVectorElts(Arg1, DemandedElts,
2787 UndefElts2)) {
2788 II->setArgOperand(1, V);
2789 MadeChange = true;
2790 }
2791
2792 // If both input elements are undef, the result is undef.
2793 if (UndefElts1[(Imm & 0x01) ? 1 : 0] ||
2794 UndefElts2[(Imm & 0x10) ? 1 : 0])
2795 return replaceInstUsesWith(*II,
2796 ConstantAggregateZero::get(II->getType()));
2797
2798 if (MadeChange)
2799 return II;
2800 }
2801 break;
2802 }
2803
Sanjay Patelc86867c2015-04-16 17:52:13 +00002804 case Intrinsic::x86_sse41_insertps:
Craig Topperbb4069e2017-07-07 23:16:26 +00002805 if (Value *V = simplifyX86insertps(*II, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00002806 return replaceInstUsesWith(*II, V);
Sanjay Patelc86867c2015-04-16 17:52:13 +00002807 break;
Simon Pilgrim54fcd622015-07-25 20:41:00 +00002808
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002809 case Intrinsic::x86_sse4a_extrq: {
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002810 Value *Op0 = II->getArgOperand(0);
2811 Value *Op1 = II->getArgOperand(1);
2812 unsigned VWidth0 = Op0->getType()->getVectorNumElements();
2813 unsigned VWidth1 = Op1->getType()->getVectorNumElements();
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002814 assert(Op0->getType()->getPrimitiveSizeInBits() == 128 &&
2815 Op1->getType()->getPrimitiveSizeInBits() == 128 && VWidth0 == 2 &&
2816 VWidth1 == 16 && "Unexpected operand sizes");
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002817
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002818 // See if we're dealing with constant values.
2819 Constant *C1 = dyn_cast<Constant>(Op1);
2820 ConstantInt *CILength =
Andrea Di Biagio8df5b9c2016-09-07 12:03:03 +00002821 C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)0))
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002822 : nullptr;
2823 ConstantInt *CIIndex =
Andrea Di Biagio8df5b9c2016-09-07 12:03:03 +00002824 C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)1))
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002825 : nullptr;
2826
2827 // Attempt to simplify to a constant, shuffle vector or EXTRQI call.
Craig Topperbb4069e2017-07-07 23:16:26 +00002828 if (Value *V = simplifyX86extrq(*II, Op0, CILength, CIIndex, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00002829 return replaceInstUsesWith(*II, V);
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002830
2831 // EXTRQ only uses the lowest 64-bits of the first 128-bit vector
2832 // operands and the lowest 16-bits of the second.
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002833 bool MadeChange = false;
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002834 if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth0, 1)) {
2835 II->setArgOperand(0, V);
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002836 MadeChange = true;
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002837 }
2838 if (Value *V = SimplifyDemandedVectorEltsLow(Op1, VWidth1, 2)) {
2839 II->setArgOperand(1, V);
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002840 MadeChange = true;
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002841 }
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002842 if (MadeChange)
2843 return II;
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002844 break;
2845 }
2846
2847 case Intrinsic::x86_sse4a_extrqi: {
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002848 // EXTRQI: Extract Length bits starting from Index. Zero pad the remaining
2849 // bits of the lower 64-bits. The upper 64-bits are undefined.
2850 Value *Op0 = II->getArgOperand(0);
2851 unsigned VWidth = Op0->getType()->getVectorNumElements();
2852 assert(Op0->getType()->getPrimitiveSizeInBits() == 128 && VWidth == 2 &&
2853 "Unexpected operand size");
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002854
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002855 // See if we're dealing with constant values.
2856 ConstantInt *CILength = dyn_cast<ConstantInt>(II->getArgOperand(1));
2857 ConstantInt *CIIndex = dyn_cast<ConstantInt>(II->getArgOperand(2));
2858
2859 // Attempt to simplify to a constant or shuffle vector.
Craig Topperbb4069e2017-07-07 23:16:26 +00002860 if (Value *V = simplifyX86extrq(*II, Op0, CILength, CIIndex, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00002861 return replaceInstUsesWith(*II, V);
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002862
2863 // EXTRQI only uses the lowest 64-bits of the first 128-bit vector
2864 // operand.
2865 if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth, 1)) {
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002866 II->setArgOperand(0, V);
2867 return II;
2868 }
2869 break;
2870 }
2871
2872 case Intrinsic::x86_sse4a_insertq: {
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002873 Value *Op0 = II->getArgOperand(0);
2874 Value *Op1 = II->getArgOperand(1);
2875 unsigned VWidth = Op0->getType()->getVectorNumElements();
2876 assert(Op0->getType()->getPrimitiveSizeInBits() == 128 &&
2877 Op1->getType()->getPrimitiveSizeInBits() == 128 && VWidth == 2 &&
2878 Op1->getType()->getVectorNumElements() == 2 &&
2879 "Unexpected operand size");
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002880
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002881 // See if we're dealing with constant values.
2882 Constant *C1 = dyn_cast<Constant>(Op1);
2883 ConstantInt *CI11 =
Andrea Di Biagiof3fd3162016-09-07 12:47:53 +00002884 C1 ? dyn_cast_or_null<ConstantInt>(C1->getAggregateElement((unsigned)1))
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002885 : nullptr;
2886
2887 // Attempt to simplify to a constant, shuffle vector or INSERTQI call.
2888 if (CI11) {
Benjamin Kramer46e38f32016-06-08 10:01:20 +00002889 const APInt &V11 = CI11->getValue();
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002890 APInt Len = V11.zextOrTrunc(6);
2891 APInt Idx = V11.lshr(8).zextOrTrunc(6);
Craig Topperbb4069e2017-07-07 23:16:26 +00002892 if (Value *V = simplifyX86insertq(*II, Op0, Op1, Len, Idx, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00002893 return replaceInstUsesWith(*II, V);
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002894 }
2895
2896 // INSERTQ only uses the lowest 64-bits of the first 128-bit vector
2897 // operand.
2898 if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth, 1)) {
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002899 II->setArgOperand(0, V);
2900 return II;
2901 }
2902 break;
2903 }
2904
Filipe Cabecinhas1a805952014-04-24 00:38:14 +00002905 case Intrinsic::x86_sse4a_insertqi: {
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002906 // INSERTQI: Extract lowest Length bits from lower half of second source and
2907 // insert over first source starting at Index bit. The upper 64-bits are
2908 // undefined.
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002909 Value *Op0 = II->getArgOperand(0);
2910 Value *Op1 = II->getArgOperand(1);
2911 unsigned VWidth0 = Op0->getType()->getVectorNumElements();
2912 unsigned VWidth1 = Op1->getType()->getVectorNumElements();
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002913 assert(Op0->getType()->getPrimitiveSizeInBits() == 128 &&
2914 Op1->getType()->getPrimitiveSizeInBits() == 128 && VWidth0 == 2 &&
2915 VWidth1 == 2 && "Unexpected operand sizes");
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002916
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002917 // See if we're dealing with constant values.
2918 ConstantInt *CILength = dyn_cast<ConstantInt>(II->getArgOperand(2));
2919 ConstantInt *CIIndex = dyn_cast<ConstantInt>(II->getArgOperand(3));
2920
2921 // Attempt to simplify to a constant or shuffle vector.
2922 if (CILength && CIIndex) {
2923 APInt Len = CILength->getValue().zextOrTrunc(6);
2924 APInt Idx = CIIndex->getValue().zextOrTrunc(6);
Craig Topperbb4069e2017-07-07 23:16:26 +00002925 if (Value *V = simplifyX86insertq(*II, Op0, Op1, Len, Idx, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00002926 return replaceInstUsesWith(*II, V);
Simon Pilgrim216b1bf2015-10-17 11:40:05 +00002927 }
2928
2929 // INSERTQI only uses the lowest 64-bits of the first two 128-bit vector
2930 // operands.
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002931 bool MadeChange = false;
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002932 if (Value *V = SimplifyDemandedVectorEltsLow(Op0, VWidth0, 1)) {
2933 II->setArgOperand(0, V);
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002934 MadeChange = true;
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002935 }
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002936 if (Value *V = SimplifyDemandedVectorEltsLow(Op1, VWidth1, 1)) {
2937 II->setArgOperand(1, V);
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002938 MadeChange = true;
Simon Pilgrim61116dd2015-09-17 20:32:45 +00002939 }
Simon Pilgrim1c9a9f22016-04-24 17:57:27 +00002940 if (MadeChange)
2941 return II;
Filipe Cabecinhas1a805952014-04-24 00:38:14 +00002942 break;
2943 }
2944
Filipe Cabecinhas82ac07c2014-05-27 03:42:20 +00002945 case Intrinsic::x86_sse41_pblendvb:
2946 case Intrinsic::x86_sse41_blendvps:
2947 case Intrinsic::x86_sse41_blendvpd:
2948 case Intrinsic::x86_avx_blendv_ps_256:
2949 case Intrinsic::x86_avx_blendv_pd_256:
2950 case Intrinsic::x86_avx2_pblendvb: {
2951 // Convert blendv* to vector selects if the mask is constant.
2952 // This optimization is convoluted because the intrinsic is defined as
2953 // getting a vector of floats or doubles for the ps and pd versions.
2954 // FIXME: That should be changed.
Simon Pilgrim8c049d52015-08-12 08:08:56 +00002955
2956 Value *Op0 = II->getArgOperand(0);
2957 Value *Op1 = II->getArgOperand(1);
Filipe Cabecinhas82ac07c2014-05-27 03:42:20 +00002958 Value *Mask = II->getArgOperand(2);
Simon Pilgrim8c049d52015-08-12 08:08:56 +00002959
2960 // fold (blend A, A, Mask) -> A
2961 if (Op0 == Op1)
Sanjay Patel4b198802016-02-01 22:23:39 +00002962 return replaceInstUsesWith(CI, Op0);
Simon Pilgrim8c049d52015-08-12 08:08:56 +00002963
2964 // Zero Mask - select 1st argument.
Simon Pilgrim93f59f52015-08-12 08:23:36 +00002965 if (isa<ConstantAggregateZero>(Mask))
Sanjay Patel4b198802016-02-01 22:23:39 +00002966 return replaceInstUsesWith(CI, Op0);
Simon Pilgrim8c049d52015-08-12 08:08:56 +00002967
2968 // Constant Mask - select 1st/2nd argument lane based on top bit of mask.
Sanjay Patel368ac5d2016-02-21 17:29:33 +00002969 if (auto *ConstantMask = dyn_cast<ConstantDataVector>(Mask)) {
2970 Constant *NewSelector = getNegativeIsTrueBoolVec(ConstantMask);
Simon Pilgrim8c049d52015-08-12 08:08:56 +00002971 return SelectInst::Create(NewSelector, Op1, Op0, "blendv");
Filipe Cabecinhas82ac07c2014-05-27 03:42:20 +00002972 }
Simon Pilgrim8c049d52015-08-12 08:08:56 +00002973 break;
Filipe Cabecinhas82ac07c2014-05-27 03:42:20 +00002974 }
2975
Andrea Di Biagio0594e2a2015-09-30 16:44:39 +00002976 case Intrinsic::x86_ssse3_pshuf_b_128:
Simon Pilgrimc0c56e72016-04-24 17:00:34 +00002977 case Intrinsic::x86_avx2_pshuf_b:
Simon Pilgrima22c3a12017-01-18 13:44:04 +00002978 case Intrinsic::x86_avx512_pshuf_b_512:
Craig Topperbb4069e2017-07-07 23:16:26 +00002979 if (Value *V = simplifyX86pshufb(*II, Builder))
Simon Pilgrimc0c56e72016-04-24 17:00:34 +00002980 return replaceInstUsesWith(*II, V);
2981 break;
Andrea Di Biagio0594e2a2015-09-30 16:44:39 +00002982
Rafael Espindolabad3f772014-04-21 22:06:04 +00002983 case Intrinsic::x86_avx_vpermilvar_ps:
2984 case Intrinsic::x86_avx_vpermilvar_ps_256:
Craig Topper58917f32016-12-11 01:59:36 +00002985 case Intrinsic::x86_avx512_vpermilvar_ps_512:
Rafael Espindolabad3f772014-04-21 22:06:04 +00002986 case Intrinsic::x86_avx_vpermilvar_pd:
Simon Pilgrim2f6097d2016-04-24 17:23:46 +00002987 case Intrinsic::x86_avx_vpermilvar_pd_256:
Simon Pilgrima22c3a12017-01-18 13:44:04 +00002988 case Intrinsic::x86_avx512_vpermilvar_pd_512:
Craig Topperbb4069e2017-07-07 23:16:26 +00002989 if (Value *V = simplifyX86vpermilvar(*II, Builder))
Simon Pilgrim2f6097d2016-04-24 17:23:46 +00002990 return replaceInstUsesWith(*II, V);
2991 break;
Rafael Espindolabad3f772014-04-21 22:06:04 +00002992
Simon Pilgrim8cddf8b2016-05-01 16:41:22 +00002993 case Intrinsic::x86_avx2_permd:
2994 case Intrinsic::x86_avx2_permps:
Craig Topperbb4069e2017-07-07 23:16:26 +00002995 if (Value *V = simplifyX86vpermv(*II, Builder))
Simon Pilgrim8cddf8b2016-05-01 16:41:22 +00002996 return replaceInstUsesWith(*II, V);
2997 break;
2998
Craig Toppere3280452016-12-25 23:58:57 +00002999 case Intrinsic::x86_avx512_mask_permvar_df_256:
3000 case Intrinsic::x86_avx512_mask_permvar_df_512:
3001 case Intrinsic::x86_avx512_mask_permvar_di_256:
3002 case Intrinsic::x86_avx512_mask_permvar_di_512:
3003 case Intrinsic::x86_avx512_mask_permvar_hi_128:
3004 case Intrinsic::x86_avx512_mask_permvar_hi_256:
3005 case Intrinsic::x86_avx512_mask_permvar_hi_512:
3006 case Intrinsic::x86_avx512_mask_permvar_qi_128:
3007 case Intrinsic::x86_avx512_mask_permvar_qi_256:
3008 case Intrinsic::x86_avx512_mask_permvar_qi_512:
3009 case Intrinsic::x86_avx512_mask_permvar_sf_256:
3010 case Intrinsic::x86_avx512_mask_permvar_sf_512:
3011 case Intrinsic::x86_avx512_mask_permvar_si_256:
3012 case Intrinsic::x86_avx512_mask_permvar_si_512:
Craig Topperbb4069e2017-07-07 23:16:26 +00003013 if (Value *V = simplifyX86vpermv(*II, Builder)) {
Craig Toppere3280452016-12-25 23:58:57 +00003014 // We simplified the permuting, now create a select for the masking.
3015 V = emitX86MaskSelect(II->getArgOperand(3), V, II->getArgOperand(2),
Craig Topperbb4069e2017-07-07 23:16:26 +00003016 Builder);
Craig Toppere3280452016-12-25 23:58:57 +00003017 return replaceInstUsesWith(*II, V);
3018 }
3019 break;
3020
Sanjay Patelccf5f242015-03-20 21:47:56 +00003021 case Intrinsic::x86_avx_vperm2f128_pd_256:
3022 case Intrinsic::x86_avx_vperm2f128_ps_256:
3023 case Intrinsic::x86_avx_vperm2f128_si_256:
Sanjay Patele304bea2015-03-24 22:39:29 +00003024 case Intrinsic::x86_avx2_vperm2i128:
Craig Topperbb4069e2017-07-07 23:16:26 +00003025 if (Value *V = simplifyX86vperm2(*II, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00003026 return replaceInstUsesWith(*II, V);
Sanjay Patelccf5f242015-03-20 21:47:56 +00003027 break;
3028
Sanjay Patel98a71502016-02-29 23:16:48 +00003029 case Intrinsic::x86_avx_maskload_ps:
Sanjay Patel6f2c01f2016-02-29 23:59:00 +00003030 case Intrinsic::x86_avx_maskload_pd:
3031 case Intrinsic::x86_avx_maskload_ps_256:
3032 case Intrinsic::x86_avx_maskload_pd_256:
3033 case Intrinsic::x86_avx2_maskload_d:
3034 case Intrinsic::x86_avx2_maskload_q:
3035 case Intrinsic::x86_avx2_maskload_d_256:
3036 case Intrinsic::x86_avx2_maskload_q_256:
Sanjay Patel98a71502016-02-29 23:16:48 +00003037 if (Instruction *I = simplifyX86MaskedLoad(*II, *this))
3038 return I;
3039 break;
3040
Sanjay Patelc4acbae2016-03-12 15:16:59 +00003041 case Intrinsic::x86_sse2_maskmov_dqu:
Sanjay Patel1ace9932016-02-26 21:04:14 +00003042 case Intrinsic::x86_avx_maskstore_ps:
3043 case Intrinsic::x86_avx_maskstore_pd:
3044 case Intrinsic::x86_avx_maskstore_ps_256:
3045 case Intrinsic::x86_avx_maskstore_pd_256:
Sanjay Patelfc7e7eb2016-02-26 21:51:44 +00003046 case Intrinsic::x86_avx2_maskstore_d:
3047 case Intrinsic::x86_avx2_maskstore_q:
3048 case Intrinsic::x86_avx2_maskstore_d_256:
3049 case Intrinsic::x86_avx2_maskstore_q_256:
Sanjay Patel1ace9932016-02-26 21:04:14 +00003050 if (simplifyX86MaskedStore(*II, *this))
3051 return nullptr;
3052 break;
3053
Simon Pilgrim1d1c56e22015-10-11 14:38:34 +00003054 case Intrinsic::x86_xop_vpcomb:
3055 case Intrinsic::x86_xop_vpcomd:
3056 case Intrinsic::x86_xop_vpcomq:
3057 case Intrinsic::x86_xop_vpcomw:
Craig Topperbb4069e2017-07-07 23:16:26 +00003058 if (Value *V = simplifyX86vpcom(*II, Builder, true))
Sanjay Patel4b198802016-02-01 22:23:39 +00003059 return replaceInstUsesWith(*II, V);
Simon Pilgrim1d1c56e22015-10-11 14:38:34 +00003060 break;
3061
3062 case Intrinsic::x86_xop_vpcomub:
3063 case Intrinsic::x86_xop_vpcomud:
3064 case Intrinsic::x86_xop_vpcomuq:
3065 case Intrinsic::x86_xop_vpcomuw:
Craig Topperbb4069e2017-07-07 23:16:26 +00003066 if (Value *V = simplifyX86vpcom(*II, Builder, false))
Sanjay Patel4b198802016-02-01 22:23:39 +00003067 return replaceInstUsesWith(*II, V);
Simon Pilgrim1d1c56e22015-10-11 14:38:34 +00003068 break;
3069
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003070 case Intrinsic::ppc_altivec_vperm:
3071 // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant.
Bill Schmidta1184632014-06-05 19:46:04 +00003072 // Note that ppc_altivec_vperm has a big-endian bias, so when creating
3073 // a vectorshuffle for little endian, we must undo the transformation
3074 // performed on vec_perm in altivec.h. That is, we must complement
3075 // the permutation mask with respect to 31 and reverse the order of
3076 // V1 and V2.
Chris Lattner0256be92012-01-27 03:08:05 +00003077 if (Constant *Mask = dyn_cast<Constant>(II->getArgOperand(2))) {
3078 assert(Mask->getType()->getVectorNumElements() == 16 &&
3079 "Bad type for intrinsic!");
Jim Grosbach7815f562012-02-03 00:07:04 +00003080
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003081 // Check that all of the elements are integer constants or undefs.
3082 bool AllEltsOk = true;
3083 for (unsigned i = 0; i != 16; ++i) {
Chris Lattner0256be92012-01-27 03:08:05 +00003084 Constant *Elt = Mask->getAggregateElement(i);
Craig Topperf40110f2014-04-25 05:29:35 +00003085 if (!Elt || !(isa<ConstantInt>(Elt) || isa<UndefValue>(Elt))) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003086 AllEltsOk = false;
3087 break;
3088 }
3089 }
Jim Grosbach7815f562012-02-03 00:07:04 +00003090
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003091 if (AllEltsOk) {
3092 // Cast the input vectors to byte vectors.
Craig Topperbb4069e2017-07-07 23:16:26 +00003093 Value *Op0 = Builder.CreateBitCast(II->getArgOperand(0),
3094 Mask->getType());
3095 Value *Op1 = Builder.CreateBitCast(II->getArgOperand(1),
3096 Mask->getType());
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003097 Value *Result = UndefValue::get(Op0->getType());
Jim Grosbach7815f562012-02-03 00:07:04 +00003098
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003099 // Only extract each element once.
3100 Value *ExtractedElts[32];
3101 memset(ExtractedElts, 0, sizeof(ExtractedElts));
Jim Grosbach7815f562012-02-03 00:07:04 +00003102
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003103 for (unsigned i = 0; i != 16; ++i) {
Chris Lattner0256be92012-01-27 03:08:05 +00003104 if (isa<UndefValue>(Mask->getAggregateElement(i)))
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003105 continue;
Jim Grosbach7815f562012-02-03 00:07:04 +00003106 unsigned Idx =
Chris Lattner0256be92012-01-27 03:08:05 +00003107 cast<ConstantInt>(Mask->getAggregateElement(i))->getZExtValue();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003108 Idx &= 31; // Match the hardware behavior.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003109 if (DL.isLittleEndian())
Bill Schmidta1184632014-06-05 19:46:04 +00003110 Idx = 31 - Idx;
Jim Grosbach7815f562012-02-03 00:07:04 +00003111
Craig Topperf40110f2014-04-25 05:29:35 +00003112 if (!ExtractedElts[Idx]) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003113 Value *Op0ToUse = (DL.isLittleEndian()) ? Op1 : Op0;
3114 Value *Op1ToUse = (DL.isLittleEndian()) ? Op0 : Op1;
Jim Grosbach7815f562012-02-03 00:07:04 +00003115 ExtractedElts[Idx] =
Craig Topperbb4069e2017-07-07 23:16:26 +00003116 Builder.CreateExtractElement(Idx < 16 ? Op0ToUse : Op1ToUse,
3117 Builder.getInt32(Idx&15));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003118 }
Jim Grosbach7815f562012-02-03 00:07:04 +00003119
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003120 // Insert this value into the result vector.
Craig Topperbb4069e2017-07-07 23:16:26 +00003121 Result = Builder.CreateInsertElement(Result, ExtractedElts[Idx],
3122 Builder.getInt32(i));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003123 }
3124 return CastInst::Create(Instruction::BitCast, Result, CI.getType());
3125 }
3126 }
3127 break;
3128
Bob Wilsona4e231c2010-10-22 21:41:48 +00003129 case Intrinsic::arm_neon_vld1:
3130 case Intrinsic::arm_neon_vld2:
3131 case Intrinsic::arm_neon_vld3:
3132 case Intrinsic::arm_neon_vld4:
3133 case Intrinsic::arm_neon_vld2lane:
3134 case Intrinsic::arm_neon_vld3lane:
3135 case Intrinsic::arm_neon_vld4lane:
3136 case Intrinsic::arm_neon_vst1:
3137 case Intrinsic::arm_neon_vst2:
3138 case Intrinsic::arm_neon_vst3:
3139 case Intrinsic::arm_neon_vst4:
3140 case Intrinsic::arm_neon_vst2lane:
3141 case Intrinsic::arm_neon_vst3lane:
3142 case Intrinsic::arm_neon_vst4lane: {
Justin Bogner99798402016-08-05 01:06:44 +00003143 unsigned MemAlign =
Daniel Jasperaec2fa32016-12-19 08:22:17 +00003144 getKnownAlignment(II->getArgOperand(0), DL, II, &AC, &DT);
Bob Wilsona4e231c2010-10-22 21:41:48 +00003145 unsigned AlignArg = II->getNumArgOperands() - 1;
3146 ConstantInt *IntrAlign = dyn_cast<ConstantInt>(II->getArgOperand(AlignArg));
3147 if (IntrAlign && IntrAlign->getZExtValue() < MemAlign) {
3148 II->setArgOperand(AlignArg,
3149 ConstantInt::get(Type::getInt32Ty(II->getContext()),
3150 MemAlign, false));
3151 return II;
3152 }
3153 break;
3154 }
3155
Lang Hames3a90fab2012-05-01 00:20:38 +00003156 case Intrinsic::arm_neon_vmulls:
Tim Northover00ed9962014-03-29 10:18:08 +00003157 case Intrinsic::arm_neon_vmullu:
Tim Northover3b0846e2014-05-24 12:50:23 +00003158 case Intrinsic::aarch64_neon_smull:
3159 case Intrinsic::aarch64_neon_umull: {
Lang Hames3a90fab2012-05-01 00:20:38 +00003160 Value *Arg0 = II->getArgOperand(0);
3161 Value *Arg1 = II->getArgOperand(1);
3162
3163 // Handle mul by zero first:
3164 if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) {
Sanjay Patel4b198802016-02-01 22:23:39 +00003165 return replaceInstUsesWith(CI, ConstantAggregateZero::get(II->getType()));
Lang Hames3a90fab2012-05-01 00:20:38 +00003166 }
3167
3168 // Check for constant LHS & RHS - in this case we just simplify.
Tim Northover00ed9962014-03-29 10:18:08 +00003169 bool Zext = (II->getIntrinsicID() == Intrinsic::arm_neon_vmullu ||
Tim Northover3b0846e2014-05-24 12:50:23 +00003170 II->getIntrinsicID() == Intrinsic::aarch64_neon_umull);
Lang Hames3a90fab2012-05-01 00:20:38 +00003171 VectorType *NewVT = cast<VectorType>(II->getType());
Benjamin Kramer92040952014-02-13 18:23:24 +00003172 if (Constant *CV0 = dyn_cast<Constant>(Arg0)) {
3173 if (Constant *CV1 = dyn_cast<Constant>(Arg1)) {
3174 CV0 = ConstantExpr::getIntegerCast(CV0, NewVT, /*isSigned=*/!Zext);
3175 CV1 = ConstantExpr::getIntegerCast(CV1, NewVT, /*isSigned=*/!Zext);
3176
Sanjay Patel4b198802016-02-01 22:23:39 +00003177 return replaceInstUsesWith(CI, ConstantExpr::getMul(CV0, CV1));
Lang Hames3a90fab2012-05-01 00:20:38 +00003178 }
3179
Alp Tokercb402912014-01-24 17:20:08 +00003180 // Couldn't simplify - canonicalize constant to the RHS.
Lang Hames3a90fab2012-05-01 00:20:38 +00003181 std::swap(Arg0, Arg1);
3182 }
3183
3184 // Handle mul by one:
Benjamin Kramer92040952014-02-13 18:23:24 +00003185 if (Constant *CV1 = dyn_cast<Constant>(Arg1))
Lang Hames3a90fab2012-05-01 00:20:38 +00003186 if (ConstantInt *Splat =
Benjamin Kramer92040952014-02-13 18:23:24 +00003187 dyn_cast_or_null<ConstantInt>(CV1->getSplatValue()))
3188 if (Splat->isOne())
3189 return CastInst::CreateIntegerCast(Arg0, II->getType(),
3190 /*isSigned=*/!Zext);
Lang Hames3a90fab2012-05-01 00:20:38 +00003191
3192 break;
3193 }
Matt Arsenaultbef34e22016-01-22 21:30:34 +00003194 case Intrinsic::amdgcn_rcp: {
Matt Arsenault4c7795d2017-03-24 19:04:57 +00003195 Value *Src = II->getArgOperand(0);
3196
3197 // TODO: Move to ConstantFolding/InstSimplify?
3198 if (isa<UndefValue>(Src))
3199 return replaceInstUsesWith(CI, Src);
3200
3201 if (const ConstantFP *C = dyn_cast<ConstantFP>(Src)) {
Matt Arsenaulta0050b02014-06-19 01:19:19 +00003202 const APFloat &ArgVal = C->getValueAPF();
3203 APFloat Val(ArgVal.getSemantics(), 1.0);
3204 APFloat::opStatus Status = Val.divide(ArgVal,
3205 APFloat::rmNearestTiesToEven);
3206 // Only do this if it was exact and therefore not dependent on the
3207 // rounding mode.
3208 if (Status == APFloat::opOK)
Sanjay Patel4b198802016-02-01 22:23:39 +00003209 return replaceInstUsesWith(CI, ConstantFP::get(II->getContext(), Val));
Matt Arsenaulta0050b02014-06-19 01:19:19 +00003210 }
3211
3212 break;
3213 }
Matt Arsenault4c7795d2017-03-24 19:04:57 +00003214 case Intrinsic::amdgcn_rsq: {
3215 Value *Src = II->getArgOperand(0);
3216
3217 // TODO: Move to ConstantFolding/InstSimplify?
3218 if (isa<UndefValue>(Src))
3219 return replaceInstUsesWith(CI, Src);
3220 break;
3221 }
Matt Arsenault2fe4fbc2016-03-30 22:28:52 +00003222 case Intrinsic::amdgcn_frexp_mant:
3223 case Intrinsic::amdgcn_frexp_exp: {
Matt Arsenault5cd4f8f2016-03-30 22:28:26 +00003224 Value *Src = II->getArgOperand(0);
3225 if (const ConstantFP *C = dyn_cast<ConstantFP>(Src)) {
3226 int Exp;
3227 APFloat Significand = frexp(C->getValueAPF(), Exp,
3228 APFloat::rmNearestTiesToEven);
3229
Matt Arsenault2fe4fbc2016-03-30 22:28:52 +00003230 if (II->getIntrinsicID() == Intrinsic::amdgcn_frexp_mant) {
3231 return replaceInstUsesWith(CI, ConstantFP::get(II->getContext(),
3232 Significand));
3233 }
3234
3235 // Match instruction special case behavior.
3236 if (Exp == APFloat::IEK_NaN || Exp == APFloat::IEK_Inf)
3237 Exp = 0;
3238
3239 return replaceInstUsesWith(CI, ConstantInt::get(II->getType(), Exp));
3240 }
3241
3242 if (isa<UndefValue>(Src))
3243 return replaceInstUsesWith(CI, UndefValue::get(II->getType()));
Matt Arsenault5cd4f8f2016-03-30 22:28:26 +00003244
3245 break;
3246 }
Matt Arsenault46a03822016-09-03 07:06:58 +00003247 case Intrinsic::amdgcn_class: {
3248 enum {
3249 S_NAN = 1 << 0, // Signaling NaN
3250 Q_NAN = 1 << 1, // Quiet NaN
3251 N_INFINITY = 1 << 2, // Negative infinity
3252 N_NORMAL = 1 << 3, // Negative normal
3253 N_SUBNORMAL = 1 << 4, // Negative subnormal
3254 N_ZERO = 1 << 5, // Negative zero
3255 P_ZERO = 1 << 6, // Positive zero
3256 P_SUBNORMAL = 1 << 7, // Positive subnormal
3257 P_NORMAL = 1 << 8, // Positive normal
3258 P_INFINITY = 1 << 9 // Positive infinity
3259 };
3260
3261 const uint32_t FullMask = S_NAN | Q_NAN | N_INFINITY | N_NORMAL |
3262 N_SUBNORMAL | N_ZERO | P_ZERO | P_SUBNORMAL | P_NORMAL | P_INFINITY;
3263
3264 Value *Src0 = II->getArgOperand(0);
3265 Value *Src1 = II->getArgOperand(1);
3266 const ConstantInt *CMask = dyn_cast<ConstantInt>(Src1);
3267 if (!CMask) {
3268 if (isa<UndefValue>(Src0))
3269 return replaceInstUsesWith(*II, UndefValue::get(II->getType()));
3270
3271 if (isa<UndefValue>(Src1))
3272 return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), false));
3273 break;
3274 }
3275
3276 uint32_t Mask = CMask->getZExtValue();
3277
3278 // If all tests are made, it doesn't matter what the value is.
3279 if ((Mask & FullMask) == FullMask)
3280 return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), true));
3281
3282 if ((Mask & FullMask) == 0)
3283 return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), false));
3284
3285 if (Mask == (S_NAN | Q_NAN)) {
3286 // Equivalent of isnan. Replace with standard fcmp.
Craig Topperbb4069e2017-07-07 23:16:26 +00003287 Value *FCmp = Builder.CreateFCmpUNO(Src0, Src0);
Matt Arsenault46a03822016-09-03 07:06:58 +00003288 FCmp->takeName(II);
3289 return replaceInstUsesWith(*II, FCmp);
3290 }
3291
3292 const ConstantFP *CVal = dyn_cast<ConstantFP>(Src0);
3293 if (!CVal) {
3294 if (isa<UndefValue>(Src0))
3295 return replaceInstUsesWith(*II, UndefValue::get(II->getType()));
3296
3297 // Clamp mask to used bits
3298 if ((Mask & FullMask) != Mask) {
Craig Topperbb4069e2017-07-07 23:16:26 +00003299 CallInst *NewCall = Builder.CreateCall(II->getCalledFunction(),
Matt Arsenault46a03822016-09-03 07:06:58 +00003300 { Src0, ConstantInt::get(Src1->getType(), Mask & FullMask) }
3301 );
3302
3303 NewCall->takeName(II);
3304 return replaceInstUsesWith(*II, NewCall);
3305 }
3306
3307 break;
3308 }
3309
3310 const APFloat &Val = CVal->getValueAPF();
3311
3312 bool Result =
3313 ((Mask & S_NAN) && Val.isNaN() && Val.isSignaling()) ||
3314 ((Mask & Q_NAN) && Val.isNaN() && !Val.isSignaling()) ||
3315 ((Mask & N_INFINITY) && Val.isInfinity() && Val.isNegative()) ||
3316 ((Mask & N_NORMAL) && Val.isNormal() && Val.isNegative()) ||
3317 ((Mask & N_SUBNORMAL) && Val.isDenormal() && Val.isNegative()) ||
3318 ((Mask & N_ZERO) && Val.isZero() && Val.isNegative()) ||
3319 ((Mask & P_ZERO) && Val.isZero() && !Val.isNegative()) ||
3320 ((Mask & P_SUBNORMAL) && Val.isDenormal() && !Val.isNegative()) ||
3321 ((Mask & P_NORMAL) && Val.isNormal() && !Val.isNegative()) ||
3322 ((Mask & P_INFINITY) && Val.isInfinity() && !Val.isNegative());
3323
3324 return replaceInstUsesWith(*II, ConstantInt::get(II->getType(), Result));
3325 }
Matt Arsenault1f17c662017-02-22 00:27:34 +00003326 case Intrinsic::amdgcn_cvt_pkrtz: {
3327 Value *Src0 = II->getArgOperand(0);
3328 Value *Src1 = II->getArgOperand(1);
3329 if (const ConstantFP *C0 = dyn_cast<ConstantFP>(Src0)) {
3330 if (const ConstantFP *C1 = dyn_cast<ConstantFP>(Src1)) {
3331 const fltSemantics &HalfSem
3332 = II->getType()->getScalarType()->getFltSemantics();
3333 bool LosesInfo;
3334 APFloat Val0 = C0->getValueAPF();
3335 APFloat Val1 = C1->getValueAPF();
3336 Val0.convert(HalfSem, APFloat::rmTowardZero, &LosesInfo);
3337 Val1.convert(HalfSem, APFloat::rmTowardZero, &LosesInfo);
3338
3339 Constant *Folded = ConstantVector::get({
3340 ConstantFP::get(II->getContext(), Val0),
3341 ConstantFP::get(II->getContext(), Val1) });
3342 return replaceInstUsesWith(*II, Folded);
3343 }
3344 }
3345
3346 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1))
3347 return replaceInstUsesWith(*II, UndefValue::get(II->getType()));
3348
3349 break;
3350 }
Matt Arsenaultf5262252017-02-22 23:04:58 +00003351 case Intrinsic::amdgcn_ubfe:
3352 case Intrinsic::amdgcn_sbfe: {
3353 // Decompose simple cases into standard shifts.
3354 Value *Src = II->getArgOperand(0);
3355 if (isa<UndefValue>(Src))
3356 return replaceInstUsesWith(*II, Src);
3357
3358 unsigned Width;
3359 Type *Ty = II->getType();
3360 unsigned IntSize = Ty->getIntegerBitWidth();
3361
3362 ConstantInt *CWidth = dyn_cast<ConstantInt>(II->getArgOperand(2));
3363 if (CWidth) {
3364 Width = CWidth->getZExtValue();
3365 if ((Width & (IntSize - 1)) == 0)
3366 return replaceInstUsesWith(*II, ConstantInt::getNullValue(Ty));
3367
3368 if (Width >= IntSize) {
3369 // Hardware ignores high bits, so remove those.
3370 II->setArgOperand(2, ConstantInt::get(CWidth->getType(),
3371 Width & (IntSize - 1)));
3372 return II;
3373 }
3374 }
3375
3376 unsigned Offset;
3377 ConstantInt *COffset = dyn_cast<ConstantInt>(II->getArgOperand(1));
3378 if (COffset) {
3379 Offset = COffset->getZExtValue();
3380 if (Offset >= IntSize) {
3381 II->setArgOperand(1, ConstantInt::get(COffset->getType(),
3382 Offset & (IntSize - 1)));
3383 return II;
3384 }
3385 }
3386
3387 bool Signed = II->getIntrinsicID() == Intrinsic::amdgcn_sbfe;
3388
3389 // TODO: Also emit sub if only width is constant.
3390 if (!CWidth && COffset && Offset == 0) {
3391 Constant *KSize = ConstantInt::get(COffset->getType(), IntSize);
Craig Topperbb4069e2017-07-07 23:16:26 +00003392 Value *ShiftVal = Builder.CreateSub(KSize, II->getArgOperand(2));
3393 ShiftVal = Builder.CreateZExt(ShiftVal, II->getType());
Matt Arsenaultf5262252017-02-22 23:04:58 +00003394
Craig Topperbb4069e2017-07-07 23:16:26 +00003395 Value *Shl = Builder.CreateShl(Src, ShiftVal);
3396 Value *RightShift = Signed ? Builder.CreateAShr(Shl, ShiftVal)
3397 : Builder.CreateLShr(Shl, ShiftVal);
Matt Arsenaultf5262252017-02-22 23:04:58 +00003398 RightShift->takeName(II);
3399 return replaceInstUsesWith(*II, RightShift);
3400 }
3401
3402 if (!CWidth || !COffset)
3403 break;
3404
3405 // TODO: This allows folding to undef when the hardware has specific
3406 // behavior?
3407 if (Offset + Width < IntSize) {
Craig Topperbb4069e2017-07-07 23:16:26 +00003408 Value *Shl = Builder.CreateShl(Src, IntSize - Offset - Width);
3409 Value *RightShift = Signed ? Builder.CreateAShr(Shl, IntSize - Width)
3410 : Builder.CreateLShr(Shl, IntSize - Width);
Matt Arsenaultf5262252017-02-22 23:04:58 +00003411 RightShift->takeName(II);
3412 return replaceInstUsesWith(*II, RightShift);
3413 }
3414
Craig Topperbb4069e2017-07-07 23:16:26 +00003415 Value *RightShift = Signed ? Builder.CreateAShr(Src, Offset)
3416 : Builder.CreateLShr(Src, Offset);
Matt Arsenaultf5262252017-02-22 23:04:58 +00003417
3418 RightShift->takeName(II);
3419 return replaceInstUsesWith(*II, RightShift);
3420 }
Matt Arsenaultd4bca1e2017-02-23 00:44:03 +00003421 case Intrinsic::amdgcn_exp:
3422 case Intrinsic::amdgcn_exp_compr: {
3423 ConstantInt *En = dyn_cast<ConstantInt>(II->getArgOperand(1));
3424 if (!En) // Illegal.
3425 break;
3426
3427 unsigned EnBits = En->getZExtValue();
3428 if (EnBits == 0xf)
3429 break; // All inputs enabled.
3430
3431 bool IsCompr = II->getIntrinsicID() == Intrinsic::amdgcn_exp_compr;
3432 bool Changed = false;
3433 for (int I = 0; I < (IsCompr ? 2 : 4); ++I) {
3434 if ((!IsCompr && (EnBits & (1 << I)) == 0) ||
3435 (IsCompr && ((EnBits & (0x3 << (2 * I))) == 0))) {
3436 Value *Src = II->getArgOperand(I + 2);
3437 if (!isa<UndefValue>(Src)) {
3438 II->setArgOperand(I + 2, UndefValue::get(Src->getType()));
3439 Changed = true;
3440 }
3441 }
3442 }
3443
3444 if (Changed)
3445 return II;
3446
3447 break;
Matt Arsenaultcdb468c2017-02-27 23:08:49 +00003448
3449 }
3450 case Intrinsic::amdgcn_fmed3: {
3451 // Note this does not preserve proper sNaN behavior if IEEE-mode is enabled
3452 // for the shader.
3453
3454 Value *Src0 = II->getArgOperand(0);
3455 Value *Src1 = II->getArgOperand(1);
3456 Value *Src2 = II->getArgOperand(2);
3457
3458 bool Swap = false;
3459 // Canonicalize constants to RHS operands.
3460 //
3461 // fmed3(c0, x, c1) -> fmed3(x, c0, c1)
3462 if (isa<Constant>(Src0) && !isa<Constant>(Src1)) {
3463 std::swap(Src0, Src1);
3464 Swap = true;
3465 }
3466
3467 if (isa<Constant>(Src1) && !isa<Constant>(Src2)) {
3468 std::swap(Src1, Src2);
3469 Swap = true;
3470 }
3471
3472 if (isa<Constant>(Src0) && !isa<Constant>(Src1)) {
3473 std::swap(Src0, Src1);
3474 Swap = true;
3475 }
3476
3477 if (Swap) {
3478 II->setArgOperand(0, Src0);
3479 II->setArgOperand(1, Src1);
3480 II->setArgOperand(2, Src2);
3481 return II;
3482 }
3483
3484 if (match(Src2, m_NaN()) || isa<UndefValue>(Src2)) {
Craig Topperbb4069e2017-07-07 23:16:26 +00003485 CallInst *NewCall = Builder.CreateMinNum(Src0, Src1);
Matt Arsenaultcdb468c2017-02-27 23:08:49 +00003486 NewCall->copyFastMathFlags(II);
3487 NewCall->takeName(II);
3488 return replaceInstUsesWith(*II, NewCall);
3489 }
3490
3491 if (const ConstantFP *C0 = dyn_cast<ConstantFP>(Src0)) {
3492 if (const ConstantFP *C1 = dyn_cast<ConstantFP>(Src1)) {
3493 if (const ConstantFP *C2 = dyn_cast<ConstantFP>(Src2)) {
3494 APFloat Result = fmed3AMDGCN(C0->getValueAPF(), C1->getValueAPF(),
3495 C2->getValueAPF());
3496 return replaceInstUsesWith(*II,
Craig Topperbb4069e2017-07-07 23:16:26 +00003497 ConstantFP::get(Builder.getContext(), Result));
Matt Arsenaultcdb468c2017-02-27 23:08:49 +00003498 }
3499 }
3500 }
3501
3502 break;
Matt Arsenaultd4bca1e2017-02-23 00:44:03 +00003503 }
Matt Arsenaultd81f5572017-03-13 18:14:02 +00003504 case Intrinsic::amdgcn_icmp:
3505 case Intrinsic::amdgcn_fcmp: {
3506 const ConstantInt *CC = dyn_cast<ConstantInt>(II->getArgOperand(2));
3507 if (!CC)
3508 break;
3509
3510 // Guard against invalid arguments.
3511 int64_t CCVal = CC->getZExtValue();
3512 bool IsInteger = II->getIntrinsicID() == Intrinsic::amdgcn_icmp;
3513 if ((IsInteger && (CCVal < CmpInst::FIRST_ICMP_PREDICATE ||
3514 CCVal > CmpInst::LAST_ICMP_PREDICATE)) ||
3515 (!IsInteger && (CCVal < CmpInst::FIRST_FCMP_PREDICATE ||
3516 CCVal > CmpInst::LAST_FCMP_PREDICATE)))
3517 break;
3518
3519 Value *Src0 = II->getArgOperand(0);
3520 Value *Src1 = II->getArgOperand(1);
3521
3522 if (auto *CSrc0 = dyn_cast<Constant>(Src0)) {
3523 if (auto *CSrc1 = dyn_cast<Constant>(Src1)) {
3524 Constant *CCmp = ConstantExpr::getCompare(CCVal, CSrc0, CSrc1);
Nicolai Haehnle9c661852017-04-24 17:08:43 +00003525 if (CCmp->isNullValue()) {
3526 return replaceInstUsesWith(
3527 *II, ConstantExpr::getSExt(CCmp, II->getType()));
3528 }
3529
3530 // The result of V_ICMP/V_FCMP assembly instructions (which this
3531 // intrinsic exposes) is one bit per thread, masked with the EXEC
3532 // register (which contains the bitmask of live threads). So a
3533 // comparison that always returns true is the same as a read of the
3534 // EXEC register.
3535 Value *NewF = Intrinsic::getDeclaration(
3536 II->getModule(), Intrinsic::read_register, II->getType());
3537 Metadata *MDArgs[] = {MDString::get(II->getContext(), "exec")};
3538 MDNode *MD = MDNode::get(II->getContext(), MDArgs);
3539 Value *Args[] = {MetadataAsValue::get(II->getContext(), MD)};
Craig Topperbb4069e2017-07-07 23:16:26 +00003540 CallInst *NewCall = Builder.CreateCall(NewF, Args);
Nicolai Haehnle9c661852017-04-24 17:08:43 +00003541 NewCall->addAttribute(AttributeList::FunctionIndex,
3542 Attribute::Convergent);
3543 NewCall->takeName(II);
3544 return replaceInstUsesWith(*II, NewCall);
Matt Arsenaultd81f5572017-03-13 18:14:02 +00003545 }
3546
3547 // Canonicalize constants to RHS.
3548 CmpInst::Predicate SwapPred
3549 = CmpInst::getSwappedPredicate(static_cast<CmpInst::Predicate>(CCVal));
3550 II->setArgOperand(0, Src1);
3551 II->setArgOperand(1, Src0);
3552 II->setArgOperand(2, ConstantInt::get(CC->getType(),
3553 static_cast<int>(SwapPred)));
3554 return II;
3555 }
3556
3557 if (CCVal != CmpInst::ICMP_EQ && CCVal != CmpInst::ICMP_NE)
3558 break;
3559
3560 // Canonicalize compare eq with true value to compare != 0
3561 // llvm.amdgcn.icmp(zext (i1 x), 1, eq)
3562 // -> llvm.amdgcn.icmp(zext (i1 x), 0, ne)
3563 // llvm.amdgcn.icmp(sext (i1 x), -1, eq)
3564 // -> llvm.amdgcn.icmp(sext (i1 x), 0, ne)
3565 Value *ExtSrc;
3566 if (CCVal == CmpInst::ICMP_EQ &&
3567 ((match(Src1, m_One()) && match(Src0, m_ZExt(m_Value(ExtSrc)))) ||
3568 (match(Src1, m_AllOnes()) && match(Src0, m_SExt(m_Value(ExtSrc))))) &&
3569 ExtSrc->getType()->isIntegerTy(1)) {
3570 II->setArgOperand(1, ConstantInt::getNullValue(Src1->getType()));
3571 II->setArgOperand(2, ConstantInt::get(CC->getType(), CmpInst::ICMP_NE));
3572 return II;
3573 }
3574
3575 CmpInst::Predicate SrcPred;
3576 Value *SrcLHS;
3577 Value *SrcRHS;
3578
3579 // Fold compare eq/ne with 0 from a compare result as the predicate to the
3580 // intrinsic. The typical use is a wave vote function in the library, which
3581 // will be fed from a user code condition compared with 0. Fold in the
3582 // redundant compare.
3583
3584 // llvm.amdgcn.icmp([sz]ext ([if]cmp pred a, b), 0, ne)
3585 // -> llvm.amdgcn.[if]cmp(a, b, pred)
3586 //
3587 // llvm.amdgcn.icmp([sz]ext ([if]cmp pred a, b), 0, eq)
3588 // -> llvm.amdgcn.[if]cmp(a, b, inv pred)
3589 if (match(Src1, m_Zero()) &&
3590 match(Src0,
3591 m_ZExtOrSExt(m_Cmp(SrcPred, m_Value(SrcLHS), m_Value(SrcRHS))))) {
3592 if (CCVal == CmpInst::ICMP_EQ)
3593 SrcPred = CmpInst::getInversePredicate(SrcPred);
3594
3595 Intrinsic::ID NewIID = CmpInst::isFPPredicate(SrcPred) ?
3596 Intrinsic::amdgcn_fcmp : Intrinsic::amdgcn_icmp;
3597
3598 Value *NewF = Intrinsic::getDeclaration(II->getModule(), NewIID,
3599 SrcLHS->getType());
3600 Value *Args[] = { SrcLHS, SrcRHS,
3601 ConstantInt::get(CC->getType(), SrcPred) };
Craig Topperbb4069e2017-07-07 23:16:26 +00003602 CallInst *NewCall = Builder.CreateCall(NewF, Args);
Matt Arsenaultd81f5572017-03-13 18:14:02 +00003603 NewCall->takeName(II);
3604 return replaceInstUsesWith(*II, NewCall);
3605 }
3606
3607 break;
3608 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003609 case Intrinsic::stackrestore: {
3610 // If the save is right next to the restore, remove the restore. This can
3611 // happen when variable allocas are DCE'd.
Gabor Greif589a0b92010-06-24 12:58:35 +00003612 if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003613 if (SS->getIntrinsicID() == Intrinsic::stacksave) {
Duncan P. N. Exon Smith9f8aaf22015-10-13 16:59:33 +00003614 if (&*++SS->getIterator() == II)
Sanjay Patel4b198802016-02-01 22:23:39 +00003615 return eraseInstFromFunction(CI);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003616 }
3617 }
Jim Grosbach7815f562012-02-03 00:07:04 +00003618
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003619 // Scan down this block to see if there is another stack restore in the
3620 // same block without an intervening call/alloca.
Duncan P. N. Exon Smith9f8aaf22015-10-13 16:59:33 +00003621 BasicBlock::iterator BI(II);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003622 TerminatorInst *TI = II->getParent()->getTerminator();
3623 bool CannotRemove = false;
3624 for (++BI; &*BI != TI; ++BI) {
Nuno Lopes55fff832012-06-21 15:45:28 +00003625 if (isa<AllocaInst>(BI)) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003626 CannotRemove = true;
3627 break;
3628 }
3629 if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
3630 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) {
3631 // If there is a stackrestore below this one, remove this one.
3632 if (II->getIntrinsicID() == Intrinsic::stackrestore)
Sanjay Patel4b198802016-02-01 22:23:39 +00003633 return eraseInstFromFunction(CI);
Reid Kleckner892ae2e2016-02-27 00:53:54 +00003634
3635 // Bail if we cross over an intrinsic with side effects, such as
3636 // llvm.stacksave, llvm.read_register, or llvm.setjmp.
3637 if (II->mayHaveSideEffects()) {
3638 CannotRemove = true;
3639 break;
3640 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003641 } else {
3642 // If we found a non-intrinsic call, we can't remove the stack
3643 // restore.
3644 CannotRemove = true;
3645 break;
3646 }
3647 }
3648 }
Jim Grosbach7815f562012-02-03 00:07:04 +00003649
Bill Wendlingf891bf82011-07-31 06:30:59 +00003650 // If the stack restore is in a return, resume, or unwind block and if there
3651 // are no allocas or calls between the restore and the return, nuke the
3652 // restore.
Bill Wendlingd5d95b02012-02-06 21:16:41 +00003653 if (!CannotRemove && (isa<ReturnInst>(TI) || isa<ResumeInst>(TI)))
Sanjay Patel4b198802016-02-01 22:23:39 +00003654 return eraseInstFromFunction(CI);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003655 break;
3656 }
Vitaly Bukaf0500b62016-07-28 22:50:48 +00003657 case Intrinsic::lifetime_start:
Vitaly Buka0ab23cf2016-07-28 22:59:03 +00003658 // Asan needs to poison memory to detect invalid access which is possible
3659 // even for empty lifetime range.
3660 if (II->getFunction()->hasFnAttribute(Attribute::SanitizeAddress))
3661 break;
3662
Arnaud A. de Grandmaison333ef382016-05-10 09:24:49 +00003663 if (removeTriviallyEmptyRange(*II, Intrinsic::lifetime_start,
3664 Intrinsic::lifetime_end, *this))
3665 return nullptr;
Arnaud A. de Grandmaison849f3bf2015-10-01 14:54:31 +00003666 break;
Hal Finkelf5867a72014-07-25 21:45:17 +00003667 case Intrinsic::assume: {
David Majnemerfcc58112016-04-08 16:37:12 +00003668 Value *IIOperand = II->getArgOperand(0);
3669 // Remove an assume if it is immediately followed by an identical assume.
3670 if (match(II->getNextNode(),
3671 m_Intrinsic<Intrinsic::assume>(m_Specific(IIOperand))))
3672 return eraseInstFromFunction(CI);
3673
Hal Finkelf5867a72014-07-25 21:45:17 +00003674 // Canonicalize assume(a && b) -> assume(a); assume(b);
Hal Finkel74c2f352014-09-07 12:44:26 +00003675 // Note: New assumption intrinsics created here are registered by
3676 // the InstCombineIRInserter object.
David Majnemerfcc58112016-04-08 16:37:12 +00003677 Value *AssumeIntrinsic = II->getCalledValue(), *A, *B;
Hal Finkelf5867a72014-07-25 21:45:17 +00003678 if (match(IIOperand, m_And(m_Value(A), m_Value(B)))) {
Craig Topperbb4069e2017-07-07 23:16:26 +00003679 Builder.CreateCall(AssumeIntrinsic, A, II->getName());
3680 Builder.CreateCall(AssumeIntrinsic, B, II->getName());
Sanjay Patel4b198802016-02-01 22:23:39 +00003681 return eraseInstFromFunction(*II);
Hal Finkelf5867a72014-07-25 21:45:17 +00003682 }
3683 // assume(!(a || b)) -> assume(!a); assume(!b);
3684 if (match(IIOperand, m_Not(m_Or(m_Value(A), m_Value(B))))) {
Craig Topperbb4069e2017-07-07 23:16:26 +00003685 Builder.CreateCall(AssumeIntrinsic, Builder.CreateNot(A), II->getName());
3686 Builder.CreateCall(AssumeIntrinsic, Builder.CreateNot(B), II->getName());
Sanjay Patel4b198802016-02-01 22:23:39 +00003687 return eraseInstFromFunction(*II);
Hal Finkelf5867a72014-07-25 21:45:17 +00003688 }
Hal Finkel04a15612014-10-04 21:27:06 +00003689
Philip Reames66c6de62014-11-11 23:33:19 +00003690 // assume( (load addr) != null ) -> add 'nonnull' metadata to load
3691 // (if assume is valid at the load)
Sanjay Patelf0d1e7732017-01-03 22:25:31 +00003692 CmpInst::Predicate Pred;
3693 Instruction *LHS;
3694 if (match(IIOperand, m_ICmp(Pred, m_Instruction(LHS), m_Zero())) &&
3695 Pred == ICmpInst::ICMP_NE && LHS->getOpcode() == Instruction::Load &&
3696 LHS->getType()->isPointerTy() &&
3697 isValidAssumeForContext(II, LHS, &DT)) {
3698 MDNode *MD = MDNode::get(II->getContext(), None);
3699 LHS->setMetadata(LLVMContext::MD_nonnull, MD);
3700 return eraseInstFromFunction(*II);
3701
Chandler Carruth24969102015-02-10 08:07:32 +00003702 // TODO: apply nonnull return attributes to calls and invokes
Philip Reames66c6de62014-11-11 23:33:19 +00003703 // TODO: apply range metadata for range check patterns?
3704 }
Sanjay Patelf0d1e7732017-01-03 22:25:31 +00003705
Hal Finkel04a15612014-10-04 21:27:06 +00003706 // If there is a dominating assume with the same condition as this one,
3707 // then this one is redundant, and should be removed.
Craig Topperb45eabc2017-04-26 16:39:58 +00003708 KnownBits Known(1);
3709 computeKnownBits(IIOperand, Known, 0, II);
Craig Topperf0aeee02017-05-05 17:36:09 +00003710 if (Known.isAllOnes())
Sanjay Patel4b198802016-02-01 22:23:39 +00003711 return eraseInstFromFunction(*II);
Hal Finkel04a15612014-10-04 21:27:06 +00003712
Hal Finkel8a9a7832017-01-11 13:24:24 +00003713 // Update the cache of affected values for this assumption (we might be
3714 // here because we just simplified the condition).
3715 AC.updateAffectedValues(II);
Hal Finkelf5867a72014-07-25 21:45:17 +00003716 break;
3717 }
Philip Reames9db26ff2014-12-29 23:27:30 +00003718 case Intrinsic::experimental_gc_relocate: {
3719 // Translate facts known about a pointer before relocating into
3720 // facts about the relocate value, while being careful to
3721 // preserve relocation semantics.
Manuel Jacob83eefa62016-01-05 04:03:00 +00003722 Value *DerivedPtr = cast<GCRelocateInst>(II)->getDerivedPtr();
Philip Reames9db26ff2014-12-29 23:27:30 +00003723
3724 // Remove the relocation if unused, note that this check is required
3725 // to prevent the cases below from looping forever.
3726 if (II->use_empty())
Sanjay Patel4b198802016-02-01 22:23:39 +00003727 return eraseInstFromFunction(*II);
Philip Reames9db26ff2014-12-29 23:27:30 +00003728
3729 // Undef is undef, even after relocation.
3730 // TODO: provide a hook for this in GCStrategy. This is clearly legal for
3731 // most practical collectors, but there was discussion in the review thread
3732 // about whether it was legal for all possible collectors.
Philip Reamesea4d8e82016-02-09 21:09:22 +00003733 if (isa<UndefValue>(DerivedPtr))
3734 // Use undef of gc_relocate's type to replace it.
3735 return replaceInstUsesWith(*II, UndefValue::get(II->getType()));
Philip Reames9db26ff2014-12-29 23:27:30 +00003736
Philip Reamesea4d8e82016-02-09 21:09:22 +00003737 if (auto *PT = dyn_cast<PointerType>(II->getType())) {
3738 // The relocation of null will be null for most any collector.
3739 // TODO: provide a hook for this in GCStrategy. There might be some
3740 // weird collector this property does not hold for.
3741 if (isa<ConstantPointerNull>(DerivedPtr))
3742 // Use null-pointer of gc_relocate's type to replace it.
3743 return replaceInstUsesWith(*II, ConstantPointerNull::get(PT));
Simon Pilgrimc0c56e72016-04-24 17:00:34 +00003744
Philip Reamesea4d8e82016-02-09 21:09:22 +00003745 // isKnownNonNull -> nonnull attribute
Nuno Lopes404f1062017-09-09 18:23:11 +00003746 if (isKnownNonZero(DerivedPtr, DL, 0, &AC, II, &DT))
Reid Klecknerb5180542017-03-21 16:57:19 +00003747 II->addAttribute(AttributeList::ReturnIndex, Attribute::NonNull);
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +00003748 }
Philip Reames9db26ff2014-12-29 23:27:30 +00003749
3750 // TODO: bitcast(relocate(p)) -> relocate(bitcast(p))
3751 // Canonicalize on the type from the uses to the defs
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +00003752
Philip Reames9db26ff2014-12-29 23:27:30 +00003753 // TODO: relocate((gep p, C, C2, ...)) -> gep(relocate(p), C, C2, ...)
Philip Reamesea4d8e82016-02-09 21:09:22 +00003754 break;
Philip Reames9db26ff2014-12-29 23:27:30 +00003755 }
Artur Pilipenkoe812ca02017-01-25 14:12:12 +00003756
3757 case Intrinsic::experimental_guard: {
Sanjoy Dase0e57952017-02-01 16:34:55 +00003758 // Is this guard followed by another guard?
3759 Instruction *NextInst = II->getNextNode();
3760 Value *NextCond = nullptr;
3761 if (match(NextInst,
3762 m_Intrinsic<Intrinsic::experimental_guard>(m_Value(NextCond)))) {
3763 Value *CurrCond = II->getArgOperand(0);
Artur Pilipenkoe812ca02017-01-25 14:12:12 +00003764
Simon Pilgrim68168d12017-03-30 12:59:53 +00003765 // Remove a guard that it is immediately preceded by an identical guard.
Sanjoy Dase0e57952017-02-01 16:34:55 +00003766 if (CurrCond == NextCond)
3767 return eraseInstFromFunction(*NextInst);
3768
3769 // Otherwise canonicalize guard(a); guard(b) -> guard(a & b).
Craig Topperbb4069e2017-07-07 23:16:26 +00003770 II->setArgOperand(0, Builder.CreateAnd(CurrCond, NextCond));
Sanjoy Dase0e57952017-02-01 16:34:55 +00003771 return eraseInstFromFunction(*NextInst);
3772 }
Artur Pilipenkoe812ca02017-01-25 14:12:12 +00003773 break;
3774 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003775 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003776 return visitCallSite(II);
3777}
3778
Davide Italianoaec46172017-01-31 18:09:05 +00003779// Fence instruction simplification
3780Instruction *InstCombiner::visitFenceInst(FenceInst &FI) {
3781 // Remove identical consecutive fences.
3782 if (auto *NFI = dyn_cast<FenceInst>(FI.getNextNode()))
3783 if (FI.isIdenticalTo(NFI))
3784 return eraseInstFromFunction(FI);
3785 return nullptr;
3786}
3787
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003788// InvokeInst simplification
3789//
3790Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
3791 return visitCallSite(&II);
3792}
3793
Sanjay Patelcd4377c2016-01-20 22:24:38 +00003794/// If this cast does not affect the value passed through the varargs area, we
3795/// can eliminate the use of the cast.
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003796static bool isSafeToEliminateVarargsCast(const CallSite CS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003797 const DataLayout &DL,
3798 const CastInst *const CI,
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003799 const int ix) {
3800 if (!CI->isLosslessCast())
3801 return false;
3802
Philip Reames1a1bdb22014-12-02 18:50:36 +00003803 // If this is a GC intrinsic, avoid munging types. We need types for
3804 // statepoint reconstruction in SelectionDAG.
3805 // TODO: This is probably something which should be expanded to all
3806 // intrinsics since the entire point of intrinsics is that
3807 // they are understandable by the optimizer.
3808 if (isStatepoint(CS) || isGCRelocate(CS) || isGCResult(CS))
3809 return false;
3810
Reid Kleckner26af2ca2014-01-28 02:38:36 +00003811 // The size of ByVal or InAlloca arguments is derived from the type, so we
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003812 // can't change to a type with a different size. If the size were
3813 // passed explicitly we could avoid this check.
Reid Kleckner26af2ca2014-01-28 02:38:36 +00003814 if (!CS.isByValOrInAllocaArgument(ix))
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003815 return true;
3816
Jim Grosbach7815f562012-02-03 00:07:04 +00003817 Type* SrcTy =
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003818 cast<PointerType>(CI->getOperand(0)->getType())->getElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00003819 Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003820 if (!SrcTy->isSized() || !DstTy->isSized())
3821 return false;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003822 if (DL.getTypeAllocSize(SrcTy) != DL.getTypeAllocSize(DstTy))
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003823 return false;
3824 return true;
3825}
3826
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003827Instruction *InstCombiner::tryOptimizeCall(CallInst *CI) {
Craig Topperf40110f2014-04-25 05:29:35 +00003828 if (!CI->getCalledFunction()) return nullptr;
Eric Christophera7fb58f2010-03-06 10:50:38 +00003829
Chandler Carruthba4c5172015-01-21 11:23:40 +00003830 auto InstCombineRAUW = [this](Instruction *From, Value *With) {
Sanjay Patel4b198802016-02-01 22:23:39 +00003831 replaceInstUsesWith(*From, With);
Chandler Carruthba4c5172015-01-21 11:23:40 +00003832 };
Adam Nemetea06e6e2017-07-26 19:03:18 +00003833 LibCallSimplifier Simplifier(DL, &TLI, ORE, InstCombineRAUW);
Chandler Carruthba4c5172015-01-21 11:23:40 +00003834 if (Value *With = Simplifier.optimizeCall(CI)) {
Meador Ingee3f2b262012-11-30 04:05:06 +00003835 ++NumSimplified;
Sanjay Patel4b198802016-02-01 22:23:39 +00003836 return CI->use_empty() ? CI : replaceInstUsesWith(*CI, With);
Meador Ingee3f2b262012-11-30 04:05:06 +00003837 }
Meador Ingedf796f82012-10-13 16:45:24 +00003838
Craig Topperf40110f2014-04-25 05:29:35 +00003839 return nullptr;
Eric Christophera7fb58f2010-03-06 10:50:38 +00003840}
3841
Sanjay Patel6038d3e2016-01-29 23:27:03 +00003842static IntrinsicInst *findInitTrampolineFromAlloca(Value *TrampMem) {
Duncan Sandsa0984362011-09-06 13:37:06 +00003843 // Strip off at most one level of pointer casts, looking for an alloca. This
3844 // is good enough in practice and simpler than handling any number of casts.
3845 Value *Underlying = TrampMem->stripPointerCasts();
3846 if (Underlying != TrampMem &&
Chandler Carruthcdf47882014-03-09 03:16:01 +00003847 (!Underlying->hasOneUse() || Underlying->user_back() != TrampMem))
Craig Topperf40110f2014-04-25 05:29:35 +00003848 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003849 if (!isa<AllocaInst>(Underlying))
Craig Topperf40110f2014-04-25 05:29:35 +00003850 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003851
Craig Topperf40110f2014-04-25 05:29:35 +00003852 IntrinsicInst *InitTrampoline = nullptr;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003853 for (User *U : TrampMem->users()) {
3854 IntrinsicInst *II = dyn_cast<IntrinsicInst>(U);
Duncan Sandsa0984362011-09-06 13:37:06 +00003855 if (!II)
Craig Topperf40110f2014-04-25 05:29:35 +00003856 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003857 if (II->getIntrinsicID() == Intrinsic::init_trampoline) {
3858 if (InitTrampoline)
3859 // More than one init_trampoline writes to this value. Give up.
Craig Topperf40110f2014-04-25 05:29:35 +00003860 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003861 InitTrampoline = II;
3862 continue;
3863 }
3864 if (II->getIntrinsicID() == Intrinsic::adjust_trampoline)
3865 // Allow any number of calls to adjust.trampoline.
3866 continue;
Craig Topperf40110f2014-04-25 05:29:35 +00003867 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003868 }
3869
3870 // No call to init.trampoline found.
3871 if (!InitTrampoline)
Craig Topperf40110f2014-04-25 05:29:35 +00003872 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003873
3874 // Check that the alloca is being used in the expected way.
3875 if (InitTrampoline->getOperand(0) != TrampMem)
Craig Topperf40110f2014-04-25 05:29:35 +00003876 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003877
3878 return InitTrampoline;
3879}
3880
Sanjay Patel6038d3e2016-01-29 23:27:03 +00003881static IntrinsicInst *findInitTrampolineFromBB(IntrinsicInst *AdjustTramp,
Duncan Sandsa0984362011-09-06 13:37:06 +00003882 Value *TrampMem) {
3883 // Visit all the previous instructions in the basic block, and try to find a
3884 // init.trampoline which has a direct path to the adjust.trampoline.
Duncan P. N. Exon Smith9f8aaf22015-10-13 16:59:33 +00003885 for (BasicBlock::iterator I = AdjustTramp->getIterator(),
3886 E = AdjustTramp->getParent()->begin();
3887 I != E;) {
3888 Instruction *Inst = &*--I;
Duncan Sandsa0984362011-09-06 13:37:06 +00003889 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
3890 if (II->getIntrinsicID() == Intrinsic::init_trampoline &&
3891 II->getOperand(0) == TrampMem)
3892 return II;
3893 if (Inst->mayWriteToMemory())
Craig Topperf40110f2014-04-25 05:29:35 +00003894 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003895 }
Craig Topperf40110f2014-04-25 05:29:35 +00003896 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003897}
3898
3899// Given a call to llvm.adjust.trampoline, find and return the corresponding
3900// call to llvm.init.trampoline if the call to the trampoline can be optimized
3901// to a direct call to a function. Otherwise return NULL.
3902//
Sanjay Patel6038d3e2016-01-29 23:27:03 +00003903static IntrinsicInst *findInitTrampoline(Value *Callee) {
Duncan Sandsa0984362011-09-06 13:37:06 +00003904 Callee = Callee->stripPointerCasts();
3905 IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee);
3906 if (!AdjustTramp ||
3907 AdjustTramp->getIntrinsicID() != Intrinsic::adjust_trampoline)
Craig Topperf40110f2014-04-25 05:29:35 +00003908 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003909
3910 Value *TrampMem = AdjustTramp->getOperand(0);
3911
Sanjay Patel6038d3e2016-01-29 23:27:03 +00003912 if (IntrinsicInst *IT = findInitTrampolineFromAlloca(TrampMem))
Duncan Sandsa0984362011-09-06 13:37:06 +00003913 return IT;
Sanjay Patel6038d3e2016-01-29 23:27:03 +00003914 if (IntrinsicInst *IT = findInitTrampolineFromBB(AdjustTramp, TrampMem))
Duncan Sandsa0984362011-09-06 13:37:06 +00003915 return IT;
Craig Topperf40110f2014-04-25 05:29:35 +00003916 return nullptr;
Duncan Sandsa0984362011-09-06 13:37:06 +00003917}
3918
Sanjay Patelcd4377c2016-01-20 22:24:38 +00003919/// Improvements for call and invoke instructions.
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003920Instruction *InstCombiner::visitCallSite(CallSite CS) {
Justin Bogner99798402016-08-05 01:06:44 +00003921 if (isAllocLikeFn(CS.getInstruction(), &TLI))
Nuno Lopes95cc4f32012-07-09 18:38:20 +00003922 return visitAllocSite(*CS.getInstruction());
Nuno Lopesdc6085e2012-06-21 21:25:05 +00003923
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003924 bool Changed = false;
3925
Philip Reamesc25df112015-06-16 20:24:25 +00003926 // Mark any parameters that are known to be non-null with the nonnull
3927 // attribute. This is helpful for inlining calls to functions with null
3928 // checks on their arguments.
Reid Kleckner5fbdd172017-05-31 19:23:09 +00003929 SmallVector<unsigned, 4> ArgNos;
Philip Reamesc25df112015-06-16 20:24:25 +00003930 unsigned ArgNo = 0;
Akira Hatanaka237916b2015-12-02 06:58:49 +00003931
Philip Reamesc25df112015-06-16 20:24:25 +00003932 for (Value *V : CS.args()) {
Sanjay Patelf9f5d3c2016-01-29 23:14:58 +00003933 if (V->getType()->isPointerTy() &&
Reid Klecknerfb502d22017-04-14 20:19:02 +00003934 !CS.paramHasAttr(ArgNo, Attribute::NonNull) &&
Nuno Lopes404f1062017-09-09 18:23:11 +00003935 isKnownNonZero(V, DL, 0, &AC, CS.getInstruction(), &DT))
Reid Kleckner5fbdd172017-05-31 19:23:09 +00003936 ArgNos.push_back(ArgNo);
Philip Reamesc25df112015-06-16 20:24:25 +00003937 ArgNo++;
3938 }
Akira Hatanaka237916b2015-12-02 06:58:49 +00003939
Philip Reamesc25df112015-06-16 20:24:25 +00003940 assert(ArgNo == CS.arg_size() && "sanity check");
3941
Reid Kleckner5fbdd172017-05-31 19:23:09 +00003942 if (!ArgNos.empty()) {
Reid Klecknerb5180542017-03-21 16:57:19 +00003943 AttributeList AS = CS.getAttributes();
Akira Hatanaka237916b2015-12-02 06:58:49 +00003944 LLVMContext &Ctx = CS.getInstruction()->getContext();
Reid Kleckner5fbdd172017-05-31 19:23:09 +00003945 AS = AS.addParamAttribute(Ctx, ArgNos,
3946 Attribute::get(Ctx, Attribute::NonNull));
Akira Hatanaka237916b2015-12-02 06:58:49 +00003947 CS.setAttributes(AS);
3948 Changed = true;
3949 }
3950
Chris Lattner73989652010-12-20 08:25:06 +00003951 // If the callee is a pointer to a function, attempt to move any casts to the
3952 // arguments of the call/invoke.
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003953 Value *Callee = CS.getCalledValue();
Chris Lattner73989652010-12-20 08:25:06 +00003954 if (!isa<Function>(Callee) && transformConstExprCastCall(CS))
Craig Topperf40110f2014-04-25 05:29:35 +00003955 return nullptr;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003956
Justin Lebar9d943972016-03-14 20:18:54 +00003957 if (Function *CalleeF = dyn_cast<Function>(Callee)) {
3958 // Remove the convergent attr on calls when the callee is not convergent.
Matt Arsenault802ebcb2016-06-20 19:04:44 +00003959 if (CS.isConvergent() && !CalleeF->isConvergent() &&
3960 !CalleeF->isIntrinsic()) {
Justin Lebar9d943972016-03-14 20:18:54 +00003961 DEBUG(dbgs() << "Removing convergent attr from instr "
3962 << CS.getInstruction() << "\n");
3963 CS.setNotConvergent();
3964 return CS.getInstruction();
3965 }
3966
Chris Lattner846a52e2010-02-01 18:11:34 +00003967 // If the call and callee calling conventions don't match, this call must
3968 // be unreachable, as the call is undefined.
3969 if (CalleeF->getCallingConv() != CS.getCallingConv() &&
3970 // Only do this for calls to a function with a body. A prototype may
3971 // not actually end up matching the implementation's calling conv for a
3972 // variety of reasons (e.g. it may be written in assembly).
3973 !CalleeF->isDeclaration()) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003974 Instruction *OldCall = CS.getInstruction();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003975 new StoreInst(ConstantInt::getTrue(Callee->getContext()),
Jim Grosbach7815f562012-02-03 00:07:04 +00003976 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003977 OldCall);
Chad Rosiere28ae302012-12-13 00:18:46 +00003978 // If OldCall does not return void then replaceAllUsesWith undef.
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003979 // This allows ValueHandlers and custom metadata to adjust itself.
3980 if (!OldCall->getType()->isVoidTy())
Sanjay Patel4b198802016-02-01 22:23:39 +00003981 replaceInstUsesWith(*OldCall, UndefValue::get(OldCall->getType()));
Chris Lattner2cecedf2010-02-01 18:04:58 +00003982 if (isa<CallInst>(OldCall))
Sanjay Patel4b198802016-02-01 22:23:39 +00003983 return eraseInstFromFunction(*OldCall);
Jim Grosbach7815f562012-02-03 00:07:04 +00003984
Chris Lattner2cecedf2010-02-01 18:04:58 +00003985 // We cannot remove an invoke, because it would change the CFG, just
3986 // change the callee to a null pointer.
Gabor Greiffebf6ab2010-03-20 21:00:25 +00003987 cast<InvokeInst>(OldCall)->setCalledFunction(
Chris Lattner2cecedf2010-02-01 18:04:58 +00003988 Constant::getNullValue(CalleeF->getType()));
Craig Topperf40110f2014-04-25 05:29:35 +00003989 return nullptr;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003990 }
Justin Lebar9d943972016-03-14 20:18:54 +00003991 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003992
3993 if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) {
Gabor Greif589a0b92010-06-24 12:58:35 +00003994 // If CS does not return void then replaceAllUsesWith undef.
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003995 // This allows ValueHandlers and custom metadata to adjust itself.
3996 if (!CS.getInstruction()->getType()->isVoidTy())
Sanjay Patel4b198802016-02-01 22:23:39 +00003997 replaceInstUsesWith(*CS.getInstruction(),
Eli Friedmanb9ed18f2011-05-18 00:32:01 +00003998 UndefValue::get(CS.getInstruction()->getType()));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00003999
Nuno Lopes771e7bd2012-06-21 23:52:14 +00004000 if (isa<InvokeInst>(CS.getInstruction())) {
4001 // Can't remove an invoke because we cannot change the CFG.
Craig Topperf40110f2014-04-25 05:29:35 +00004002 return nullptr;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004003 }
Nuno Lopes771e7bd2012-06-21 23:52:14 +00004004
4005 // This instruction is not reachable, just remove it. We insert a store to
4006 // undef so that we know that this code is not reachable, despite the fact
4007 // that we can't modify the CFG here.
4008 new StoreInst(ConstantInt::getTrue(Callee->getContext()),
4009 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
4010 CS.getInstruction());
4011
Sanjay Patel4b198802016-02-01 22:23:39 +00004012 return eraseInstFromFunction(*CS.getInstruction());
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004013 }
4014
Sanjay Patel6038d3e2016-01-29 23:27:03 +00004015 if (IntrinsicInst *II = findInitTrampoline(Callee))
Duncan Sandsa0984362011-09-06 13:37:06 +00004016 return transformCallThroughTrampoline(CS, II);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004017
Chris Lattner229907c2011-07-18 04:54:35 +00004018 PointerType *PTy = cast<PointerType>(Callee->getType());
4019 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004020 if (FTy->isVarArg()) {
Eli Friedman7534b4682011-11-29 01:18:23 +00004021 int ix = FTy->getNumParams();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004022 // See if we can optimize any arguments passed through the varargs area of
4023 // the call.
Matt Arsenault5d2e85f2013-06-28 00:25:40 +00004024 for (CallSite::arg_iterator I = CS.arg_begin() + FTy->getNumParams(),
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004025 E = CS.arg_end(); I != E; ++I, ++ix) {
4026 CastInst *CI = dyn_cast<CastInst>(*I);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004027 if (CI && isSafeToEliminateVarargsCast(CS, DL, CI, ix)) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004028 *I = CI->getOperand(0);
4029 Changed = true;
4030 }
4031 }
4032 }
4033
4034 if (isa<InlineAsm>(Callee) && !CS.doesNotThrow()) {
4035 // Inline asm calls cannot throw - mark them 'nounwind'.
4036 CS.setDoesNotThrow();
4037 Changed = true;
4038 }
4039
Micah Villmowcdfe20b2012-10-08 16:38:25 +00004040 // Try to optimize the call if possible, we require DataLayout for most of
Eric Christophera7fb58f2010-03-06 10:50:38 +00004041 // this. None of these calls are seen as possibly dead so go ahead and
4042 // delete the instruction now.
4043 if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004044 Instruction *I = tryOptimizeCall(CI);
Eric Christopher1810d772010-03-06 10:59:25 +00004045 // If we changed something return the result, etc. Otherwise let
4046 // the fallthrough check.
Sanjay Patel4b198802016-02-01 22:23:39 +00004047 if (I) return eraseInstFromFunction(*I);
Eric Christophera7fb58f2010-03-06 10:50:38 +00004048 }
4049
Craig Topperf40110f2014-04-25 05:29:35 +00004050 return Changed ? CS.getInstruction() : nullptr;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004051}
4052
Sanjay Patelcd4377c2016-01-20 22:24:38 +00004053/// If the callee is a constexpr cast of a function, attempt to move the cast to
4054/// the arguments of the call/invoke.
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004055bool InstCombiner::transformConstExprCastCall(CallSite CS) {
Sanjay Patele3c335c2016-08-11 15:21:21 +00004056 auto *Callee = dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts());
Craig Topperf40110f2014-04-25 05:29:35 +00004057 if (!Callee)
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004058 return false;
Sanjay Patel38ae83d2016-08-11 15:23:56 +00004059
4060 // The prototype of a thunk is a lie. Don't directly call such a function.
David Majnemer4c0a6e92015-01-21 22:32:04 +00004061 if (Callee->hasFnAttribute("thunk"))
4062 return false;
Sanjay Patel38ae83d2016-08-11 15:23:56 +00004063
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004064 Instruction *Caller = CS.getInstruction();
Reid Klecknerb5180542017-03-21 16:57:19 +00004065 const AttributeList &CallerPAL = CS.getAttributes();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004066
4067 // Okay, this is a cast from a function to a different type. Unless doing so
4068 // would cause a type conversion of one of our arguments, change this call to
4069 // be a direct call with arguments casted to the appropriate types.
4070 //
Chris Lattner229907c2011-07-18 04:54:35 +00004071 FunctionType *FT = Callee->getFunctionType();
4072 Type *OldRetTy = Caller->getType();
4073 Type *NewRetTy = FT->getReturnType();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004074
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004075 // Check to see if we are changing the return type...
4076 if (OldRetTy != NewRetTy) {
Nick Lewyckya6a17d72014-01-18 22:47:12 +00004077
4078 if (NewRetTy->isStructTy())
4079 return false; // TODO: Handle multiple return values.
4080
David Majnemer9b6b8222015-01-06 08:41:31 +00004081 if (!CastInst::isBitOrNoopPointerCastable(NewRetTy, OldRetTy, DL)) {
Matt Arsenaulte6952f22013-09-17 21:10:14 +00004082 if (Callee->isDeclaration())
4083 return false; // Cannot transform this return value.
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004084
Matt Arsenaulte6952f22013-09-17 21:10:14 +00004085 if (!Caller->use_empty() &&
4086 // void -> non-void is handled specially
4087 !NewRetTy->isVoidTy())
Frederic Rissc1892e22014-10-23 04:08:42 +00004088 return false; // Cannot transform this return value.
Matt Arsenaulte6952f22013-09-17 21:10:14 +00004089 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004090
4091 if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
Reid Klecknerb5180542017-03-21 16:57:19 +00004092 AttrBuilder RAttrs(CallerPAL, AttributeList::ReturnIndex);
Pete Cooper2777d8872015-05-06 23:19:56 +00004093 if (RAttrs.overlaps(AttributeFuncs::typeIncompatible(NewRetTy)))
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004094 return false; // Attribute not compatible with transformed value.
4095 }
4096
4097 // If the callsite is an invoke instruction, and the return value is used by
4098 // a PHI node in a successor, we cannot change the return type of the call
4099 // because there is no place to put the cast instruction (without breaking
4100 // the critical edge). Bail out in this case.
4101 if (!Caller->use_empty())
4102 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
Chandler Carruthcdf47882014-03-09 03:16:01 +00004103 for (User *U : II->users())
4104 if (PHINode *PN = dyn_cast<PHINode>(U))
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004105 if (PN->getParent() == II->getNormalDest() ||
4106 PN->getParent() == II->getUnwindDest())
4107 return false;
4108 }
4109
Matt Arsenault5d2e85f2013-06-28 00:25:40 +00004110 unsigned NumActualArgs = CS.arg_size();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004111 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
4112
David Majnemer9b6b8222015-01-06 08:41:31 +00004113 // Prevent us turning:
4114 // declare void @takes_i32_inalloca(i32* inalloca)
4115 // call void bitcast (void (i32*)* @takes_i32_inalloca to void (i32)*)(i32 0)
4116 //
4117 // into:
4118 // call void @takes_i32_inalloca(i32* null)
David Majnemerd61a6fd2015-03-11 18:03:05 +00004119 //
4120 // Similarly, avoid folding away bitcasts of byval calls.
4121 if (Callee->getAttributes().hasAttrSomewhere(Attribute::InAlloca) ||
4122 Callee->getAttributes().hasAttrSomewhere(Attribute::ByVal))
David Majnemer9b6b8222015-01-06 08:41:31 +00004123 return false;
4124
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004125 CallSite::arg_iterator AI = CS.arg_begin();
4126 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
Chris Lattner229907c2011-07-18 04:54:35 +00004127 Type *ParamTy = FT->getParamType(i);
4128 Type *ActTy = (*AI)->getType();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004129
David Majnemer9b6b8222015-01-06 08:41:31 +00004130 if (!CastInst::isBitOrNoopPointerCastable(ActTy, ParamTy, DL))
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004131 return false; // Cannot transform this parameter value.
4132
Reid Klecknerf021fab2017-04-13 23:12:13 +00004133 if (AttrBuilder(CallerPAL.getParamAttributes(i))
4134 .overlaps(AttributeFuncs::typeIncompatible(ParamTy)))
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004135 return false; // Attribute not compatible with transformed value.
Jim Grosbach7815f562012-02-03 00:07:04 +00004136
Reid Kleckner26af2ca2014-01-28 02:38:36 +00004137 if (CS.isInAllocaArgument(i))
4138 return false; // Cannot transform to and from inalloca.
4139
Chris Lattner27ca8eb2010-12-20 08:36:38 +00004140 // If the parameter is passed as a byval argument, then we have to have a
4141 // sized type and the sized type has to have the same size as the old type.
Reid Klecknerf021fab2017-04-13 23:12:13 +00004142 if (ParamTy != ActTy && CallerPAL.hasParamAttribute(i, Attribute::ByVal)) {
Chris Lattner229907c2011-07-18 04:54:35 +00004143 PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004144 if (!ParamPTy || !ParamPTy->getElementType()->isSized())
Chris Lattner27ca8eb2010-12-20 08:36:38 +00004145 return false;
Jim Grosbach7815f562012-02-03 00:07:04 +00004146
Matt Arsenaultfa252722013-09-27 22:18:51 +00004147 Type *CurElTy = ActTy->getPointerElementType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004148 if (DL.getTypeAllocSize(CurElTy) !=
4149 DL.getTypeAllocSize(ParamPTy->getElementType()))
Chris Lattner27ca8eb2010-12-20 08:36:38 +00004150 return false;
4151 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004152 }
4153
Chris Lattneradf38b32011-02-24 05:10:56 +00004154 if (Callee->isDeclaration()) {
4155 // Do not delete arguments unless we have a function body.
4156 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg())
4157 return false;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004158
Chris Lattneradf38b32011-02-24 05:10:56 +00004159 // If the callee is just a declaration, don't change the varargsness of the
4160 // call. We don't want to introduce a varargs call where one doesn't
4161 // already exist.
Chris Lattner229907c2011-07-18 04:54:35 +00004162 PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType());
Chris Lattneradf38b32011-02-24 05:10:56 +00004163 if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg())
4164 return false;
Jim Grosbache84ae7b2012-02-03 00:00:55 +00004165
4166 // If both the callee and the cast type are varargs, we still have to make
4167 // sure the number of fixed parameters are the same or we have the same
4168 // ABI issues as if we introduce a varargs call.
Jim Grosbach1df8cdc2012-02-03 00:26:07 +00004169 if (FT->isVarArg() &&
4170 cast<FunctionType>(APTy->getElementType())->isVarArg() &&
4171 FT->getNumParams() !=
Jim Grosbache84ae7b2012-02-03 00:00:55 +00004172 cast<FunctionType>(APTy->getElementType())->getNumParams())
4173 return false;
Chris Lattneradf38b32011-02-24 05:10:56 +00004174 }
Jim Grosbach7815f562012-02-03 00:07:04 +00004175
Jim Grosbach0ab54182012-02-03 00:00:50 +00004176 if (FT->getNumParams() < NumActualArgs && FT->isVarArg() &&
Reid Kleckneraa0cec72017-04-19 23:17:47 +00004177 !CallerPAL.isEmpty()) {
Jim Grosbach0ab54182012-02-03 00:00:50 +00004178 // In this case we have more arguments than the new function type, but we
4179 // won't be dropping them. Check that these extra arguments have attributes
4180 // that are compatible with being a vararg call argument.
Reid Kleckneraa0cec72017-04-19 23:17:47 +00004181 unsigned SRetIdx;
4182 if (CallerPAL.hasAttrSomewhere(Attribute::StructRet, &SRetIdx) &&
4183 SRetIdx > FT->getNumParams())
4184 return false;
4185 }
Jim Grosbach7815f562012-02-03 00:07:04 +00004186
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004187 // Okay, we decided that this is a safe thing to do: go ahead and start
Chris Lattneradf38b32011-02-24 05:10:56 +00004188 // inserting cast instructions as necessary.
Reid Klecknerc3fae792017-04-13 18:11:03 +00004189 SmallVector<Value *, 8> Args;
4190 SmallVector<AttributeSet, 8> ArgAttrs;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004191 Args.reserve(NumActualArgs);
Reid Klecknerc3fae792017-04-13 18:11:03 +00004192 ArgAttrs.reserve(NumActualArgs);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004193
4194 // Get any return attributes.
Reid Klecknerb5180542017-03-21 16:57:19 +00004195 AttrBuilder RAttrs(CallerPAL, AttributeList::ReturnIndex);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004196
4197 // If the return value is not being used, the type may not be compatible
4198 // with the existing attributes. Wipe out any problematic attributes.
Pete Cooper2777d8872015-05-06 23:19:56 +00004199 RAttrs.remove(AttributeFuncs::typeIncompatible(NewRetTy));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004200
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004201 AI = CS.arg_begin();
4202 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
Chris Lattner229907c2011-07-18 04:54:35 +00004203 Type *ParamTy = FT->getParamType(i);
Matt Arsenaultcacbb232013-07-30 20:45:05 +00004204
Reid Klecknerc3fae792017-04-13 18:11:03 +00004205 Value *NewArg = *AI;
4206 if ((*AI)->getType() != ParamTy)
Craig Topperbb4069e2017-07-07 23:16:26 +00004207 NewArg = Builder.CreateBitOrPointerCast(*AI, ParamTy);
Reid Klecknerc3fae792017-04-13 18:11:03 +00004208 Args.push_back(NewArg);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004209
4210 // Add any parameter attributes.
Reid Klecknerf021fab2017-04-13 23:12:13 +00004211 ArgAttrs.push_back(CallerPAL.getParamAttributes(i));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004212 }
4213
4214 // If the function takes more arguments than the call was taking, add them
4215 // now.
Reid Klecknerc3fae792017-04-13 18:11:03 +00004216 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004217 Args.push_back(Constant::getNullValue(FT->getParamType(i)));
Reid Klecknerc3fae792017-04-13 18:11:03 +00004218 ArgAttrs.push_back(AttributeSet());
4219 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004220
4221 // If we are removing arguments to the function, emit an obnoxious warning.
4222 if (FT->getNumParams() < NumActualArgs) {
Nick Lewycky90053a12012-12-26 22:00:35 +00004223 // TODO: if (!FT->isVarArg()) this call may be unreachable. PR14722
4224 if (FT->isVarArg()) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004225 // Add all of the arguments in their promoted form to the arg list.
4226 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
Chris Lattner229907c2011-07-18 04:54:35 +00004227 Type *PTy = getPromotedType((*AI)->getType());
Reid Klecknerc3fae792017-04-13 18:11:03 +00004228 Value *NewArg = *AI;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004229 if (PTy != (*AI)->getType()) {
4230 // Must promote to pass through va_arg area!
4231 Instruction::CastOps opcode =
4232 CastInst::getCastOpcode(*AI, false, PTy, false);
Craig Topperbb4069e2017-07-07 23:16:26 +00004233 NewArg = Builder.CreateCast(opcode, *AI, PTy);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004234 }
Reid Klecknerc3fae792017-04-13 18:11:03 +00004235 Args.push_back(NewArg);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004236
4237 // Add any parameter attributes.
Reid Klecknerf021fab2017-04-13 23:12:13 +00004238 ArgAttrs.push_back(CallerPAL.getParamAttributes(i));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004239 }
4240 }
4241 }
4242
Reid Klecknerc2cb5602017-04-12 00:38:00 +00004243 AttributeSet FnAttrs = CallerPAL.getFnAttributes();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004244
4245 if (NewRetTy->isVoidTy())
4246 Caller->setName(""); // Void type should not have a name.
4247
Reid Klecknerc3fae792017-04-13 18:11:03 +00004248 assert((ArgAttrs.size() == FT->getNumParams() || FT->isVarArg()) &&
4249 "missing argument attributes");
4250 LLVMContext &Ctx = Callee->getContext();
4251 AttributeList NewCallerPAL = AttributeList::get(
4252 Ctx, FnAttrs, AttributeSet::get(Ctx, RAttrs), ArgAttrs);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004253
Sanjoy Das76293462015-11-25 00:42:19 +00004254 SmallVector<OperandBundleDef, 1> OpBundles;
Sanjoy Dasc521c7b2015-11-25 00:42:24 +00004255 CS.getOperandBundlesAsDefs(OpBundles);
Sanjoy Das76293462015-11-25 00:42:19 +00004256
Reid Kleckner257cb4e2017-04-13 20:26:38 +00004257 CallSite NewCS;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004258 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Craig Topperbb4069e2017-07-07 23:16:26 +00004259 NewCS = Builder.CreateInvoke(Callee, II->getNormalDest(),
4260 II->getUnwindDest(), Args, OpBundles);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004261 } else {
Craig Topperbb4069e2017-07-07 23:16:26 +00004262 NewCS = Builder.CreateCall(Callee, Args, OpBundles);
Reid Kleckner257cb4e2017-04-13 20:26:38 +00004263 cast<CallInst>(NewCS.getInstruction())
4264 ->setTailCallKind(cast<CallInst>(Caller)->getTailCallKind());
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004265 }
Reid Kleckner257cb4e2017-04-13 20:26:38 +00004266 NewCS->takeName(Caller);
4267 NewCS.setCallingConv(CS.getCallingConv());
4268 NewCS.setAttributes(NewCallerPAL);
4269
4270 // Preserve the weight metadata for the new call instruction. The metadata
4271 // is used by SamplePGO to check callsite's hotness.
4272 uint64_t W;
4273 if (Caller->extractProfTotalWeight(W))
4274 NewCS->setProfWeight(W);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004275
4276 // Insert a cast of the return type as necessary.
Reid Kleckner257cb4e2017-04-13 20:26:38 +00004277 Instruction *NC = NewCS.getInstruction();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004278 Value *NV = NC;
4279 if (OldRetTy != NV->getType() && !Caller->use_empty()) {
4280 if (!NV->getType()->isVoidTy()) {
David Majnemer9b6b8222015-01-06 08:41:31 +00004281 NV = NC = CastInst::CreateBitOrPointerCast(NC, OldRetTy);
Eli Friedman35211c62011-05-27 00:19:40 +00004282 NC->setDebugLoc(Caller->getDebugLoc());
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004283
4284 // If this is an invoke instruction, we should insert it after the first
4285 // non-phi, instruction in the normal successor block.
4286 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Bill Wendling07efd6f2011-08-25 01:08:34 +00004287 BasicBlock::iterator I = II->getNormalDest()->getFirstInsertionPt();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004288 InsertNewInstBefore(NC, *I);
4289 } else {
Chris Lattner73989652010-12-20 08:25:06 +00004290 // Otherwise, it's a call, just insert cast right after the call.
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004291 InsertNewInstBefore(NC, *Caller);
4292 }
4293 Worklist.AddUsersToWorkList(*Caller);
4294 } else {
4295 NV = UndefValue::get(Caller->getType());
4296 }
4297 }
4298
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004299 if (!Caller->use_empty())
Sanjay Patel4b198802016-02-01 22:23:39 +00004300 replaceInstUsesWith(*Caller, NV);
Frederic Rissc1892e22014-10-23 04:08:42 +00004301 else if (Caller->hasValueHandle()) {
4302 if (OldRetTy == NV->getType())
4303 ValueHandleBase::ValueIsRAUWd(Caller, NV);
4304 else
4305 // We cannot call ValueIsRAUWd with a different type, and the
4306 // actual tracked value will disappear.
4307 ValueHandleBase::ValueIsDeleted(Caller);
4308 }
Eli Friedmanb9ed18f2011-05-18 00:32:01 +00004309
Sanjay Patel4b198802016-02-01 22:23:39 +00004310 eraseInstFromFunction(*Caller);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004311 return true;
4312}
4313
Sanjay Patelcd4377c2016-01-20 22:24:38 +00004314/// Turn a call to a function created by init_trampoline / adjust_trampoline
4315/// intrinsic pair into a direct call to the underlying function.
Duncan Sandsa0984362011-09-06 13:37:06 +00004316Instruction *
4317InstCombiner::transformCallThroughTrampoline(CallSite CS,
4318 IntrinsicInst *Tramp) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004319 Value *Callee = CS.getCalledValue();
Chris Lattner229907c2011-07-18 04:54:35 +00004320 PointerType *PTy = cast<PointerType>(Callee->getType());
4321 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00004322 AttributeList Attrs = CS.getAttributes();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004323
4324 // If the call already has the 'nest' attribute somewhere then give up -
4325 // otherwise 'nest' would occur twice after splicing in the chain.
Bill Wendling6e95ae82012-12-31 00:49:59 +00004326 if (Attrs.hasAttrSomewhere(Attribute::Nest))
Craig Topperf40110f2014-04-25 05:29:35 +00004327 return nullptr;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004328
Duncan Sandsa0984362011-09-06 13:37:06 +00004329 assert(Tramp &&
4330 "transformCallThroughTrampoline called with incorrect CallSite.");
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004331
Gabor Greif3e44ea12010-07-22 10:37:47 +00004332 Function *NestF =cast<Function>(Tramp->getArgOperand(1)->stripPointerCasts());
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00004333 FunctionType *NestFTy = cast<FunctionType>(NestF->getValueType());
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004334
Reid Klecknereb9dd5b2017-04-10 23:31:05 +00004335 AttributeList NestAttrs = NestF->getAttributes();
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004336 if (!NestAttrs.isEmpty()) {
Reid Klecknerf021fab2017-04-13 23:12:13 +00004337 unsigned NestArgNo = 0;
Craig Topperf40110f2014-04-25 05:29:35 +00004338 Type *NestTy = nullptr;
Reid Klecknerc2cb5602017-04-12 00:38:00 +00004339 AttributeSet NestAttr;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004340
4341 // Look for a parameter marked with the 'nest' attribute.
4342 for (FunctionType::param_iterator I = NestFTy->param_begin(),
Reid Klecknerf021fab2017-04-13 23:12:13 +00004343 E = NestFTy->param_end();
4344 I != E; ++NestArgNo, ++I) {
4345 AttributeSet AS = NestAttrs.getParamAttributes(NestArgNo);
4346 if (AS.hasAttribute(Attribute::Nest)) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004347 // Record the parameter type and any other attributes.
4348 NestTy = *I;
Reid Klecknerf021fab2017-04-13 23:12:13 +00004349 NestAttr = AS;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004350 break;
4351 }
Reid Klecknerf021fab2017-04-13 23:12:13 +00004352 }
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004353
4354 if (NestTy) {
4355 Instruction *Caller = CS.getInstruction();
4356 std::vector<Value*> NewArgs;
Reid Kleckner7f720332017-04-13 00:58:09 +00004357 std::vector<AttributeSet> NewArgAttrs;
Matt Arsenault5d2e85f2013-06-28 00:25:40 +00004358 NewArgs.reserve(CS.arg_size() + 1);
Reid Kleckner7f720332017-04-13 00:58:09 +00004359 NewArgAttrs.reserve(CS.arg_size());
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004360
4361 // Insert the nest argument into the call argument list, which may
4362 // mean appending it. Likewise for attributes.
4363
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004364 {
Reid Klecknerf021fab2017-04-13 23:12:13 +00004365 unsigned ArgNo = 0;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004366 CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
4367 do {
Reid Klecknerf021fab2017-04-13 23:12:13 +00004368 if (ArgNo == NestArgNo) {
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004369 // Add the chain argument and attributes.
Gabor Greif589a0b92010-06-24 12:58:35 +00004370 Value *NestVal = Tramp->getArgOperand(2);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004371 if (NestVal->getType() != NestTy)
Craig Topperbb4069e2017-07-07 23:16:26 +00004372 NestVal = Builder.CreateBitCast(NestVal, NestTy, "nest");
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004373 NewArgs.push_back(NestVal);
Reid Kleckner7f720332017-04-13 00:58:09 +00004374 NewArgAttrs.push_back(NestAttr);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004375 }
4376
4377 if (I == E)
4378 break;
4379
4380 // Add the original argument and attributes.
4381 NewArgs.push_back(*I);
Reid Klecknerf021fab2017-04-13 23:12:13 +00004382 NewArgAttrs.push_back(Attrs.getParamAttributes(ArgNo));
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004383
Reid Klecknerf021fab2017-04-13 23:12:13 +00004384 ++ArgNo;
Richard Trieu7a083812016-02-18 22:09:30 +00004385 ++I;
Eugene Zelenkocdc71612016-08-11 17:20:18 +00004386 } while (true);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004387 }
4388
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004389 // The trampoline may have been bitcast to a bogus type (FTy).
4390 // Handle this by synthesizing a new function type, equal to FTy
4391 // with the chain parameter inserted.
4392
Jay Foadb804a2b2011-07-12 14:06:48 +00004393 std::vector<Type*> NewTypes;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004394 NewTypes.reserve(FTy->getNumParams()+1);
4395
4396 // Insert the chain's type into the list of parameter types, which may
4397 // mean appending it.
4398 {
Reid Klecknerf021fab2017-04-13 23:12:13 +00004399 unsigned ArgNo = 0;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004400 FunctionType::param_iterator I = FTy->param_begin(),
4401 E = FTy->param_end();
4402
4403 do {
Reid Klecknerf021fab2017-04-13 23:12:13 +00004404 if (ArgNo == NestArgNo)
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004405 // Add the chain's type.
4406 NewTypes.push_back(NestTy);
4407
4408 if (I == E)
4409 break;
4410
4411 // Add the original type.
4412 NewTypes.push_back(*I);
4413
Reid Klecknerf021fab2017-04-13 23:12:13 +00004414 ++ArgNo;
Richard Trieu7a083812016-02-18 22:09:30 +00004415 ++I;
Eugene Zelenkocdc71612016-08-11 17:20:18 +00004416 } while (true);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004417 }
4418
4419 // Replace the trampoline call with a direct call. Let the generic
4420 // code sort out any function type mismatches.
Jim Grosbach7815f562012-02-03 00:07:04 +00004421 FunctionType *NewFTy = FunctionType::get(FTy->getReturnType(), NewTypes,
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004422 FTy->isVarArg());
4423 Constant *NewCallee =
4424 NestF->getType() == PointerType::getUnqual(NewFTy) ?
Jim Grosbach7815f562012-02-03 00:07:04 +00004425 NestF : ConstantExpr::getBitCast(NestF,
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004426 PointerType::getUnqual(NewFTy));
Reid Kleckner7f720332017-04-13 00:58:09 +00004427 AttributeList NewPAL =
4428 AttributeList::get(FTy->getContext(), Attrs.getFnAttributes(),
4429 Attrs.getRetAttributes(), NewArgAttrs);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004430
David Majnemer231a68c2016-04-29 08:07:20 +00004431 SmallVector<OperandBundleDef, 1> OpBundles;
4432 CS.getOperandBundlesAsDefs(OpBundles);
4433
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004434 Instruction *NewCaller;
4435 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
4436 NewCaller = InvokeInst::Create(NewCallee,
4437 II->getNormalDest(), II->getUnwindDest(),
David Majnemer231a68c2016-04-29 08:07:20 +00004438 NewArgs, OpBundles);
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004439 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
4440 cast<InvokeInst>(NewCaller)->setAttributes(NewPAL);
4441 } else {
David Majnemer231a68c2016-04-29 08:07:20 +00004442 NewCaller = CallInst::Create(NewCallee, NewArgs, OpBundles);
David Majnemerd5648c72016-11-25 22:35:09 +00004443 cast<CallInst>(NewCaller)->setTailCallKind(
4444 cast<CallInst>(Caller)->getTailCallKind());
4445 cast<CallInst>(NewCaller)->setCallingConv(
4446 cast<CallInst>(Caller)->getCallingConv());
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004447 cast<CallInst>(NewCaller)->setAttributes(NewPAL);
4448 }
Eli Friedman49346012011-05-18 19:57:14 +00004449
4450 return NewCaller;
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004451 }
4452 }
4453
4454 // Replace the trampoline call with a direct call. Since there is no 'nest'
4455 // parameter, there is no need to adjust the argument list. Let the generic
4456 // code sort out any function type mismatches.
4457 Constant *NewCallee =
Jim Grosbach7815f562012-02-03 00:07:04 +00004458 NestF->getType() == PTy ? NestF :
Chris Lattner7a9e47a2010-01-05 07:32:13 +00004459 ConstantExpr::getBitCast(NestF, PTy);
4460 CS.setCalledFunction(NewCallee);
4461 return CS.getInstruction();
4462}