LLVM 19.0.0git
VectorCombine.cpp
Go to the documentation of this file.
1//===------- VectorCombine.cpp - Optimize partial vector operations -------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This pass optimizes scalar/vector interactions using target cost models. The
10// transforms implemented here may not fit in traditional loop-based or SLP
11// vectorization passes.
12//
13//===----------------------------------------------------------------------===//
14
16#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/STLExtras.h"
18#include "llvm/ADT/ScopeExit.h"
19#include "llvm/ADT/Statistic.h"
23#include "llvm/Analysis/Loads.h"
27#include "llvm/IR/Dominators.h"
28#include "llvm/IR/Function.h"
29#include "llvm/IR/IRBuilder.h"
34#include <numeric>
35#include <queue>
36
37#define DEBUG_TYPE "vector-combine"
39
40using namespace llvm;
41using namespace llvm::PatternMatch;
42
43STATISTIC(NumVecLoad, "Number of vector loads formed");
44STATISTIC(NumVecCmp, "Number of vector compares formed");
45STATISTIC(NumVecBO, "Number of vector binops formed");
46STATISTIC(NumVecCmpBO, "Number of vector compare + binop formed");
47STATISTIC(NumShufOfBitcast, "Number of shuffles moved after bitcast");
48STATISTIC(NumScalarBO, "Number of scalar binops formed");
49STATISTIC(NumScalarCmp, "Number of scalar compares formed");
50
52 "disable-vector-combine", cl::init(false), cl::Hidden,
53 cl::desc("Disable all vector combine transforms"));
54
56 "disable-binop-extract-shuffle", cl::init(false), cl::Hidden,
57 cl::desc("Disable binop extract to shuffle transforms"));
58
60 "vector-combine-max-scan-instrs", cl::init(30), cl::Hidden,
61 cl::desc("Max number of instructions to scan for vector combining."));
62
63static const unsigned InvalidIndex = std::numeric_limits<unsigned>::max();
64
65namespace {
66class VectorCombine {
67public:
68 VectorCombine(Function &F, const TargetTransformInfo &TTI,
69 const DominatorTree &DT, AAResults &AA, AssumptionCache &AC,
70 const DataLayout *DL, bool TryEarlyFoldsOnly)
71 : F(F), Builder(F.getContext()), TTI(TTI), DT(DT), AA(AA), AC(AC), DL(DL),
72 TryEarlyFoldsOnly(TryEarlyFoldsOnly) {}
73
74 bool run();
75
76private:
77 Function &F;
78 IRBuilder<> Builder;
80 const DominatorTree &DT;
81 AAResults &AA;
83 const DataLayout *DL;
84
85 /// If true, only perform beneficial early IR transforms. Do not introduce new
86 /// vector operations.
87 bool TryEarlyFoldsOnly;
88
89 InstructionWorklist Worklist;
90
91 // TODO: Direct calls from the top-level "run" loop use a plain "Instruction"
92 // parameter. That should be updated to specific sub-classes because the
93 // run loop was changed to dispatch on opcode.
94 bool vectorizeLoadInsert(Instruction &I);
95 bool widenSubvectorLoad(Instruction &I);
96 ExtractElementInst *getShuffleExtract(ExtractElementInst *Ext0,
98 unsigned PreferredExtractIndex) const;
99 bool isExtractExtractCheap(ExtractElementInst *Ext0, ExtractElementInst *Ext1,
100 const Instruction &I,
101 ExtractElementInst *&ConvertToShuffle,
102 unsigned PreferredExtractIndex);
103 void foldExtExtCmp(ExtractElementInst *Ext0, ExtractElementInst *Ext1,
104 Instruction &I);
105 void foldExtExtBinop(ExtractElementInst *Ext0, ExtractElementInst *Ext1,
106 Instruction &I);
107 bool foldExtractExtract(Instruction &I);
108 bool foldInsExtFNeg(Instruction &I);
109 bool foldBitcastShuffle(Instruction &I);
110 bool scalarizeBinopOrCmp(Instruction &I);
111 bool scalarizeVPIntrinsic(Instruction &I);
112 bool foldExtractedCmps(Instruction &I);
113 bool foldSingleElementStore(Instruction &I);
114 bool scalarizeLoadExtract(Instruction &I);
115 bool foldShuffleOfBinops(Instruction &I);
116 bool foldShuffleOfCastops(Instruction &I);
117 bool foldShuffleOfShuffles(Instruction &I);
118 bool foldShuffleToIdentity(Instruction &I);
119 bool foldShuffleFromReductions(Instruction &I);
120 bool foldTruncFromReductions(Instruction &I);
121 bool foldSelectShuffle(Instruction &I, bool FromReduction = false);
122
123 void replaceValue(Value &Old, Value &New) {
124 Old.replaceAllUsesWith(&New);
125 if (auto *NewI = dyn_cast<Instruction>(&New)) {
126 New.takeName(&Old);
127 Worklist.pushUsersToWorkList(*NewI);
128 Worklist.pushValue(NewI);
129 }
130 Worklist.pushValue(&Old);
131 }
132
134 for (Value *Op : I.operands())
135 Worklist.pushValue(Op);
136 Worklist.remove(&I);
137 I.eraseFromParent();
138 }
139};
140} // namespace
141
142/// Return the source operand of a potentially bitcasted value. If there is no
143/// bitcast, return the input value itself.
145 while (auto *BitCast = dyn_cast<BitCastInst>(V))
146 V = BitCast->getOperand(0);
147 return V;
148}
149
150static bool canWidenLoad(LoadInst *Load, const TargetTransformInfo &TTI) {
151 // Do not widen load if atomic/volatile or under asan/hwasan/memtag/tsan.
152 // The widened load may load data from dirty regions or create data races
153 // non-existent in the source.
154 if (!Load || !Load->isSimple() || !Load->hasOneUse() ||
155 Load->getFunction()->hasFnAttribute(Attribute::SanitizeMemTag) ||
157 return false;
158
159 // We are potentially transforming byte-sized (8-bit) memory accesses, so make
160 // sure we have all of our type-based constraints in place for this target.
161 Type *ScalarTy = Load->getType()->getScalarType();
162 uint64_t ScalarSize = ScalarTy->getPrimitiveSizeInBits();
163 unsigned MinVectorSize = TTI.getMinVectorRegisterBitWidth();
164 if (!ScalarSize || !MinVectorSize || MinVectorSize % ScalarSize != 0 ||
165 ScalarSize % 8 != 0)
166 return false;
167
168 return true;
169}
170
171bool VectorCombine::vectorizeLoadInsert(Instruction &I) {
172 // Match insert into fixed vector of scalar value.
173 // TODO: Handle non-zero insert index.
174 Value *Scalar;
175 if (!match(&I, m_InsertElt(m_Undef(), m_Value(Scalar), m_ZeroInt())) ||
176 !Scalar->hasOneUse())
177 return false;
178
179 // Optionally match an extract from another vector.
180 Value *X;
181 bool HasExtract = match(Scalar, m_ExtractElt(m_Value(X), m_ZeroInt()));
182 if (!HasExtract)
183 X = Scalar;
184
185 auto *Load = dyn_cast<LoadInst>(X);
186 if (!canWidenLoad(Load, TTI))
187 return false;
188
189 Type *ScalarTy = Scalar->getType();
190 uint64_t ScalarSize = ScalarTy->getPrimitiveSizeInBits();
191 unsigned MinVectorSize = TTI.getMinVectorRegisterBitWidth();
192
193 // Check safety of replacing the scalar load with a larger vector load.
194 // We use minimal alignment (maximum flexibility) because we only care about
195 // the dereferenceable region. When calculating cost and creating a new op,
196 // we may use a larger value based on alignment attributes.
197 Value *SrcPtr = Load->getPointerOperand()->stripPointerCasts();
198 assert(isa<PointerType>(SrcPtr->getType()) && "Expected a pointer type");
199
200 unsigned MinVecNumElts = MinVectorSize / ScalarSize;
201 auto *MinVecTy = VectorType::get(ScalarTy, MinVecNumElts, false);
202 unsigned OffsetEltIndex = 0;
203 Align Alignment = Load->getAlign();
204 if (!isSafeToLoadUnconditionally(SrcPtr, MinVecTy, Align(1), *DL, Load, &AC,
205 &DT)) {
206 // It is not safe to load directly from the pointer, but we can still peek
207 // through gep offsets and check if it safe to load from a base address with
208 // updated alignment. If it is, we can shuffle the element(s) into place
209 // after loading.
210 unsigned OffsetBitWidth = DL->getIndexTypeSizeInBits(SrcPtr->getType());
211 APInt Offset(OffsetBitWidth, 0);
213
214 // We want to shuffle the result down from a high element of a vector, so
215 // the offset must be positive.
216 if (Offset.isNegative())
217 return false;
218
219 // The offset must be a multiple of the scalar element to shuffle cleanly
220 // in the element's size.
221 uint64_t ScalarSizeInBytes = ScalarSize / 8;
222 if (Offset.urem(ScalarSizeInBytes) != 0)
223 return false;
224
225 // If we load MinVecNumElts, will our target element still be loaded?
226 OffsetEltIndex = Offset.udiv(ScalarSizeInBytes).getZExtValue();
227 if (OffsetEltIndex >= MinVecNumElts)
228 return false;
229
230 if (!isSafeToLoadUnconditionally(SrcPtr, MinVecTy, Align(1), *DL, Load, &AC,
231 &DT))
232 return false;
233
234 // Update alignment with offset value. Note that the offset could be negated
235 // to more accurately represent "(new) SrcPtr - Offset = (old) SrcPtr", but
236 // negation does not change the result of the alignment calculation.
237 Alignment = commonAlignment(Alignment, Offset.getZExtValue());
238 }
239
240 // Original pattern: insertelt undef, load [free casts of] PtrOp, 0
241 // Use the greater of the alignment on the load or its source pointer.
242 Alignment = std::max(SrcPtr->getPointerAlignment(*DL), Alignment);
243 Type *LoadTy = Load->getType();
244 unsigned AS = Load->getPointerAddressSpace();
245 InstructionCost OldCost =
246 TTI.getMemoryOpCost(Instruction::Load, LoadTy, Alignment, AS);
247 APInt DemandedElts = APInt::getOneBitSet(MinVecNumElts, 0);
249 OldCost +=
250 TTI.getScalarizationOverhead(MinVecTy, DemandedElts,
251 /* Insert */ true, HasExtract, CostKind);
252
253 // New pattern: load VecPtr
254 InstructionCost NewCost =
255 TTI.getMemoryOpCost(Instruction::Load, MinVecTy, Alignment, AS);
256 // Optionally, we are shuffling the loaded vector element(s) into place.
257 // For the mask set everything but element 0 to undef to prevent poison from
258 // propagating from the extra loaded memory. This will also optionally
259 // shrink/grow the vector from the loaded size to the output size.
260 // We assume this operation has no cost in codegen if there was no offset.
261 // Note that we could use freeze to avoid poison problems, but then we might
262 // still need a shuffle to change the vector size.
263 auto *Ty = cast<FixedVectorType>(I.getType());
264 unsigned OutputNumElts = Ty->getNumElements();
266 assert(OffsetEltIndex < MinVecNumElts && "Address offset too big");
267 Mask[0] = OffsetEltIndex;
268 if (OffsetEltIndex)
269 NewCost += TTI.getShuffleCost(TTI::SK_PermuteSingleSrc, MinVecTy, Mask);
270
271 // We can aggressively convert to the vector form because the backend can
272 // invert this transform if it does not result in a performance win.
273 if (OldCost < NewCost || !NewCost.isValid())
274 return false;
275
276 // It is safe and potentially profitable to load a vector directly:
277 // inselt undef, load Scalar, 0 --> load VecPtr
278 IRBuilder<> Builder(Load);
279 Value *CastedPtr =
280 Builder.CreatePointerBitCastOrAddrSpaceCast(SrcPtr, Builder.getPtrTy(AS));
281 Value *VecLd = Builder.CreateAlignedLoad(MinVecTy, CastedPtr, Alignment);
282 VecLd = Builder.CreateShuffleVector(VecLd, Mask);
283
284 replaceValue(I, *VecLd);
285 ++NumVecLoad;
286 return true;
287}
288
289/// If we are loading a vector and then inserting it into a larger vector with
290/// undefined elements, try to load the larger vector and eliminate the insert.
291/// This removes a shuffle in IR and may allow combining of other loaded values.
292bool VectorCombine::widenSubvectorLoad(Instruction &I) {
293 // Match subvector insert of fixed vector.
294 auto *Shuf = cast<ShuffleVectorInst>(&I);
295 if (!Shuf->isIdentityWithPadding())
296 return false;
297
298 // Allow a non-canonical shuffle mask that is choosing elements from op1.
299 unsigned NumOpElts =
300 cast<FixedVectorType>(Shuf->getOperand(0)->getType())->getNumElements();
301 unsigned OpIndex = any_of(Shuf->getShuffleMask(), [&NumOpElts](int M) {
302 return M >= (int)(NumOpElts);
303 });
304
305 auto *Load = dyn_cast<LoadInst>(Shuf->getOperand(OpIndex));
306 if (!canWidenLoad(Load, TTI))
307 return false;
308
309 // We use minimal alignment (maximum flexibility) because we only care about
310 // the dereferenceable region. When calculating cost and creating a new op,
311 // we may use a larger value based on alignment attributes.
312 auto *Ty = cast<FixedVectorType>(I.getType());
313 Value *SrcPtr = Load->getPointerOperand()->stripPointerCasts();
314 assert(isa<PointerType>(SrcPtr->getType()) && "Expected a pointer type");
315 Align Alignment = Load->getAlign();
316 if (!isSafeToLoadUnconditionally(SrcPtr, Ty, Align(1), *DL, Load, &AC, &DT))
317 return false;
318
319 Alignment = std::max(SrcPtr->getPointerAlignment(*DL), Alignment);
320 Type *LoadTy = Load->getType();
321 unsigned AS = Load->getPointerAddressSpace();
322
323 // Original pattern: insert_subvector (load PtrOp)
324 // This conservatively assumes that the cost of a subvector insert into an
325 // undef value is 0. We could add that cost if the cost model accurately
326 // reflects the real cost of that operation.
327 InstructionCost OldCost =
328 TTI.getMemoryOpCost(Instruction::Load, LoadTy, Alignment, AS);
329
330 // New pattern: load PtrOp
331 InstructionCost NewCost =
332 TTI.getMemoryOpCost(Instruction::Load, Ty, Alignment, AS);
333
334 // We can aggressively convert to the vector form because the backend can
335 // invert this transform if it does not result in a performance win.
336 if (OldCost < NewCost || !NewCost.isValid())
337 return false;
338
339 IRBuilder<> Builder(Load);
340 Value *CastedPtr =
341 Builder.CreatePointerBitCastOrAddrSpaceCast(SrcPtr, Builder.getPtrTy(AS));
342 Value *VecLd = Builder.CreateAlignedLoad(Ty, CastedPtr, Alignment);
343 replaceValue(I, *VecLd);
344 ++NumVecLoad;
345 return true;
346}
347
348/// Determine which, if any, of the inputs should be replaced by a shuffle
349/// followed by extract from a different index.
350ExtractElementInst *VectorCombine::getShuffleExtract(
352 unsigned PreferredExtractIndex = InvalidIndex) const {
353 auto *Index0C = dyn_cast<ConstantInt>(Ext0->getIndexOperand());
354 auto *Index1C = dyn_cast<ConstantInt>(Ext1->getIndexOperand());
355 assert(Index0C && Index1C && "Expected constant extract indexes");
356
357 unsigned Index0 = Index0C->getZExtValue();
358 unsigned Index1 = Index1C->getZExtValue();
359
360 // If the extract indexes are identical, no shuffle is needed.
361 if (Index0 == Index1)
362 return nullptr;
363
364 Type *VecTy = Ext0->getVectorOperand()->getType();
366 assert(VecTy == Ext1->getVectorOperand()->getType() && "Need matching types");
367 InstructionCost Cost0 =
368 TTI.getVectorInstrCost(*Ext0, VecTy, CostKind, Index0);
369 InstructionCost Cost1 =
370 TTI.getVectorInstrCost(*Ext1, VecTy, CostKind, Index1);
371
372 // If both costs are invalid no shuffle is needed
373 if (!Cost0.isValid() && !Cost1.isValid())
374 return nullptr;
375
376 // We are extracting from 2 different indexes, so one operand must be shuffled
377 // before performing a vector operation and/or extract. The more expensive
378 // extract will be replaced by a shuffle.
379 if (Cost0 > Cost1)
380 return Ext0;
381 if (Cost1 > Cost0)
382 return Ext1;
383
384 // If the costs are equal and there is a preferred extract index, shuffle the
385 // opposite operand.
386 if (PreferredExtractIndex == Index0)
387 return Ext1;
388 if (PreferredExtractIndex == Index1)
389 return Ext0;
390
391 // Otherwise, replace the extract with the higher index.
392 return Index0 > Index1 ? Ext0 : Ext1;
393}
394
395/// Compare the relative costs of 2 extracts followed by scalar operation vs.
396/// vector operation(s) followed by extract. Return true if the existing
397/// instructions are cheaper than a vector alternative. Otherwise, return false
398/// and if one of the extracts should be transformed to a shufflevector, set
399/// \p ConvertToShuffle to that extract instruction.
400bool VectorCombine::isExtractExtractCheap(ExtractElementInst *Ext0,
401 ExtractElementInst *Ext1,
402 const Instruction &I,
403 ExtractElementInst *&ConvertToShuffle,
404 unsigned PreferredExtractIndex) {
405 auto *Ext0IndexC = dyn_cast<ConstantInt>(Ext0->getOperand(1));
406 auto *Ext1IndexC = dyn_cast<ConstantInt>(Ext1->getOperand(1));
407 assert(Ext0IndexC && Ext1IndexC && "Expected constant extract indexes");
408
409 unsigned Opcode = I.getOpcode();
410 Type *ScalarTy = Ext0->getType();
411 auto *VecTy = cast<VectorType>(Ext0->getOperand(0)->getType());
412 InstructionCost ScalarOpCost, VectorOpCost;
413
414 // Get cost estimates for scalar and vector versions of the operation.
415 bool IsBinOp = Instruction::isBinaryOp(Opcode);
416 if (IsBinOp) {
417 ScalarOpCost = TTI.getArithmeticInstrCost(Opcode, ScalarTy);
418 VectorOpCost = TTI.getArithmeticInstrCost(Opcode, VecTy);
419 } else {
420 assert((Opcode == Instruction::ICmp || Opcode == Instruction::FCmp) &&
421 "Expected a compare");
422 CmpInst::Predicate Pred = cast<CmpInst>(I).getPredicate();
423 ScalarOpCost = TTI.getCmpSelInstrCost(
424 Opcode, ScalarTy, CmpInst::makeCmpResultType(ScalarTy), Pred);
425 VectorOpCost = TTI.getCmpSelInstrCost(
426 Opcode, VecTy, CmpInst::makeCmpResultType(VecTy), Pred);
427 }
428
429 // Get cost estimates for the extract elements. These costs will factor into
430 // both sequences.
431 unsigned Ext0Index = Ext0IndexC->getZExtValue();
432 unsigned Ext1Index = Ext1IndexC->getZExtValue();
434
435 InstructionCost Extract0Cost =
436 TTI.getVectorInstrCost(*Ext0, VecTy, CostKind, Ext0Index);
437 InstructionCost Extract1Cost =
438 TTI.getVectorInstrCost(*Ext1, VecTy, CostKind, Ext1Index);
439
440 // A more expensive extract will always be replaced by a splat shuffle.
441 // For example, if Ext0 is more expensive:
442 // opcode (extelt V0, Ext0), (ext V1, Ext1) -->
443 // extelt (opcode (splat V0, Ext0), V1), Ext1
444 // TODO: Evaluate whether that always results in lowest cost. Alternatively,
445 // check the cost of creating a broadcast shuffle and shuffling both
446 // operands to element 0.
447 InstructionCost CheapExtractCost = std::min(Extract0Cost, Extract1Cost);
448
449 // Extra uses of the extracts mean that we include those costs in the
450 // vector total because those instructions will not be eliminated.
451 InstructionCost OldCost, NewCost;
452 if (Ext0->getOperand(0) == Ext1->getOperand(0) && Ext0Index == Ext1Index) {
453 // Handle a special case. If the 2 extracts are identical, adjust the
454 // formulas to account for that. The extra use charge allows for either the
455 // CSE'd pattern or an unoptimized form with identical values:
456 // opcode (extelt V, C), (extelt V, C) --> extelt (opcode V, V), C
457 bool HasUseTax = Ext0 == Ext1 ? !Ext0->hasNUses(2)
458 : !Ext0->hasOneUse() || !Ext1->hasOneUse();
459 OldCost = CheapExtractCost + ScalarOpCost;
460 NewCost = VectorOpCost + CheapExtractCost + HasUseTax * CheapExtractCost;
461 } else {
462 // Handle the general case. Each extract is actually a different value:
463 // opcode (extelt V0, C0), (extelt V1, C1) --> extelt (opcode V0, V1), C
464 OldCost = Extract0Cost + Extract1Cost + ScalarOpCost;
465 NewCost = VectorOpCost + CheapExtractCost +
466 !Ext0->hasOneUse() * Extract0Cost +
467 !Ext1->hasOneUse() * Extract1Cost;
468 }
469
470 ConvertToShuffle = getShuffleExtract(Ext0, Ext1, PreferredExtractIndex);
471 if (ConvertToShuffle) {
472 if (IsBinOp && DisableBinopExtractShuffle)
473 return true;
474
475 // If we are extracting from 2 different indexes, then one operand must be
476 // shuffled before performing the vector operation. The shuffle mask is
477 // poison except for 1 lane that is being translated to the remaining
478 // extraction lane. Therefore, it is a splat shuffle. Ex:
479 // ShufMask = { poison, poison, 0, poison }
480 // TODO: The cost model has an option for a "broadcast" shuffle
481 // (splat-from-element-0), but no option for a more general splat.
482 NewCost +=
484 }
485
486 // Aggressively form a vector op if the cost is equal because the transform
487 // may enable further optimization.
488 // Codegen can reverse this transform (scalarize) if it was not profitable.
489 return OldCost < NewCost;
490}
491
492/// Create a shuffle that translates (shifts) 1 element from the input vector
493/// to a new element location.
494static Value *createShiftShuffle(Value *Vec, unsigned OldIndex,
495 unsigned NewIndex, IRBuilder<> &Builder) {
496 // The shuffle mask is poison except for 1 lane that is being translated
497 // to the new element index. Example for OldIndex == 2 and NewIndex == 0:
498 // ShufMask = { 2, poison, poison, poison }
499 auto *VecTy = cast<FixedVectorType>(Vec->getType());
500 SmallVector<int, 32> ShufMask(VecTy->getNumElements(), PoisonMaskElem);
501 ShufMask[NewIndex] = OldIndex;
502 return Builder.CreateShuffleVector(Vec, ShufMask, "shift");
503}
504
505/// Given an extract element instruction with constant index operand, shuffle
506/// the source vector (shift the scalar element) to a NewIndex for extraction.
507/// Return null if the input can be constant folded, so that we are not creating
508/// unnecessary instructions.
510 unsigned NewIndex,
511 IRBuilder<> &Builder) {
512 // Shufflevectors can only be created for fixed-width vectors.
513 if (!isa<FixedVectorType>(ExtElt->getOperand(0)->getType()))
514 return nullptr;
515
516 // If the extract can be constant-folded, this code is unsimplified. Defer
517 // to other passes to handle that.
518 Value *X = ExtElt->getVectorOperand();
519 Value *C = ExtElt->getIndexOperand();
520 assert(isa<ConstantInt>(C) && "Expected a constant index operand");
521 if (isa<Constant>(X))
522 return nullptr;
523
524 Value *Shuf = createShiftShuffle(X, cast<ConstantInt>(C)->getZExtValue(),
525 NewIndex, Builder);
526 return cast<ExtractElementInst>(Builder.CreateExtractElement(Shuf, NewIndex));
527}
528
529/// Try to reduce extract element costs by converting scalar compares to vector
530/// compares followed by extract.
531/// cmp (ext0 V0, C), (ext1 V1, C)
532void VectorCombine::foldExtExtCmp(ExtractElementInst *Ext0,
534 assert(isa<CmpInst>(&I) && "Expected a compare");
535 assert(cast<ConstantInt>(Ext0->getIndexOperand())->getZExtValue() ==
536 cast<ConstantInt>(Ext1->getIndexOperand())->getZExtValue() &&
537 "Expected matching constant extract indexes");
538
539 // cmp Pred (extelt V0, C), (extelt V1, C) --> extelt (cmp Pred V0, V1), C
540 ++NumVecCmp;
541 CmpInst::Predicate Pred = cast<CmpInst>(&I)->getPredicate();
542 Value *V0 = Ext0->getVectorOperand(), *V1 = Ext1->getVectorOperand();
543 Value *VecCmp = Builder.CreateCmp(Pred, V0, V1);
544 Value *NewExt = Builder.CreateExtractElement(VecCmp, Ext0->getIndexOperand());
545 replaceValue(I, *NewExt);
546}
547
548/// Try to reduce extract element costs by converting scalar binops to vector
549/// binops followed by extract.
550/// bo (ext0 V0, C), (ext1 V1, C)
551void VectorCombine::foldExtExtBinop(ExtractElementInst *Ext0,
553 assert(isa<BinaryOperator>(&I) && "Expected a binary operator");
554 assert(cast<ConstantInt>(Ext0->getIndexOperand())->getZExtValue() ==
555 cast<ConstantInt>(Ext1->getIndexOperand())->getZExtValue() &&
556 "Expected matching constant extract indexes");
557
558 // bo (extelt V0, C), (extelt V1, C) --> extelt (bo V0, V1), C
559 ++NumVecBO;
560 Value *V0 = Ext0->getVectorOperand(), *V1 = Ext1->getVectorOperand();
561 Value *VecBO =
562 Builder.CreateBinOp(cast<BinaryOperator>(&I)->getOpcode(), V0, V1);
563
564 // All IR flags are safe to back-propagate because any potential poison
565 // created in unused vector elements is discarded by the extract.
566 if (auto *VecBOInst = dyn_cast<Instruction>(VecBO))
567 VecBOInst->copyIRFlags(&I);
568
569 Value *NewExt = Builder.CreateExtractElement(VecBO, Ext0->getIndexOperand());
570 replaceValue(I, *NewExt);
571}
572
573/// Match an instruction with extracted vector operands.
574bool VectorCombine::foldExtractExtract(Instruction &I) {
575 // It is not safe to transform things like div, urem, etc. because we may
576 // create undefined behavior when executing those on unknown vector elements.
578 return false;
579
580 Instruction *I0, *I1;
582 if (!match(&I, m_Cmp(Pred, m_Instruction(I0), m_Instruction(I1))) &&
584 return false;
585
586 Value *V0, *V1;
587 uint64_t C0, C1;
588 if (!match(I0, m_ExtractElt(m_Value(V0), m_ConstantInt(C0))) ||
589 !match(I1, m_ExtractElt(m_Value(V1), m_ConstantInt(C1))) ||
590 V0->getType() != V1->getType())
591 return false;
592
593 // If the scalar value 'I' is going to be re-inserted into a vector, then try
594 // to create an extract to that same element. The extract/insert can be
595 // reduced to a "select shuffle".
596 // TODO: If we add a larger pattern match that starts from an insert, this
597 // probably becomes unnecessary.
598 auto *Ext0 = cast<ExtractElementInst>(I0);
599 auto *Ext1 = cast<ExtractElementInst>(I1);
600 uint64_t InsertIndex = InvalidIndex;
601 if (I.hasOneUse())
602 match(I.user_back(),
603 m_InsertElt(m_Value(), m_Value(), m_ConstantInt(InsertIndex)));
604
605 ExtractElementInst *ExtractToChange;
606 if (isExtractExtractCheap(Ext0, Ext1, I, ExtractToChange, InsertIndex))
607 return false;
608
609 if (ExtractToChange) {
610 unsigned CheapExtractIdx = ExtractToChange == Ext0 ? C1 : C0;
611 ExtractElementInst *NewExtract =
612 translateExtract(ExtractToChange, CheapExtractIdx, Builder);
613 if (!NewExtract)
614 return false;
615 if (ExtractToChange == Ext0)
616 Ext0 = NewExtract;
617 else
618 Ext1 = NewExtract;
619 }
620
621 if (Pred != CmpInst::BAD_ICMP_PREDICATE)
622 foldExtExtCmp(Ext0, Ext1, I);
623 else
624 foldExtExtBinop(Ext0, Ext1, I);
625
626 Worklist.push(Ext0);
627 Worklist.push(Ext1);
628 return true;
629}
630
631/// Try to replace an extract + scalar fneg + insert with a vector fneg +
632/// shuffle.
633bool VectorCombine::foldInsExtFNeg(Instruction &I) {
634 // Match an insert (op (extract)) pattern.
635 Value *DestVec;
637 Instruction *FNeg;
638 if (!match(&I, m_InsertElt(m_Value(DestVec), m_OneUse(m_Instruction(FNeg)),
640 return false;
641
642 // Note: This handles the canonical fneg instruction and "fsub -0.0, X".
643 Value *SrcVec;
644 Instruction *Extract;
645 if (!match(FNeg, m_FNeg(m_CombineAnd(
646 m_Instruction(Extract),
648 return false;
649
650 // TODO: We could handle this with a length-changing shuffle.
651 auto *VecTy = cast<FixedVectorType>(I.getType());
652 if (SrcVec->getType() != VecTy)
653 return false;
654
655 // Ignore bogus insert/extract index.
656 unsigned NumElts = VecTy->getNumElements();
657 if (Index >= NumElts)
658 return false;
659
660 // We are inserting the negated element into the same lane that we extracted
661 // from. This is equivalent to a select-shuffle that chooses all but the
662 // negated element from the destination vector.
663 SmallVector<int> Mask(NumElts);
664 std::iota(Mask.begin(), Mask.end(), 0);
665 Mask[Index] = Index + NumElts;
666
667 Type *ScalarTy = VecTy->getScalarType();
669 InstructionCost OldCost =
670 TTI.getArithmeticInstrCost(Instruction::FNeg, ScalarTy) +
672
673 // If the extract has one use, it will be eliminated, so count it in the
674 // original cost. If it has more than one use, ignore the cost because it will
675 // be the same before/after.
676 if (Extract->hasOneUse())
677 OldCost += TTI.getVectorInstrCost(*Extract, VecTy, CostKind, Index);
678
679 InstructionCost NewCost =
680 TTI.getArithmeticInstrCost(Instruction::FNeg, VecTy) +
682
683 if (NewCost > OldCost)
684 return false;
685
686 // insertelt DestVec, (fneg (extractelt SrcVec, Index)), Index -->
687 // shuffle DestVec, (fneg SrcVec), Mask
688 Value *VecFNeg = Builder.CreateFNegFMF(SrcVec, FNeg);
689 Value *Shuf = Builder.CreateShuffleVector(DestVec, VecFNeg, Mask);
690 replaceValue(I, *Shuf);
691 return true;
692}
693
694/// If this is a bitcast of a shuffle, try to bitcast the source vector to the
695/// destination type followed by shuffle. This can enable further transforms by
696/// moving bitcasts or shuffles together.
697bool VectorCombine::foldBitcastShuffle(Instruction &I) {
698 Value *V0, *V1;
700 if (!match(&I, m_BitCast(m_OneUse(
701 m_Shuffle(m_Value(V0), m_Value(V1), m_Mask(Mask))))))
702 return false;
703
704 // 1) Do not fold bitcast shuffle for scalable type. First, shuffle cost for
705 // scalable type is unknown; Second, we cannot reason if the narrowed shuffle
706 // mask for scalable type is a splat or not.
707 // 2) Disallow non-vector casts.
708 // TODO: We could allow any shuffle.
709 auto *DestTy = dyn_cast<FixedVectorType>(I.getType());
710 auto *SrcTy = dyn_cast<FixedVectorType>(V0->getType());
711 if (!DestTy || !SrcTy)
712 return false;
713
714 unsigned DestEltSize = DestTy->getScalarSizeInBits();
715 unsigned SrcEltSize = SrcTy->getScalarSizeInBits();
716 if (SrcTy->getPrimitiveSizeInBits() % DestEltSize != 0)
717 return false;
718
719 bool IsUnary = isa<UndefValue>(V1);
720
721 // For binary shuffles, only fold bitcast(shuffle(X,Y))
722 // if it won't increase the number of bitcasts.
723 if (!IsUnary) {
724 auto *BCTy0 = dyn_cast<FixedVectorType>(peekThroughBitcasts(V0)->getType());
725 auto *BCTy1 = dyn_cast<FixedVectorType>(peekThroughBitcasts(V1)->getType());
726 if (!(BCTy0 && BCTy0->getElementType() == DestTy->getElementType()) &&
727 !(BCTy1 && BCTy1->getElementType() == DestTy->getElementType()))
728 return false;
729 }
730
731 SmallVector<int, 16> NewMask;
732 if (DestEltSize <= SrcEltSize) {
733 // The bitcast is from wide to narrow/equal elements. The shuffle mask can
734 // always be expanded to the equivalent form choosing narrower elements.
735 assert(SrcEltSize % DestEltSize == 0 && "Unexpected shuffle mask");
736 unsigned ScaleFactor = SrcEltSize / DestEltSize;
737 narrowShuffleMaskElts(ScaleFactor, Mask, NewMask);
738 } else {
739 // The bitcast is from narrow elements to wide elements. The shuffle mask
740 // must choose consecutive elements to allow casting first.
741 assert(DestEltSize % SrcEltSize == 0 && "Unexpected shuffle mask");
742 unsigned ScaleFactor = DestEltSize / SrcEltSize;
743 if (!widenShuffleMaskElts(ScaleFactor, Mask, NewMask))
744 return false;
745 }
746
747 // Bitcast the shuffle src - keep its original width but using the destination
748 // scalar type.
749 unsigned NumSrcElts = SrcTy->getPrimitiveSizeInBits() / DestEltSize;
750 auto *NewShuffleTy =
751 FixedVectorType::get(DestTy->getScalarType(), NumSrcElts);
752 auto *OldShuffleTy =
753 FixedVectorType::get(SrcTy->getScalarType(), Mask.size());
754 unsigned NumOps = IsUnary ? 1 : 2;
755
756 // The new shuffle must not cost more than the old shuffle.
762
763 InstructionCost DestCost =
764 TTI.getShuffleCost(SK, NewShuffleTy, NewMask, CK) +
765 (NumOps * TTI.getCastInstrCost(Instruction::BitCast, NewShuffleTy, SrcTy,
766 TargetTransformInfo::CastContextHint::None,
767 CK));
768 InstructionCost SrcCost =
769 TTI.getShuffleCost(SK, SrcTy, Mask, CK) +
770 TTI.getCastInstrCost(Instruction::BitCast, DestTy, OldShuffleTy,
771 TargetTransformInfo::CastContextHint::None, CK);
772 if (DestCost > SrcCost || !DestCost.isValid())
773 return false;
774
775 // bitcast (shuf V0, V1, MaskC) --> shuf (bitcast V0), (bitcast V1), MaskC'
776 ++NumShufOfBitcast;
777 Value *CastV0 = Builder.CreateBitCast(peekThroughBitcasts(V0), NewShuffleTy);
778 Value *CastV1 = Builder.CreateBitCast(peekThroughBitcasts(V1), NewShuffleTy);
779 Value *Shuf = Builder.CreateShuffleVector(CastV0, CastV1, NewMask);
780 replaceValue(I, *Shuf);
781 return true;
782}
783
784/// VP Intrinsics whose vector operands are both splat values may be simplified
785/// into the scalar version of the operation and the result splatted. This
786/// can lead to scalarization down the line.
787bool VectorCombine::scalarizeVPIntrinsic(Instruction &I) {
788 if (!isa<VPIntrinsic>(I))
789 return false;
790 VPIntrinsic &VPI = cast<VPIntrinsic>(I);
791 Value *Op0 = VPI.getArgOperand(0);
792 Value *Op1 = VPI.getArgOperand(1);
793
794 if (!isSplatValue(Op0) || !isSplatValue(Op1))
795 return false;
796
797 // Check getSplatValue early in this function, to avoid doing unnecessary
798 // work.
799 Value *ScalarOp0 = getSplatValue(Op0);
800 Value *ScalarOp1 = getSplatValue(Op1);
801 if (!ScalarOp0 || !ScalarOp1)
802 return false;
803
804 // For the binary VP intrinsics supported here, the result on disabled lanes
805 // is a poison value. For now, only do this simplification if all lanes
806 // are active.
807 // TODO: Relax the condition that all lanes are active by using insertelement
808 // on inactive lanes.
809 auto IsAllTrueMask = [](Value *MaskVal) {
810 if (Value *SplattedVal = getSplatValue(MaskVal))
811 if (auto *ConstValue = dyn_cast<Constant>(SplattedVal))
812 return ConstValue->isAllOnesValue();
813 return false;
814 };
815 if (!IsAllTrueMask(VPI.getArgOperand(2)))
816 return false;
817
818 // Check to make sure we support scalarization of the intrinsic
819 Intrinsic::ID IntrID = VPI.getIntrinsicID();
820 if (!VPBinOpIntrinsic::isVPBinOp(IntrID))
821 return false;
822
823 // Calculate cost of splatting both operands into vectors and the vector
824 // intrinsic
825 VectorType *VecTy = cast<VectorType>(VPI.getType());
828 if (auto *FVTy = dyn_cast<FixedVectorType>(VecTy))
829 Mask.resize(FVTy->getNumElements(), 0);
830 InstructionCost SplatCost =
831 TTI.getVectorInstrCost(Instruction::InsertElement, VecTy, CostKind, 0) +
833
834 // Calculate the cost of the VP Intrinsic
836 for (Value *V : VPI.args())
837 Args.push_back(V->getType());
838 IntrinsicCostAttributes Attrs(IntrID, VecTy, Args);
839 InstructionCost VectorOpCost = TTI.getIntrinsicInstrCost(Attrs, CostKind);
840 InstructionCost OldCost = 2 * SplatCost + VectorOpCost;
841
842 // Determine scalar opcode
843 std::optional<unsigned> FunctionalOpcode =
845 std::optional<Intrinsic::ID> ScalarIntrID = std::nullopt;
846 if (!FunctionalOpcode) {
847 ScalarIntrID = VPI.getFunctionalIntrinsicID();
848 if (!ScalarIntrID)
849 return false;
850 }
851
852 // Calculate cost of scalarizing
853 InstructionCost ScalarOpCost = 0;
854 if (ScalarIntrID) {
855 IntrinsicCostAttributes Attrs(*ScalarIntrID, VecTy->getScalarType(), Args);
856 ScalarOpCost = TTI.getIntrinsicInstrCost(Attrs, CostKind);
857 } else {
858 ScalarOpCost =
859 TTI.getArithmeticInstrCost(*FunctionalOpcode, VecTy->getScalarType());
860 }
861
862 // The existing splats may be kept around if other instructions use them.
863 InstructionCost CostToKeepSplats =
864 (SplatCost * !Op0->hasOneUse()) + (SplatCost * !Op1->hasOneUse());
865 InstructionCost NewCost = ScalarOpCost + SplatCost + CostToKeepSplats;
866
867 LLVM_DEBUG(dbgs() << "Found a VP Intrinsic to scalarize: " << VPI
868 << "\n");
869 LLVM_DEBUG(dbgs() << "Cost of Intrinsic: " << OldCost
870 << ", Cost of scalarizing:" << NewCost << "\n");
871
872 // We want to scalarize unless the vector variant actually has lower cost.
873 if (OldCost < NewCost || !NewCost.isValid())
874 return false;
875
876 // Scalarize the intrinsic
877 ElementCount EC = cast<VectorType>(Op0->getType())->getElementCount();
878 Value *EVL = VPI.getArgOperand(3);
879
880 // If the VP op might introduce UB or poison, we can scalarize it provided
881 // that we know the EVL > 0: If the EVL is zero, then the original VP op
882 // becomes a no-op and thus won't be UB, so make sure we don't introduce UB by
883 // scalarizing it.
884 bool SafeToSpeculate;
885 if (ScalarIntrID)
886 SafeToSpeculate = Intrinsic::getAttributes(I.getContext(), *ScalarIntrID)
887 .hasFnAttr(Attribute::AttrKind::Speculatable);
888 else
890 *FunctionalOpcode, &VPI, nullptr, &AC, &DT);
891 if (!SafeToSpeculate &&
892 !isKnownNonZero(EVL, SimplifyQuery(*DL, &DT, &AC, &VPI)))
893 return false;
894
895 Value *ScalarVal =
896 ScalarIntrID
897 ? Builder.CreateIntrinsic(VecTy->getScalarType(), *ScalarIntrID,
898 {ScalarOp0, ScalarOp1})
899 : Builder.CreateBinOp((Instruction::BinaryOps)(*FunctionalOpcode),
900 ScalarOp0, ScalarOp1);
901
902 replaceValue(VPI, *Builder.CreateVectorSplat(EC, ScalarVal));
903 return true;
904}
905
906/// Match a vector binop or compare instruction with at least one inserted
907/// scalar operand and convert to scalar binop/cmp followed by insertelement.
908bool VectorCombine::scalarizeBinopOrCmp(Instruction &I) {
910 Value *Ins0, *Ins1;
911 if (!match(&I, m_BinOp(m_Value(Ins0), m_Value(Ins1))) &&
912 !match(&I, m_Cmp(Pred, m_Value(Ins0), m_Value(Ins1))))
913 return false;
914
915 // Do not convert the vector condition of a vector select into a scalar
916 // condition. That may cause problems for codegen because of differences in
917 // boolean formats and register-file transfers.
918 // TODO: Can we account for that in the cost model?
919 bool IsCmp = Pred != CmpInst::Predicate::BAD_ICMP_PREDICATE;
920 if (IsCmp)
921 for (User *U : I.users())
922 if (match(U, m_Select(m_Specific(&I), m_Value(), m_Value())))
923 return false;
924
925 // Match against one or both scalar values being inserted into constant
926 // vectors:
927 // vec_op VecC0, (inselt VecC1, V1, Index)
928 // vec_op (inselt VecC0, V0, Index), VecC1
929 // vec_op (inselt VecC0, V0, Index), (inselt VecC1, V1, Index)
930 // TODO: Deal with mismatched index constants and variable indexes?
931 Constant *VecC0 = nullptr, *VecC1 = nullptr;
932 Value *V0 = nullptr, *V1 = nullptr;
933 uint64_t Index0 = 0, Index1 = 0;
934 if (!match(Ins0, m_InsertElt(m_Constant(VecC0), m_Value(V0),
935 m_ConstantInt(Index0))) &&
936 !match(Ins0, m_Constant(VecC0)))
937 return false;
938 if (!match(Ins1, m_InsertElt(m_Constant(VecC1), m_Value(V1),
939 m_ConstantInt(Index1))) &&
940 !match(Ins1, m_Constant(VecC1)))
941 return false;
942
943 bool IsConst0 = !V0;
944 bool IsConst1 = !V1;
945 if (IsConst0 && IsConst1)
946 return false;
947 if (!IsConst0 && !IsConst1 && Index0 != Index1)
948 return false;
949
950 // Bail for single insertion if it is a load.
951 // TODO: Handle this once getVectorInstrCost can cost for load/stores.
952 auto *I0 = dyn_cast_or_null<Instruction>(V0);
953 auto *I1 = dyn_cast_or_null<Instruction>(V1);
954 if ((IsConst0 && I1 && I1->mayReadFromMemory()) ||
955 (IsConst1 && I0 && I0->mayReadFromMemory()))
956 return false;
957
958 uint64_t Index = IsConst0 ? Index1 : Index0;
959 Type *ScalarTy = IsConst0 ? V1->getType() : V0->getType();
960 Type *VecTy = I.getType();
961 assert(VecTy->isVectorTy() &&
962 (IsConst0 || IsConst1 || V0->getType() == V1->getType()) &&
963 (ScalarTy->isIntegerTy() || ScalarTy->isFloatingPointTy() ||
964 ScalarTy->isPointerTy()) &&
965 "Unexpected types for insert element into binop or cmp");
966
967 unsigned Opcode = I.getOpcode();
968 InstructionCost ScalarOpCost, VectorOpCost;
969 if (IsCmp) {
970 CmpInst::Predicate Pred = cast<CmpInst>(I).getPredicate();
971 ScalarOpCost = TTI.getCmpSelInstrCost(
972 Opcode, ScalarTy, CmpInst::makeCmpResultType(ScalarTy), Pred);
973 VectorOpCost = TTI.getCmpSelInstrCost(
974 Opcode, VecTy, CmpInst::makeCmpResultType(VecTy), Pred);
975 } else {
976 ScalarOpCost = TTI.getArithmeticInstrCost(Opcode, ScalarTy);
977 VectorOpCost = TTI.getArithmeticInstrCost(Opcode, VecTy);
978 }
979
980 // Get cost estimate for the insert element. This cost will factor into
981 // both sequences.
984 Instruction::InsertElement, VecTy, CostKind, Index);
985 InstructionCost OldCost =
986 (IsConst0 ? 0 : InsertCost) + (IsConst1 ? 0 : InsertCost) + VectorOpCost;
987 InstructionCost NewCost = ScalarOpCost + InsertCost +
988 (IsConst0 ? 0 : !Ins0->hasOneUse() * InsertCost) +
989 (IsConst1 ? 0 : !Ins1->hasOneUse() * InsertCost);
990
991 // We want to scalarize unless the vector variant actually has lower cost.
992 if (OldCost < NewCost || !NewCost.isValid())
993 return false;
994
995 // vec_op (inselt VecC0, V0, Index), (inselt VecC1, V1, Index) -->
996 // inselt NewVecC, (scalar_op V0, V1), Index
997 if (IsCmp)
998 ++NumScalarCmp;
999 else
1000 ++NumScalarBO;
1001
1002 // For constant cases, extract the scalar element, this should constant fold.
1003 if (IsConst0)
1004 V0 = ConstantExpr::getExtractElement(VecC0, Builder.getInt64(Index));
1005 if (IsConst1)
1006 V1 = ConstantExpr::getExtractElement(VecC1, Builder.getInt64(Index));
1007
1008 Value *Scalar =
1009 IsCmp ? Builder.CreateCmp(Pred, V0, V1)
1010 : Builder.CreateBinOp((Instruction::BinaryOps)Opcode, V0, V1);
1011
1012 Scalar->setName(I.getName() + ".scalar");
1013
1014 // All IR flags are safe to back-propagate. There is no potential for extra
1015 // poison to be created by the scalar instruction.
1016 if (auto *ScalarInst = dyn_cast<Instruction>(Scalar))
1017 ScalarInst->copyIRFlags(&I);
1018
1019 // Fold the vector constants in the original vectors into a new base vector.
1020 Value *NewVecC =
1021 IsCmp ? Builder.CreateCmp(Pred, VecC0, VecC1)
1022 : Builder.CreateBinOp((Instruction::BinaryOps)Opcode, VecC0, VecC1);
1023 Value *Insert = Builder.CreateInsertElement(NewVecC, Scalar, Index);
1024 replaceValue(I, *Insert);
1025 return true;
1026}
1027
1028/// Try to combine a scalar binop + 2 scalar compares of extracted elements of
1029/// a vector into vector operations followed by extract. Note: The SLP pass
1030/// may miss this pattern because of implementation problems.
1031bool VectorCombine::foldExtractedCmps(Instruction &I) {
1032 // We are looking for a scalar binop of booleans.
1033 // binop i1 (cmp Pred I0, C0), (cmp Pred I1, C1)
1034 if (!I.isBinaryOp() || !I.getType()->isIntegerTy(1))
1035 return false;
1036
1037 // The compare predicates should match, and each compare should have a
1038 // constant operand.
1039 // TODO: Relax the one-use constraints.
1040 Value *B0 = I.getOperand(0), *B1 = I.getOperand(1);
1041 Instruction *I0, *I1;
1042 Constant *C0, *C1;
1043 CmpInst::Predicate P0, P1;
1044 if (!match(B0, m_OneUse(m_Cmp(P0, m_Instruction(I0), m_Constant(C0)))) ||
1045 !match(B1, m_OneUse(m_Cmp(P1, m_Instruction(I1), m_Constant(C1)))) ||
1046 P0 != P1)
1047 return false;
1048
1049 // The compare operands must be extracts of the same vector with constant
1050 // extract indexes.
1051 // TODO: Relax the one-use constraints.
1052 Value *X;
1053 uint64_t Index0, Index1;
1054 if (!match(I0, m_OneUse(m_ExtractElt(m_Value(X), m_ConstantInt(Index0)))) ||
1056 return false;
1057
1058 auto *Ext0 = cast<ExtractElementInst>(I0);
1059 auto *Ext1 = cast<ExtractElementInst>(I1);
1060 ExtractElementInst *ConvertToShuf = getShuffleExtract(Ext0, Ext1);
1061 if (!ConvertToShuf)
1062 return false;
1063
1064 // The original scalar pattern is:
1065 // binop i1 (cmp Pred (ext X, Index0), C0), (cmp Pred (ext X, Index1), C1)
1066 CmpInst::Predicate Pred = P0;
1067 unsigned CmpOpcode = CmpInst::isFPPredicate(Pred) ? Instruction::FCmp
1068 : Instruction::ICmp;
1069 auto *VecTy = dyn_cast<FixedVectorType>(X->getType());
1070 if (!VecTy)
1071 return false;
1072
1074 InstructionCost OldCost =
1075 TTI.getVectorInstrCost(*Ext0, VecTy, CostKind, Index0);
1076 OldCost += TTI.getVectorInstrCost(*Ext1, VecTy, CostKind, Index1);
1077 OldCost +=
1078 TTI.getCmpSelInstrCost(CmpOpcode, I0->getType(),
1079 CmpInst::makeCmpResultType(I0->getType()), Pred) *
1080 2;
1081 OldCost += TTI.getArithmeticInstrCost(I.getOpcode(), I.getType());
1082
1083 // The proposed vector pattern is:
1084 // vcmp = cmp Pred X, VecC
1085 // ext (binop vNi1 vcmp, (shuffle vcmp, Index1)), Index0
1086 int CheapIndex = ConvertToShuf == Ext0 ? Index1 : Index0;
1087 int ExpensiveIndex = ConvertToShuf == Ext0 ? Index0 : Index1;
1088 auto *CmpTy = cast<FixedVectorType>(CmpInst::makeCmpResultType(X->getType()));
1090 CmpOpcode, X->getType(), CmpInst::makeCmpResultType(X->getType()), Pred);
1091 SmallVector<int, 32> ShufMask(VecTy->getNumElements(), PoisonMaskElem);
1092 ShufMask[CheapIndex] = ExpensiveIndex;
1094 ShufMask);
1095 NewCost += TTI.getArithmeticInstrCost(I.getOpcode(), CmpTy);
1096 NewCost += TTI.getVectorInstrCost(*Ext0, CmpTy, CostKind, CheapIndex);
1097
1098 // Aggressively form vector ops if the cost is equal because the transform
1099 // may enable further optimization.
1100 // Codegen can reverse this transform (scalarize) if it was not profitable.
1101 if (OldCost < NewCost || !NewCost.isValid())
1102 return false;
1103
1104 // Create a vector constant from the 2 scalar constants.
1105 SmallVector<Constant *, 32> CmpC(VecTy->getNumElements(),
1106 PoisonValue::get(VecTy->getElementType()));
1107 CmpC[Index0] = C0;
1108 CmpC[Index1] = C1;
1109 Value *VCmp = Builder.CreateCmp(Pred, X, ConstantVector::get(CmpC));
1110
1111 Value *Shuf = createShiftShuffle(VCmp, ExpensiveIndex, CheapIndex, Builder);
1112 Value *VecLogic = Builder.CreateBinOp(cast<BinaryOperator>(I).getOpcode(),
1113 VCmp, Shuf);
1114 Value *NewExt = Builder.CreateExtractElement(VecLogic, CheapIndex);
1115 replaceValue(I, *NewExt);
1116 ++NumVecCmpBO;
1117 return true;
1118}
1119
1120// Check if memory loc modified between two instrs in the same BB
1123 const MemoryLocation &Loc, AAResults &AA) {
1124 unsigned NumScanned = 0;
1125 return std::any_of(Begin, End, [&](const Instruction &Instr) {
1126 return isModSet(AA.getModRefInfo(&Instr, Loc)) ||
1127 ++NumScanned > MaxInstrsToScan;
1128 });
1129}
1130
1131namespace {
1132/// Helper class to indicate whether a vector index can be safely scalarized and
1133/// if a freeze needs to be inserted.
1134class ScalarizationResult {
1135 enum class StatusTy { Unsafe, Safe, SafeWithFreeze };
1136
1137 StatusTy Status;
1138 Value *ToFreeze;
1139
1140 ScalarizationResult(StatusTy Status, Value *ToFreeze = nullptr)
1141 : Status(Status), ToFreeze(ToFreeze) {}
1142
1143public:
1144 ScalarizationResult(const ScalarizationResult &Other) = default;
1145 ~ScalarizationResult() {
1146 assert(!ToFreeze && "freeze() not called with ToFreeze being set");
1147 }
1148
1149 static ScalarizationResult unsafe() { return {StatusTy::Unsafe}; }
1150 static ScalarizationResult safe() { return {StatusTy::Safe}; }
1151 static ScalarizationResult safeWithFreeze(Value *ToFreeze) {
1152 return {StatusTy::SafeWithFreeze, ToFreeze};
1153 }
1154
1155 /// Returns true if the index can be scalarize without requiring a freeze.
1156 bool isSafe() const { return Status == StatusTy::Safe; }
1157 /// Returns true if the index cannot be scalarized.
1158 bool isUnsafe() const { return Status == StatusTy::Unsafe; }
1159 /// Returns true if the index can be scalarize, but requires inserting a
1160 /// freeze.
1161 bool isSafeWithFreeze() const { return Status == StatusTy::SafeWithFreeze; }
1162
1163 /// Reset the state of Unsafe and clear ToFreze if set.
1164 void discard() {
1165 ToFreeze = nullptr;
1166 Status = StatusTy::Unsafe;
1167 }
1168
1169 /// Freeze the ToFreeze and update the use in \p User to use it.
1170 void freeze(IRBuilder<> &Builder, Instruction &UserI) {
1171 assert(isSafeWithFreeze() &&
1172 "should only be used when freezing is required");
1173 assert(is_contained(ToFreeze->users(), &UserI) &&
1174 "UserI must be a user of ToFreeze");
1175 IRBuilder<>::InsertPointGuard Guard(Builder);
1176 Builder.SetInsertPoint(cast<Instruction>(&UserI));
1177 Value *Frozen =
1178 Builder.CreateFreeze(ToFreeze, ToFreeze->getName() + ".frozen");
1179 for (Use &U : make_early_inc_range((UserI.operands())))
1180 if (U.get() == ToFreeze)
1181 U.set(Frozen);
1182
1183 ToFreeze = nullptr;
1184 }
1185};
1186} // namespace
1187
1188/// Check if it is legal to scalarize a memory access to \p VecTy at index \p
1189/// Idx. \p Idx must access a valid vector element.
1190static ScalarizationResult canScalarizeAccess(VectorType *VecTy, Value *Idx,
1191 Instruction *CtxI,
1192 AssumptionCache &AC,
1193 const DominatorTree &DT) {
1194 // We do checks for both fixed vector types and scalable vector types.
1195 // This is the number of elements of fixed vector types,
1196 // or the minimum number of elements of scalable vector types.
1197 uint64_t NumElements = VecTy->getElementCount().getKnownMinValue();
1198
1199 if (auto *C = dyn_cast<ConstantInt>(Idx)) {
1200 if (C->getValue().ult(NumElements))
1201 return ScalarizationResult::safe();
1202 return ScalarizationResult::unsafe();
1203 }
1204
1205 unsigned IntWidth = Idx->getType()->getScalarSizeInBits();
1206 APInt Zero(IntWidth, 0);
1207 APInt MaxElts(IntWidth, NumElements);
1208 ConstantRange ValidIndices(Zero, MaxElts);
1209 ConstantRange IdxRange(IntWidth, true);
1210
1211 if (isGuaranteedNotToBePoison(Idx, &AC)) {
1212 if (ValidIndices.contains(computeConstantRange(Idx, /* ForSigned */ false,
1213 true, &AC, CtxI, &DT)))
1214 return ScalarizationResult::safe();
1215 return ScalarizationResult::unsafe();
1216 }
1217
1218 // If the index may be poison, check if we can insert a freeze before the
1219 // range of the index is restricted.
1220 Value *IdxBase;
1221 ConstantInt *CI;
1222 if (match(Idx, m_And(m_Value(IdxBase), m_ConstantInt(CI)))) {
1223 IdxRange = IdxRange.binaryAnd(CI->getValue());
1224 } else if (match(Idx, m_URem(m_Value(IdxBase), m_ConstantInt(CI)))) {
1225 IdxRange = IdxRange.urem(CI->getValue());
1226 }
1227
1228 if (ValidIndices.contains(IdxRange))
1229 return ScalarizationResult::safeWithFreeze(IdxBase);
1230 return ScalarizationResult::unsafe();
1231}
1232
1233/// The memory operation on a vector of \p ScalarType had alignment of
1234/// \p VectorAlignment. Compute the maximal, but conservatively correct,
1235/// alignment that will be valid for the memory operation on a single scalar
1236/// element of the same type with index \p Idx.
1238 Type *ScalarType, Value *Idx,
1239 const DataLayout &DL) {
1240 if (auto *C = dyn_cast<ConstantInt>(Idx))
1241 return commonAlignment(VectorAlignment,
1242 C->getZExtValue() * DL.getTypeStoreSize(ScalarType));
1243 return commonAlignment(VectorAlignment, DL.getTypeStoreSize(ScalarType));
1244}
1245
1246// Combine patterns like:
1247// %0 = load <4 x i32>, <4 x i32>* %a
1248// %1 = insertelement <4 x i32> %0, i32 %b, i32 1
1249// store <4 x i32> %1, <4 x i32>* %a
1250// to:
1251// %0 = bitcast <4 x i32>* %a to i32*
1252// %1 = getelementptr inbounds i32, i32* %0, i64 0, i64 1
1253// store i32 %b, i32* %1
1254bool VectorCombine::foldSingleElementStore(Instruction &I) {
1255 auto *SI = cast<StoreInst>(&I);
1256 if (!SI->isSimple() || !isa<VectorType>(SI->getValueOperand()->getType()))
1257 return false;
1258
1259 // TODO: Combine more complicated patterns (multiple insert) by referencing
1260 // TargetTransformInfo.
1262 Value *NewElement;
1263 Value *Idx;
1264 if (!match(SI->getValueOperand(),
1265 m_InsertElt(m_Instruction(Source), m_Value(NewElement),
1266 m_Value(Idx))))
1267 return false;
1268
1269 if (auto *Load = dyn_cast<LoadInst>(Source)) {
1270 auto VecTy = cast<VectorType>(SI->getValueOperand()->getType());
1271 Value *SrcAddr = Load->getPointerOperand()->stripPointerCasts();
1272 // Don't optimize for atomic/volatile load or store. Ensure memory is not
1273 // modified between, vector type matches store size, and index is inbounds.
1274 if (!Load->isSimple() || Load->getParent() != SI->getParent() ||
1275 !DL->typeSizeEqualsStoreSize(Load->getType()->getScalarType()) ||
1276 SrcAddr != SI->getPointerOperand()->stripPointerCasts())
1277 return false;
1278
1279 auto ScalarizableIdx = canScalarizeAccess(VecTy, Idx, Load, AC, DT);
1280 if (ScalarizableIdx.isUnsafe() ||
1281 isMemModifiedBetween(Load->getIterator(), SI->getIterator(),
1282 MemoryLocation::get(SI), AA))
1283 return false;
1284
1285 if (ScalarizableIdx.isSafeWithFreeze())
1286 ScalarizableIdx.freeze(Builder, *cast<Instruction>(Idx));
1287 Value *GEP = Builder.CreateInBoundsGEP(
1288 SI->getValueOperand()->getType(), SI->getPointerOperand(),
1289 {ConstantInt::get(Idx->getType(), 0), Idx});
1290 StoreInst *NSI = Builder.CreateStore(NewElement, GEP);
1291 NSI->copyMetadata(*SI);
1292 Align ScalarOpAlignment = computeAlignmentAfterScalarization(
1293 std::max(SI->getAlign(), Load->getAlign()), NewElement->getType(), Idx,
1294 *DL);
1295 NSI->setAlignment(ScalarOpAlignment);
1296 replaceValue(I, *NSI);
1298 return true;
1299 }
1300
1301 return false;
1302}
1303
1304/// Try to scalarize vector loads feeding extractelement instructions.
1305bool VectorCombine::scalarizeLoadExtract(Instruction &I) {
1306 Value *Ptr;
1307 if (!match(&I, m_Load(m_Value(Ptr))))
1308 return false;
1309
1310 auto *VecTy = cast<VectorType>(I.getType());
1311 auto *LI = cast<LoadInst>(&I);
1312 if (LI->isVolatile() || !DL->typeSizeEqualsStoreSize(VecTy->getScalarType()))
1313 return false;
1314
1315 InstructionCost OriginalCost =
1316 TTI.getMemoryOpCost(Instruction::Load, VecTy, LI->getAlign(),
1317 LI->getPointerAddressSpace());
1318 InstructionCost ScalarizedCost = 0;
1319
1320 Instruction *LastCheckedInst = LI;
1321 unsigned NumInstChecked = 0;
1323 auto FailureGuard = make_scope_exit([&]() {
1324 // If the transform is aborted, discard the ScalarizationResults.
1325 for (auto &Pair : NeedFreeze)
1326 Pair.second.discard();
1327 });
1328
1329 // Check if all users of the load are extracts with no memory modifications
1330 // between the load and the extract. Compute the cost of both the original
1331 // code and the scalarized version.
1332 for (User *U : LI->users()) {
1333 auto *UI = dyn_cast<ExtractElementInst>(U);
1334 if (!UI || UI->getParent() != LI->getParent())
1335 return false;
1336
1337 // Check if any instruction between the load and the extract may modify
1338 // memory.
1339 if (LastCheckedInst->comesBefore(UI)) {
1340 for (Instruction &I :
1341 make_range(std::next(LI->getIterator()), UI->getIterator())) {
1342 // Bail out if we reached the check limit or the instruction may write
1343 // to memory.
1344 if (NumInstChecked == MaxInstrsToScan || I.mayWriteToMemory())
1345 return false;
1346 NumInstChecked++;
1347 }
1348 LastCheckedInst = UI;
1349 }
1350
1351 auto ScalarIdx = canScalarizeAccess(VecTy, UI->getOperand(1), &I, AC, DT);
1352 if (ScalarIdx.isUnsafe())
1353 return false;
1354 if (ScalarIdx.isSafeWithFreeze()) {
1355 NeedFreeze.try_emplace(UI, ScalarIdx);
1356 ScalarIdx.discard();
1357 }
1358
1359 auto *Index = dyn_cast<ConstantInt>(UI->getOperand(1));
1361 OriginalCost +=
1362 TTI.getVectorInstrCost(Instruction::ExtractElement, VecTy, CostKind,
1363 Index ? Index->getZExtValue() : -1);
1364 ScalarizedCost +=
1365 TTI.getMemoryOpCost(Instruction::Load, VecTy->getElementType(),
1366 Align(1), LI->getPointerAddressSpace());
1367 ScalarizedCost += TTI.getAddressComputationCost(VecTy->getElementType());
1368 }
1369
1370 if (ScalarizedCost >= OriginalCost)
1371 return false;
1372
1373 // Replace extracts with narrow scalar loads.
1374 for (User *U : LI->users()) {
1375 auto *EI = cast<ExtractElementInst>(U);
1376 Value *Idx = EI->getOperand(1);
1377
1378 // Insert 'freeze' for poison indexes.
1379 auto It = NeedFreeze.find(EI);
1380 if (It != NeedFreeze.end())
1381 It->second.freeze(Builder, *cast<Instruction>(Idx));
1382
1383 Builder.SetInsertPoint(EI);
1384 Value *GEP =
1385 Builder.CreateInBoundsGEP(VecTy, Ptr, {Builder.getInt32(0), Idx});
1386 auto *NewLoad = cast<LoadInst>(Builder.CreateLoad(
1387 VecTy->getElementType(), GEP, EI->getName() + ".scalar"));
1388
1389 Align ScalarOpAlignment = computeAlignmentAfterScalarization(
1390 LI->getAlign(), VecTy->getElementType(), Idx, *DL);
1391 NewLoad->setAlignment(ScalarOpAlignment);
1392
1393 replaceValue(*EI, *NewLoad);
1394 }
1395
1396 FailureGuard.release();
1397 return true;
1398}
1399
1400/// Try to convert "shuffle (binop), (binop)" into "binop (shuffle), (shuffle)".
1401bool VectorCombine::foldShuffleOfBinops(Instruction &I) {
1402 BinaryOperator *B0, *B1;
1403 ArrayRef<int> OldMask;
1404 if (!match(&I, m_Shuffle(m_OneUse(m_BinOp(B0)), m_OneUse(m_BinOp(B1)),
1405 m_Mask(OldMask))))
1406 return false;
1407
1408 // Don't introduce poison into div/rem.
1409 if (any_of(OldMask, [](int M) { return M == PoisonMaskElem; }) &&
1410 B0->isIntDivRem())
1411 return false;
1412
1413 // TODO: Add support for addlike etc.
1414 Instruction::BinaryOps Opcode = B0->getOpcode();
1415 if (Opcode != B1->getOpcode())
1416 return false;
1417
1418 auto *ShuffleDstTy = dyn_cast<FixedVectorType>(I.getType());
1419 auto *BinOpTy = dyn_cast<FixedVectorType>(B0->getType());
1420 if (!ShuffleDstTy || !BinOpTy)
1421 return false;
1422
1423 unsigned NumSrcElts = BinOpTy->getNumElements();
1424
1425 // If we have something like "add X, Y" and "add Z, X", swap ops to match.
1426 Value *X = B0->getOperand(0), *Y = B0->getOperand(1);
1427 Value *Z = B1->getOperand(0), *W = B1->getOperand(1);
1428 if (BinaryOperator::isCommutative(Opcode) && X != Z && Y != W &&
1429 (X == W || Y == Z))
1430 std::swap(X, Y);
1431
1432 auto ConvertToUnary = [NumSrcElts](int &M) {
1433 if (M >= (int)NumSrcElts)
1434 M -= NumSrcElts;
1435 };
1436
1437 SmallVector<int> NewMask0(OldMask.begin(), OldMask.end());
1439 if (X == Z) {
1440 llvm::for_each(NewMask0, ConvertToUnary);
1442 Z = PoisonValue::get(BinOpTy);
1443 }
1444
1445 SmallVector<int> NewMask1(OldMask.begin(), OldMask.end());
1447 if (Y == W) {
1448 llvm::for_each(NewMask1, ConvertToUnary);
1450 W = PoisonValue::get(BinOpTy);
1451 }
1452
1453 // Try to replace a binop with a shuffle if the shuffle is not costly.
1455
1456 InstructionCost OldCost =
1457 TTI.getArithmeticInstrCost(B0->getOpcode(), BinOpTy, CostKind) +
1458 TTI.getArithmeticInstrCost(B1->getOpcode(), BinOpTy, CostKind) +
1460 OldMask, CostKind, 0, nullptr, {B0, B1}, &I);
1461
1462 InstructionCost NewCost =
1463 TTI.getShuffleCost(SK0, BinOpTy, NewMask0, CostKind, 0, nullptr, {X, Z}) +
1464 TTI.getShuffleCost(SK1, BinOpTy, NewMask1, CostKind, 0, nullptr, {Y, W}) +
1465 TTI.getArithmeticInstrCost(Opcode, ShuffleDstTy, CostKind);
1466
1467 LLVM_DEBUG(dbgs() << "Found a shuffle feeding two binops: " << I
1468 << "\n OldCost: " << OldCost << " vs NewCost: " << NewCost
1469 << "\n");
1470 if (NewCost >= OldCost)
1471 return false;
1472
1473 Value *Shuf0 = Builder.CreateShuffleVector(X, Z, NewMask0);
1474 Value *Shuf1 = Builder.CreateShuffleVector(Y, W, NewMask1);
1475 Value *NewBO = Builder.CreateBinOp(Opcode, Shuf0, Shuf1);
1476
1477 // Intersect flags from the old binops.
1478 if (auto *NewInst = dyn_cast<Instruction>(NewBO)) {
1479 NewInst->copyIRFlags(B0);
1480 NewInst->andIRFlags(B1);
1481 }
1482
1483 Worklist.pushValue(Shuf0);
1484 Worklist.pushValue(Shuf1);
1485 replaceValue(I, *NewBO);
1486 return true;
1487}
1488
1489/// Try to convert "shuffle (castop), (castop)" with a shared castop operand
1490/// into "castop (shuffle)".
1491bool VectorCombine::foldShuffleOfCastops(Instruction &I) {
1492 Value *V0, *V1;
1493 ArrayRef<int> OldMask;
1494 if (!match(&I, m_Shuffle(m_OneUse(m_Value(V0)), m_OneUse(m_Value(V1)),
1495 m_Mask(OldMask))))
1496 return false;
1497
1498 auto *C0 = dyn_cast<CastInst>(V0);
1499 auto *C1 = dyn_cast<CastInst>(V1);
1500 if (!C0 || !C1)
1501 return false;
1502
1503 Instruction::CastOps Opcode = C0->getOpcode();
1504 if (C0->getSrcTy() != C1->getSrcTy())
1505 return false;
1506
1507 // Handle shuffle(zext_nneg(x), sext(y)) -> sext(shuffle(x,y)) folds.
1508 if (Opcode != C1->getOpcode()) {
1509 if (match(C0, m_SExtLike(m_Value())) && match(C1, m_SExtLike(m_Value())))
1510 Opcode = Instruction::SExt;
1511 else
1512 return false;
1513 }
1514
1515 auto *ShuffleDstTy = dyn_cast<FixedVectorType>(I.getType());
1516 auto *CastDstTy = dyn_cast<FixedVectorType>(C0->getDestTy());
1517 auto *CastSrcTy = dyn_cast<FixedVectorType>(C0->getSrcTy());
1518 if (!ShuffleDstTy || !CastDstTy || !CastSrcTy)
1519 return false;
1520
1521 unsigned NumSrcElts = CastSrcTy->getNumElements();
1522 unsigned NumDstElts = CastDstTy->getNumElements();
1523 assert((NumDstElts == NumSrcElts || Opcode == Instruction::BitCast) &&
1524 "Only bitcasts expected to alter src/dst element counts");
1525
1526 // Check for bitcasting of unscalable vector types.
1527 // e.g. <32 x i40> -> <40 x i32>
1528 if (NumDstElts != NumSrcElts && (NumSrcElts % NumDstElts) != 0 &&
1529 (NumDstElts % NumSrcElts) != 0)
1530 return false;
1531
1532 SmallVector<int, 16> NewMask;
1533 if (NumSrcElts >= NumDstElts) {
1534 // The bitcast is from wide to narrow/equal elements. The shuffle mask can
1535 // always be expanded to the equivalent form choosing narrower elements.
1536 assert(NumSrcElts % NumDstElts == 0 && "Unexpected shuffle mask");
1537 unsigned ScaleFactor = NumSrcElts / NumDstElts;
1538 narrowShuffleMaskElts(ScaleFactor, OldMask, NewMask);
1539 } else {
1540 // The bitcast is from narrow elements to wide elements. The shuffle mask
1541 // must choose consecutive elements to allow casting first.
1542 assert(NumDstElts % NumSrcElts == 0 && "Unexpected shuffle mask");
1543 unsigned ScaleFactor = NumDstElts / NumSrcElts;
1544 if (!widenShuffleMaskElts(ScaleFactor, OldMask, NewMask))
1545 return false;
1546 }
1547
1548 auto *NewShuffleDstTy =
1549 FixedVectorType::get(CastSrcTy->getScalarType(), NewMask.size());
1550
1551 // Try to replace a castop with a shuffle if the shuffle is not costly.
1553
1554 InstructionCost OldCost =
1555 TTI.getCastInstrCost(C0->getOpcode(), CastDstTy, CastSrcTy,
1557 TTI.getCastInstrCost(C1->getOpcode(), CastDstTy, CastSrcTy,
1559 OldCost +=
1561 OldMask, CostKind, 0, nullptr, std::nullopt, &I);
1562
1564 TargetTransformInfo::SK_PermuteTwoSrc, CastSrcTy, NewMask, CostKind);
1565 NewCost += TTI.getCastInstrCost(Opcode, ShuffleDstTy, NewShuffleDstTy,
1567
1568 LLVM_DEBUG(dbgs() << "Found a shuffle feeding two casts: " << I
1569 << "\n OldCost: " << OldCost << " vs NewCost: " << NewCost
1570 << "\n");
1571 if (NewCost > OldCost)
1572 return false;
1573
1574 Value *Shuf = Builder.CreateShuffleVector(C0->getOperand(0),
1575 C1->getOperand(0), NewMask);
1576 Value *Cast = Builder.CreateCast(Opcode, Shuf, ShuffleDstTy);
1577
1578 // Intersect flags from the old casts.
1579 if (auto *NewInst = dyn_cast<Instruction>(Cast)) {
1580 NewInst->copyIRFlags(C0);
1581 NewInst->andIRFlags(C1);
1582 }
1583
1584 Worklist.pushValue(Shuf);
1585 replaceValue(I, *Cast);
1586 return true;
1587}
1588
1589/// Try to convert "shuffle (shuffle x, undef), (shuffle y, undef)"
1590/// into "shuffle x, y".
1591bool VectorCombine::foldShuffleOfShuffles(Instruction &I) {
1592 Value *V0, *V1;
1593 UndefValue *U0, *U1;
1594 ArrayRef<int> OuterMask, InnerMask0, InnerMask1;
1596 m_Mask(InnerMask0))),
1598 m_Mask(InnerMask1))),
1599 m_Mask(OuterMask))))
1600 return false;
1601
1602 auto *ShufI0 = dyn_cast<Instruction>(I.getOperand(0));
1603 auto *ShufI1 = dyn_cast<Instruction>(I.getOperand(1));
1604 auto *ShuffleDstTy = dyn_cast<FixedVectorType>(I.getType());
1605 auto *ShuffleSrcTy = dyn_cast<FixedVectorType>(V0->getType());
1606 auto *ShuffleImmTy = dyn_cast<FixedVectorType>(I.getOperand(0)->getType());
1607 if (!ShuffleDstTy || !ShuffleSrcTy || !ShuffleImmTy ||
1608 V0->getType() != V1->getType())
1609 return false;
1610
1611 unsigned NumSrcElts = ShuffleSrcTy->getNumElements();
1612 unsigned NumImmElts = ShuffleImmTy->getNumElements();
1613
1614 // Bail if either inner masks reference a RHS undef arg.
1615 if ((!isa<PoisonValue>(U0) &&
1616 any_of(InnerMask0, [&](int M) { return M >= (int)NumSrcElts; })) ||
1617 (!isa<PoisonValue>(U1) &&
1618 any_of(InnerMask1, [&](int M) { return M >= (int)NumSrcElts; })))
1619 return false;
1620
1621 // Merge shuffles - replace index to the RHS poison arg with PoisonMaskElem,
1622 SmallVector<int, 16> NewMask(OuterMask.begin(), OuterMask.end());
1623 for (int &M : NewMask) {
1624 if (0 <= M && M < (int)NumImmElts) {
1625 M = (InnerMask0[M] >= (int)NumSrcElts) ? PoisonMaskElem : InnerMask0[M];
1626 } else if (M >= (int)NumImmElts) {
1627 if (InnerMask1[M - NumImmElts] >= (int)NumSrcElts)
1628 M = PoisonMaskElem;
1629 else
1630 M = InnerMask1[M - NumImmElts] + (V0 == V1 ? 0 : NumSrcElts);
1631 }
1632 }
1633
1634 // Have we folded to an Identity shuffle?
1635 if (ShuffleVectorInst::isIdentityMask(NewMask, NumSrcElts)) {
1636 replaceValue(I, *V0);
1637 return true;
1638 }
1639
1640 // Try to merge the shuffles if the new shuffle is not costly.
1642
1643 InstructionCost OldCost =
1645 InnerMask0, CostKind, 0, nullptr, {V0, U0}, ShufI0) +
1647 InnerMask1, CostKind, 0, nullptr, {V1, U1}, ShufI1) +
1649 OuterMask, CostKind, 0, nullptr, {ShufI0, ShufI1}, &I);
1650
1651 InstructionCost NewCost =
1653 NewMask, CostKind, 0, nullptr, {V0, V1});
1654
1655 LLVM_DEBUG(dbgs() << "Found a shuffle feeding two shuffles: " << I
1656 << "\n OldCost: " << OldCost << " vs NewCost: " << NewCost
1657 << "\n");
1658 if (NewCost > OldCost)
1659 return false;
1660
1661 // Clear unused sources to poison.
1662 if (none_of(NewMask, [&](int M) { return 0 <= M && M < (int)NumSrcElts; }))
1663 V0 = PoisonValue::get(ShuffleSrcTy);
1664 if (none_of(NewMask, [&](int M) { return (int)NumSrcElts <= M; }))
1665 V1 = PoisonValue::get(ShuffleSrcTy);
1666
1667 Value *Shuf = Builder.CreateShuffleVector(V0, V1, NewMask);
1668 replaceValue(I, *Shuf);
1669 return true;
1670}
1671
1672using InstLane = std::pair<Use *, int>;
1673
1674static InstLane lookThroughShuffles(Use *U, int Lane) {
1675 while (auto *SV = dyn_cast<ShuffleVectorInst>(U->get())) {
1676 unsigned NumElts =
1677 cast<FixedVectorType>(SV->getOperand(0)->getType())->getNumElements();
1678 int M = SV->getMaskValue(Lane);
1679 if (M < 0)
1680 return {nullptr, PoisonMaskElem};
1681 if (static_cast<unsigned>(M) < NumElts) {
1682 U = &SV->getOperandUse(0);
1683 Lane = M;
1684 } else {
1685 U = &SV->getOperandUse(1);
1686 Lane = M - NumElts;
1687 }
1688 }
1689 return InstLane{U, Lane};
1690}
1691
1695 for (InstLane IL : Item) {
1696 auto [U, Lane] = IL;
1697 InstLane OpLane =
1698 U ? lookThroughShuffles(&cast<Instruction>(U->get())->getOperandUse(Op),
1699 Lane)
1700 : InstLane{nullptr, PoisonMaskElem};
1701 NItem.emplace_back(OpLane);
1702 }
1703 return NItem;
1704}
1705
1706/// Detect concat of multiple values into a vector
1708 const TargetTransformInfo &TTI) {
1709 auto *Ty = cast<FixedVectorType>(Item.front().first->get()->getType());
1710 unsigned NumElts = Ty->getNumElements();
1711 if (Item.size() == NumElts || NumElts == 1 || Item.size() % NumElts != 0)
1712 return false;
1713
1714 // Check that the concat is free, usually meaning that the type will be split
1715 // during legalization.
1716 SmallVector<int, 16> ConcatMask(NumElts * 2);
1717 std::iota(ConcatMask.begin(), ConcatMask.end(), 0);
1718 if (TTI.getShuffleCost(TTI::SK_PermuteTwoSrc, Ty, ConcatMask,
1720 return false;
1721
1722 unsigned NumSlices = Item.size() / NumElts;
1723 // Currently we generate a tree of shuffles for the concats, which limits us
1724 // to a power2.
1725 if (!isPowerOf2_32(NumSlices))
1726 return false;
1727 for (unsigned Slice = 0; Slice < NumSlices; ++Slice) {
1728 Use *SliceV = Item[Slice * NumElts].first;
1729 if (!SliceV || SliceV->get()->getType() != Ty)
1730 return false;
1731 for (unsigned Elt = 0; Elt < NumElts; ++Elt) {
1732 auto [V, Lane] = Item[Slice * NumElts + Elt];
1733 if (Lane != static_cast<int>(Elt) || SliceV->get() != V->get())
1734 return false;
1735 }
1736 }
1737 return true;
1738}
1739
1741 const SmallPtrSet<Use *, 4> &IdentityLeafs,
1742 const SmallPtrSet<Use *, 4> &SplatLeafs,
1743 const SmallPtrSet<Use *, 4> &ConcatLeafs,
1744 IRBuilder<> &Builder) {
1745 auto [FrontU, FrontLane] = Item.front();
1746
1747 if (IdentityLeafs.contains(FrontU)) {
1748 return FrontU->get();
1749 }
1750 if (SplatLeafs.contains(FrontU)) {
1751 SmallVector<int, 16> Mask(Ty->getNumElements(), FrontLane);
1752 return Builder.CreateShuffleVector(FrontU->get(), Mask);
1753 }
1754 if (ConcatLeafs.contains(FrontU)) {
1755 unsigned NumElts =
1756 cast<FixedVectorType>(FrontU->get()->getType())->getNumElements();
1757 SmallVector<Value *> Values(Item.size() / NumElts, nullptr);
1758 for (unsigned S = 0; S < Values.size(); ++S)
1759 Values[S] = Item[S * NumElts].first->get();
1760
1761 while (Values.size() > 1) {
1762 NumElts *= 2;
1763 SmallVector<int, 16> Mask(NumElts, 0);
1764 std::iota(Mask.begin(), Mask.end(), 0);
1765 SmallVector<Value *> NewValues(Values.size() / 2, nullptr);
1766 for (unsigned S = 0; S < NewValues.size(); ++S)
1767 NewValues[S] =
1768 Builder.CreateShuffleVector(Values[S * 2], Values[S * 2 + 1], Mask);
1769 Values = NewValues;
1770 }
1771 return Values[0];
1772 }
1773
1774 auto *I = cast<Instruction>(FrontU->get());
1775 auto *II = dyn_cast<IntrinsicInst>(I);
1776 unsigned NumOps = I->getNumOperands() - (II ? 1 : 0);
1777 SmallVector<Value *> Ops(NumOps);
1778 for (unsigned Idx = 0; Idx < NumOps; Idx++) {
1779 if (II && isVectorIntrinsicWithScalarOpAtArg(II->getIntrinsicID(), Idx)) {
1780 Ops[Idx] = II->getOperand(Idx);
1781 continue;
1782 }
1783 Ops[Idx] =
1785 IdentityLeafs, SplatLeafs, ConcatLeafs, Builder);
1786 }
1787
1788 SmallVector<Value *, 8> ValueList;
1789 for (const auto &Lane : Item)
1790 if (Lane.first)
1791 ValueList.push_back(Lane.first->get());
1792
1793 Type *DstTy =
1794 FixedVectorType::get(I->getType()->getScalarType(), Ty->getNumElements());
1795 if (auto *BI = dyn_cast<BinaryOperator>(I)) {
1796 auto *Value = Builder.CreateBinOp((Instruction::BinaryOps)BI->getOpcode(),
1797 Ops[0], Ops[1]);
1798 propagateIRFlags(Value, ValueList);
1799 return Value;
1800 }
1801 if (auto *CI = dyn_cast<CmpInst>(I)) {
1802 auto *Value = Builder.CreateCmp(CI->getPredicate(), Ops[0], Ops[1]);
1803 propagateIRFlags(Value, ValueList);
1804 return Value;
1805 }
1806 if (auto *SI = dyn_cast<SelectInst>(I)) {
1807 auto *Value = Builder.CreateSelect(Ops[0], Ops[1], Ops[2], "", SI);
1808 propagateIRFlags(Value, ValueList);
1809 return Value;
1810 }
1811 if (auto *CI = dyn_cast<CastInst>(I)) {
1812 auto *Value = Builder.CreateCast((Instruction::CastOps)CI->getOpcode(),
1813 Ops[0], DstTy);
1814 propagateIRFlags(Value, ValueList);
1815 return Value;
1816 }
1817 if (II) {
1818 auto *Value = Builder.CreateIntrinsic(DstTy, II->getIntrinsicID(), Ops);
1819 propagateIRFlags(Value, ValueList);
1820 return Value;
1821 }
1822 assert(isa<UnaryInstruction>(I) && "Unexpected instruction type in Generate");
1823 auto *Value =
1824 Builder.CreateUnOp((Instruction::UnaryOps)I->getOpcode(), Ops[0]);
1825 propagateIRFlags(Value, ValueList);
1826 return Value;
1827}
1828
1829// Starting from a shuffle, look up through operands tracking the shuffled index
1830// of each lane. If we can simplify away the shuffles to identities then
1831// do so.
1832bool VectorCombine::foldShuffleToIdentity(Instruction &I) {
1833 auto *Ty = dyn_cast<FixedVectorType>(I.getType());
1834 if (!Ty || I.use_empty())
1835 return false;
1836
1837 SmallVector<InstLane> Start(Ty->getNumElements());
1838 for (unsigned M = 0, E = Ty->getNumElements(); M < E; ++M)
1839 Start[M] = lookThroughShuffles(&*I.use_begin(), M);
1840
1842 Worklist.push_back(Start);
1843 SmallPtrSet<Use *, 4> IdentityLeafs, SplatLeafs, ConcatLeafs;
1844 unsigned NumVisited = 0;
1845
1846 while (!Worklist.empty()) {
1847 if (++NumVisited > MaxInstrsToScan)
1848 return false;
1849
1850 SmallVector<InstLane> Item = Worklist.pop_back_val();
1851 auto [FrontU, FrontLane] = Item.front();
1852
1853 // If we found an undef first lane then bail out to keep things simple.
1854 if (!FrontU)
1855 return false;
1856
1857 // Look for an identity value.
1858 if (FrontLane == 0 &&
1859 cast<FixedVectorType>(FrontU->get()->getType())->getNumElements() ==
1860 Ty->getNumElements() &&
1861 all_of(drop_begin(enumerate(Item)), [Item](const auto &E) {
1862 Value *FrontV = Item.front().first->get();
1863 return !E.value().first || (E.value().first->get() == FrontV &&
1864 E.value().second == (int)E.index());
1865 })) {
1866 IdentityLeafs.insert(FrontU);
1867 continue;
1868 }
1869 // Look for constants, for the moment only supporting constant splats.
1870 if (auto *C = dyn_cast<Constant>(FrontU);
1871 C && C->getSplatValue() &&
1872 all_of(drop_begin(Item), [Item](InstLane &IL) {
1873 Value *FrontV = Item.front().first->get();
1874 Use *U = IL.first;
1875 return !U || U->get() == FrontV;
1876 })) {
1877 SplatLeafs.insert(FrontU);
1878 continue;
1879 }
1880 // Look for a splat value.
1881 if (all_of(drop_begin(Item), [Item](InstLane &IL) {
1882 auto [FrontU, FrontLane] = Item.front();
1883 auto [U, Lane] = IL;
1884 return !U || (U->get() == FrontU->get() && Lane == FrontLane);
1885 })) {
1886 SplatLeafs.insert(FrontU);
1887 continue;
1888 }
1889
1890 // We need each element to be the same type of value, and check that each
1891 // element has a single use.
1892 if (all_of(drop_begin(Item), [Item](InstLane IL) {
1893 Value *FrontV = Item.front().first->get();
1894 if (!IL.first)
1895 return true;
1896 Value *V = IL.first->get();
1897 if (auto *I = dyn_cast<Instruction>(V); I && !I->hasOneUse())
1898 return false;
1899 if (V->getValueID() != FrontV->getValueID())
1900 return false;
1901 if (auto *CI = dyn_cast<CmpInst>(V))
1902 if (CI->getPredicate() != cast<CmpInst>(FrontV)->getPredicate())
1903 return false;
1904 if (auto *SI = dyn_cast<SelectInst>(V))
1905 if (!isa<VectorType>(SI->getOperand(0)->getType()) ||
1906 SI->getOperand(0)->getType() !=
1907 cast<SelectInst>(FrontV)->getOperand(0)->getType())
1908 return false;
1909 if (isa<CallInst>(V) && !isa<IntrinsicInst>(V))
1910 return false;
1911 auto *II = dyn_cast<IntrinsicInst>(V);
1912 return !II || (isa<IntrinsicInst>(FrontV) &&
1913 II->getIntrinsicID() ==
1914 cast<IntrinsicInst>(FrontV)->getIntrinsicID());
1915 })) {
1916 // Check the operator is one that we support.
1917 if (isa<BinaryOperator, CmpInst>(FrontU)) {
1918 // We exclude div/rem in case they hit UB from poison lanes.
1919 if (auto *BO = dyn_cast<BinaryOperator>(FrontU);
1920 BO && BO->isIntDivRem())
1921 return false;
1924 continue;
1925 } else if (isa<UnaryOperator, TruncInst, ZExtInst, SExtInst>(FrontU)) {
1927 continue;
1928 } else if (isa<SelectInst>(FrontU)) {
1932 continue;
1933 } else if (auto *II = dyn_cast<IntrinsicInst>(FrontU);
1934 II && isTriviallyVectorizable(II->getIntrinsicID())) {
1935 for (unsigned Op = 0, E = II->getNumOperands() - 1; Op < E; Op++) {
1936 if (isVectorIntrinsicWithScalarOpAtArg(II->getIntrinsicID(), Op)) {
1937 if (!all_of(drop_begin(Item), [Item, Op](InstLane &IL) {
1938 Value *FrontV = Item.front().first->get();
1939 Use *U = IL.first;
1940 return !U || (cast<Instruction>(U->get())->getOperand(Op) ==
1941 cast<Instruction>(FrontV)->getOperand(Op));
1942 }))
1943 return false;
1944 continue;
1945 }
1947 }
1948 continue;
1949 }
1950 }
1951
1952 if (isFreeConcat(Item, TTI)) {
1953 ConcatLeafs.insert(FrontU);
1954 continue;
1955 }
1956
1957 return false;
1958 }
1959
1960 if (NumVisited <= 1)
1961 return false;
1962
1963 // If we got this far, we know the shuffles are superfluous and can be
1964 // removed. Scan through again and generate the new tree of instructions.
1965 Builder.SetInsertPoint(&I);
1966 Value *V = generateNewInstTree(Start, Ty, IdentityLeafs, SplatLeafs,
1967 ConcatLeafs, Builder);
1968 replaceValue(I, *V);
1969 return true;
1970}
1971
1972/// Given a commutative reduction, the order of the input lanes does not alter
1973/// the results. We can use this to remove certain shuffles feeding the
1974/// reduction, removing the need to shuffle at all.
1975bool VectorCombine::foldShuffleFromReductions(Instruction &I) {
1976 auto *II = dyn_cast<IntrinsicInst>(&I);
1977 if (!II)
1978 return false;
1979 switch (II->getIntrinsicID()) {
1980 case Intrinsic::vector_reduce_add:
1981 case Intrinsic::vector_reduce_mul:
1982 case Intrinsic::vector_reduce_and:
1983 case Intrinsic::vector_reduce_or:
1984 case Intrinsic::vector_reduce_xor:
1985 case Intrinsic::vector_reduce_smin:
1986 case Intrinsic::vector_reduce_smax:
1987 case Intrinsic::vector_reduce_umin:
1988 case Intrinsic::vector_reduce_umax:
1989 break;
1990 default:
1991 return false;
1992 }
1993
1994 // Find all the inputs when looking through operations that do not alter the
1995 // lane order (binops, for example). Currently we look for a single shuffle,
1996 // and can ignore splat values.
1997 std::queue<Value *> Worklist;
1999 ShuffleVectorInst *Shuffle = nullptr;
2000 if (auto *Op = dyn_cast<Instruction>(I.getOperand(0)))
2001 Worklist.push(Op);
2002
2003 while (!Worklist.empty()) {
2004 Value *CV = Worklist.front();
2005 Worklist.pop();
2006 if (Visited.contains(CV))
2007 continue;
2008
2009 // Splats don't change the order, so can be safely ignored.
2010 if (isSplatValue(CV))
2011 continue;
2012
2013 Visited.insert(CV);
2014
2015 if (auto *CI = dyn_cast<Instruction>(CV)) {
2016 if (CI->isBinaryOp()) {
2017 for (auto *Op : CI->operand_values())
2018 Worklist.push(Op);
2019 continue;
2020 } else if (auto *SV = dyn_cast<ShuffleVectorInst>(CI)) {
2021 if (Shuffle && Shuffle != SV)
2022 return false;
2023 Shuffle = SV;
2024 continue;
2025 }
2026 }
2027
2028 // Anything else is currently an unknown node.
2029 return false;
2030 }
2031
2032 if (!Shuffle)
2033 return false;
2034
2035 // Check all uses of the binary ops and shuffles are also included in the
2036 // lane-invariant operations (Visited should be the list of lanewise
2037 // instructions, including the shuffle that we found).
2038 for (auto *V : Visited)
2039 for (auto *U : V->users())
2040 if (!Visited.contains(U) && U != &I)
2041 return false;
2042
2044 dyn_cast<FixedVectorType>(II->getOperand(0)->getType());
2045 if (!VecType)
2046 return false;
2047 FixedVectorType *ShuffleInputType =
2048 dyn_cast<FixedVectorType>(Shuffle->getOperand(0)->getType());
2049 if (!ShuffleInputType)
2050 return false;
2051 unsigned NumInputElts = ShuffleInputType->getNumElements();
2052
2053 // Find the mask from sorting the lanes into order. This is most likely to
2054 // become a identity or concat mask. Undef elements are pushed to the end.
2055 SmallVector<int> ConcatMask;
2056 Shuffle->getShuffleMask(ConcatMask);
2057 sort(ConcatMask, [](int X, int Y) { return (unsigned)X < (unsigned)Y; });
2058 // In the case of a truncating shuffle it's possible for the mask
2059 // to have an index greater than the size of the resulting vector.
2060 // This requires special handling.
2061 bool IsTruncatingShuffle = VecType->getNumElements() < NumInputElts;
2062 bool UsesSecondVec =
2063 any_of(ConcatMask, [&](int M) { return M >= (int)NumInputElts; });
2064
2065 FixedVectorType *VecTyForCost =
2066 (UsesSecondVec && !IsTruncatingShuffle) ? VecType : ShuffleInputType;
2069 VecTyForCost, Shuffle->getShuffleMask());
2072 VecTyForCost, ConcatMask);
2073
2074 LLVM_DEBUG(dbgs() << "Found a reduction feeding from a shuffle: " << *Shuffle
2075 << "\n");
2076 LLVM_DEBUG(dbgs() << " OldCost: " << OldCost << " vs NewCost: " << NewCost
2077 << "\n");
2078 if (NewCost < OldCost) {
2079 Builder.SetInsertPoint(Shuffle);
2080 Value *NewShuffle = Builder.CreateShuffleVector(
2081 Shuffle->getOperand(0), Shuffle->getOperand(1), ConcatMask);
2082 LLVM_DEBUG(dbgs() << "Created new shuffle: " << *NewShuffle << "\n");
2083 replaceValue(*Shuffle, *NewShuffle);
2084 }
2085
2086 // See if we can re-use foldSelectShuffle, getting it to reduce the size of
2087 // the shuffle into a nicer order, as it can ignore the order of the shuffles.
2088 return foldSelectShuffle(*Shuffle, true);
2089}
2090
2091/// Determine if its more efficient to fold:
2092/// reduce(trunc(x)) -> trunc(reduce(x)).
2093bool VectorCombine::foldTruncFromReductions(Instruction &I) {
2094 auto *II = dyn_cast<IntrinsicInst>(&I);
2095 if (!II)
2096 return false;
2097
2098 Intrinsic::ID IID = II->getIntrinsicID();
2099 switch (IID) {
2100 case Intrinsic::vector_reduce_add:
2101 case Intrinsic::vector_reduce_mul:
2102 case Intrinsic::vector_reduce_and:
2103 case Intrinsic::vector_reduce_or:
2104 case Intrinsic::vector_reduce_xor:
2105 break;
2106 default:
2107 return false;
2108 }
2109
2110 unsigned ReductionOpc = getArithmeticReductionInstruction(IID);
2111 Value *ReductionSrc = I.getOperand(0);
2112
2113 Value *TruncSrc;
2114 if (!match(ReductionSrc, m_OneUse(m_Trunc(m_Value(TruncSrc)))))
2115 return false;
2116
2117 auto *TruncSrcTy = cast<VectorType>(TruncSrc->getType());
2118 auto *ReductionSrcTy = cast<VectorType>(ReductionSrc->getType());
2119 Type *ResultTy = I.getType();
2120
2123 ReductionOpc, ReductionSrcTy, std::nullopt, CostKind);
2124 if (auto *Trunc = dyn_cast<CastInst>(ReductionSrc))
2125 OldCost +=
2126 TTI.getCastInstrCost(Instruction::Trunc, ReductionSrcTy, TruncSrcTy,
2128 InstructionCost NewCost =
2129 TTI.getArithmeticReductionCost(ReductionOpc, TruncSrcTy, std::nullopt,
2130 CostKind) +
2131 TTI.getCastInstrCost(Instruction::Trunc, ResultTy,
2132 ReductionSrcTy->getScalarType(),
2134
2135 if (OldCost <= NewCost || !NewCost.isValid())
2136 return false;
2137
2138 Value *NewReduction = Builder.CreateIntrinsic(
2139 TruncSrcTy->getScalarType(), II->getIntrinsicID(), {TruncSrc});
2140 Value *NewTruncation = Builder.CreateTrunc(NewReduction, ResultTy);
2141 replaceValue(I, *NewTruncation);
2142 return true;
2143}
2144
2145/// This method looks for groups of shuffles acting on binops, of the form:
2146/// %x = shuffle ...
2147/// %y = shuffle ...
2148/// %a = binop %x, %y
2149/// %b = binop %x, %y
2150/// shuffle %a, %b, selectmask
2151/// We may, especially if the shuffle is wider than legal, be able to convert
2152/// the shuffle to a form where only parts of a and b need to be computed. On
2153/// architectures with no obvious "select" shuffle, this can reduce the total
2154/// number of operations if the target reports them as cheaper.
2155bool VectorCombine::foldSelectShuffle(Instruction &I, bool FromReduction) {
2156 auto *SVI = cast<ShuffleVectorInst>(&I);
2157 auto *VT = cast<FixedVectorType>(I.getType());
2158 auto *Op0 = dyn_cast<Instruction>(SVI->getOperand(0));
2159 auto *Op1 = dyn_cast<Instruction>(SVI->getOperand(1));
2160 if (!Op0 || !Op1 || Op0 == Op1 || !Op0->isBinaryOp() || !Op1->isBinaryOp() ||
2161 VT != Op0->getType())
2162 return false;
2163
2164 auto *SVI0A = dyn_cast<Instruction>(Op0->getOperand(0));
2165 auto *SVI0B = dyn_cast<Instruction>(Op0->getOperand(1));
2166 auto *SVI1A = dyn_cast<Instruction>(Op1->getOperand(0));
2167 auto *SVI1B = dyn_cast<Instruction>(Op1->getOperand(1));
2168 SmallPtrSet<Instruction *, 4> InputShuffles({SVI0A, SVI0B, SVI1A, SVI1B});
2169 auto checkSVNonOpUses = [&](Instruction *I) {
2170 if (!I || I->getOperand(0)->getType() != VT)
2171 return true;
2172 return any_of(I->users(), [&](User *U) {
2173 return U != Op0 && U != Op1 &&
2174 !(isa<ShuffleVectorInst>(U) &&
2175 (InputShuffles.contains(cast<Instruction>(U)) ||
2176 isInstructionTriviallyDead(cast<Instruction>(U))));
2177 });
2178 };
2179 if (checkSVNonOpUses(SVI0A) || checkSVNonOpUses(SVI0B) ||
2180 checkSVNonOpUses(SVI1A) || checkSVNonOpUses(SVI1B))
2181 return false;
2182
2183 // Collect all the uses that are shuffles that we can transform together. We
2184 // may not have a single shuffle, but a group that can all be transformed
2185 // together profitably.
2187 auto collectShuffles = [&](Instruction *I) {
2188 for (auto *U : I->users()) {
2189 auto *SV = dyn_cast<ShuffleVectorInst>(U);
2190 if (!SV || SV->getType() != VT)
2191 return false;
2192 if ((SV->getOperand(0) != Op0 && SV->getOperand(0) != Op1) ||
2193 (SV->getOperand(1) != Op0 && SV->getOperand(1) != Op1))
2194 return false;
2195 if (!llvm::is_contained(Shuffles, SV))
2196 Shuffles.push_back(SV);
2197 }
2198 return true;
2199 };
2200 if (!collectShuffles(Op0) || !collectShuffles(Op1))
2201 return false;
2202 // From a reduction, we need to be processing a single shuffle, otherwise the
2203 // other uses will not be lane-invariant.
2204 if (FromReduction && Shuffles.size() > 1)
2205 return false;
2206
2207 // Add any shuffle uses for the shuffles we have found, to include them in our
2208 // cost calculations.
2209 if (!FromReduction) {
2210 for (ShuffleVectorInst *SV : Shuffles) {
2211 for (auto *U : SV->users()) {
2212 ShuffleVectorInst *SSV = dyn_cast<ShuffleVectorInst>(U);
2213 if (SSV && isa<UndefValue>(SSV->getOperand(1)) && SSV->getType() == VT)
2214 Shuffles.push_back(SSV);
2215 }
2216 }
2217 }
2218
2219 // For each of the output shuffles, we try to sort all the first vector
2220 // elements to the beginning, followed by the second array elements at the
2221 // end. If the binops are legalized to smaller vectors, this may reduce total
2222 // number of binops. We compute the ReconstructMask mask needed to convert
2223 // back to the original lane order.
2225 SmallVector<SmallVector<int>> OrigReconstructMasks;
2226 int MaxV1Elt = 0, MaxV2Elt = 0;
2227 unsigned NumElts = VT->getNumElements();
2228 for (ShuffleVectorInst *SVN : Shuffles) {
2230 SVN->getShuffleMask(Mask);
2231
2232 // Check the operands are the same as the original, or reversed (in which
2233 // case we need to commute the mask).
2234 Value *SVOp0 = SVN->getOperand(0);
2235 Value *SVOp1 = SVN->getOperand(1);
2236 if (isa<UndefValue>(SVOp1)) {
2237 auto *SSV = cast<ShuffleVectorInst>(SVOp0);
2238 SVOp0 = SSV->getOperand(0);
2239 SVOp1 = SSV->getOperand(1);
2240 for (unsigned I = 0, E = Mask.size(); I != E; I++) {
2241 if (Mask[I] >= static_cast<int>(SSV->getShuffleMask().size()))
2242 return false;
2243 Mask[I] = Mask[I] < 0 ? Mask[I] : SSV->getMaskValue(Mask[I]);
2244 }
2245 }
2246 if (SVOp0 == Op1 && SVOp1 == Op0) {
2247 std::swap(SVOp0, SVOp1);
2249 }
2250 if (SVOp0 != Op0 || SVOp1 != Op1)
2251 return false;
2252
2253 // Calculate the reconstruction mask for this shuffle, as the mask needed to
2254 // take the packed values from Op0/Op1 and reconstructing to the original
2255 // order.
2256 SmallVector<int> ReconstructMask;
2257 for (unsigned I = 0; I < Mask.size(); I++) {
2258 if (Mask[I] < 0) {
2259 ReconstructMask.push_back(-1);
2260 } else if (Mask[I] < static_cast<int>(NumElts)) {
2261 MaxV1Elt = std::max(MaxV1Elt, Mask[I]);
2262 auto It = find_if(V1, [&](const std::pair<int, int> &A) {
2263 return Mask[I] == A.first;
2264 });
2265 if (It != V1.end())
2266 ReconstructMask.push_back(It - V1.begin());
2267 else {
2268 ReconstructMask.push_back(V1.size());
2269 V1.emplace_back(Mask[I], V1.size());
2270 }
2271 } else {
2272 MaxV2Elt = std::max<int>(MaxV2Elt, Mask[I] - NumElts);
2273 auto It = find_if(V2, [&](const std::pair<int, int> &A) {
2274 return Mask[I] - static_cast<int>(NumElts) == A.first;
2275 });
2276 if (It != V2.end())
2277 ReconstructMask.push_back(NumElts + It - V2.begin());
2278 else {
2279 ReconstructMask.push_back(NumElts + V2.size());
2280 V2.emplace_back(Mask[I] - NumElts, NumElts + V2.size());
2281 }
2282 }
2283 }
2284
2285 // For reductions, we know that the lane ordering out doesn't alter the
2286 // result. In-order can help simplify the shuffle away.
2287 if (FromReduction)
2288 sort(ReconstructMask);
2289 OrigReconstructMasks.push_back(std::move(ReconstructMask));
2290 }
2291
2292 // If the Maximum element used from V1 and V2 are not larger than the new
2293 // vectors, the vectors are already packes and performing the optimization
2294 // again will likely not help any further. This also prevents us from getting
2295 // stuck in a cycle in case the costs do not also rule it out.
2296 if (V1.empty() || V2.empty() ||
2297 (MaxV1Elt == static_cast<int>(V1.size()) - 1 &&
2298 MaxV2Elt == static_cast<int>(V2.size()) - 1))
2299 return false;
2300
2301 // GetBaseMaskValue takes one of the inputs, which may either be a shuffle, a
2302 // shuffle of another shuffle, or not a shuffle (that is treated like a
2303 // identity shuffle).
2304 auto GetBaseMaskValue = [&](Instruction *I, int M) {
2305 auto *SV = dyn_cast<ShuffleVectorInst>(I);
2306 if (!SV)
2307 return M;
2308 if (isa<UndefValue>(SV->getOperand(1)))
2309 if (auto *SSV = dyn_cast<ShuffleVectorInst>(SV->getOperand(0)))
2310 if (InputShuffles.contains(SSV))
2311 return SSV->getMaskValue(SV->getMaskValue(M));
2312 return SV->getMaskValue(M);
2313 };
2314
2315 // Attempt to sort the inputs my ascending mask values to make simpler input
2316 // shuffles and push complex shuffles down to the uses. We sort on the first
2317 // of the two input shuffle orders, to try and get at least one input into a
2318 // nice order.
2319 auto SortBase = [&](Instruction *A, std::pair<int, int> X,
2320 std::pair<int, int> Y) {
2321 int MXA = GetBaseMaskValue(A, X.first);
2322 int MYA = GetBaseMaskValue(A, Y.first);
2323 return MXA < MYA;
2324 };
2325 stable_sort(V1, [&](std::pair<int, int> A, std::pair<int, int> B) {
2326 return SortBase(SVI0A, A, B);
2327 });
2328 stable_sort(V2, [&](std::pair<int, int> A, std::pair<int, int> B) {
2329 return SortBase(SVI1A, A, B);
2330 });
2331 // Calculate our ReconstructMasks from the OrigReconstructMasks and the
2332 // modified order of the input shuffles.
2333 SmallVector<SmallVector<int>> ReconstructMasks;
2334 for (const auto &Mask : OrigReconstructMasks) {
2335 SmallVector<int> ReconstructMask;
2336 for (int M : Mask) {
2337 auto FindIndex = [](const SmallVector<std::pair<int, int>> &V, int M) {
2338 auto It = find_if(V, [M](auto A) { return A.second == M; });
2339 assert(It != V.end() && "Expected all entries in Mask");
2340 return std::distance(V.begin(), It);
2341 };
2342 if (M < 0)
2343 ReconstructMask.push_back(-1);
2344 else if (M < static_cast<int>(NumElts)) {
2345 ReconstructMask.push_back(FindIndex(V1, M));
2346 } else {
2347 ReconstructMask.push_back(NumElts + FindIndex(V2, M));
2348 }
2349 }
2350 ReconstructMasks.push_back(std::move(ReconstructMask));
2351 }
2352
2353 // Calculate the masks needed for the new input shuffles, which get padded
2354 // with undef
2355 SmallVector<int> V1A, V1B, V2A, V2B;
2356 for (unsigned I = 0; I < V1.size(); I++) {
2357 V1A.push_back(GetBaseMaskValue(SVI0A, V1[I].first));
2358 V1B.push_back(GetBaseMaskValue(SVI0B, V1[I].first));
2359 }
2360 for (unsigned I = 0; I < V2.size(); I++) {
2361 V2A.push_back(GetBaseMaskValue(SVI1A, V2[I].first));
2362 V2B.push_back(GetBaseMaskValue(SVI1B, V2[I].first));
2363 }
2364 while (V1A.size() < NumElts) {
2367 }
2368 while (V2A.size() < NumElts) {
2371 }
2372
2373 auto AddShuffleCost = [&](InstructionCost C, Instruction *I) {
2374 auto *SV = dyn_cast<ShuffleVectorInst>(I);
2375 if (!SV)
2376 return C;
2377 return C + TTI.getShuffleCost(isa<UndefValue>(SV->getOperand(1))
2380 VT, SV->getShuffleMask());
2381 };
2382 auto AddShuffleMaskCost = [&](InstructionCost C, ArrayRef<int> Mask) {
2383 return C + TTI.getShuffleCost(TTI::SK_PermuteTwoSrc, VT, Mask);
2384 };
2385
2386 // Get the costs of the shuffles + binops before and after with the new
2387 // shuffle masks.
2388 InstructionCost CostBefore =
2389 TTI.getArithmeticInstrCost(Op0->getOpcode(), VT) +
2390 TTI.getArithmeticInstrCost(Op1->getOpcode(), VT);
2391 CostBefore += std::accumulate(Shuffles.begin(), Shuffles.end(),
2392 InstructionCost(0), AddShuffleCost);
2393 CostBefore += std::accumulate(InputShuffles.begin(), InputShuffles.end(),
2394 InstructionCost(0), AddShuffleCost);
2395
2396 // The new binops will be unused for lanes past the used shuffle lengths.
2397 // These types attempt to get the correct cost for that from the target.
2398 FixedVectorType *Op0SmallVT =
2399 FixedVectorType::get(VT->getScalarType(), V1.size());
2400 FixedVectorType *Op1SmallVT =
2401 FixedVectorType::get(VT->getScalarType(), V2.size());
2402 InstructionCost CostAfter =
2403 TTI.getArithmeticInstrCost(Op0->getOpcode(), Op0SmallVT) +
2404 TTI.getArithmeticInstrCost(Op1->getOpcode(), Op1SmallVT);
2405 CostAfter += std::accumulate(ReconstructMasks.begin(), ReconstructMasks.end(),
2406 InstructionCost(0), AddShuffleMaskCost);
2407 std::set<SmallVector<int>> OutputShuffleMasks({V1A, V1B, V2A, V2B});
2408 CostAfter +=
2409 std::accumulate(OutputShuffleMasks.begin(), OutputShuffleMasks.end(),
2410 InstructionCost(0), AddShuffleMaskCost);
2411
2412 LLVM_DEBUG(dbgs() << "Found a binop select shuffle pattern: " << I << "\n");
2413 LLVM_DEBUG(dbgs() << " CostBefore: " << CostBefore
2414 << " vs CostAfter: " << CostAfter << "\n");
2415 if (CostBefore <= CostAfter)
2416 return false;
2417
2418 // The cost model has passed, create the new instructions.
2419 auto GetShuffleOperand = [&](Instruction *I, unsigned Op) -> Value * {
2420 auto *SV = dyn_cast<ShuffleVectorInst>(I);
2421 if (!SV)
2422 return I;
2423 if (isa<UndefValue>(SV->getOperand(1)))
2424 if (auto *SSV = dyn_cast<ShuffleVectorInst>(SV->getOperand(0)))
2425 if (InputShuffles.contains(SSV))
2426 return SSV->getOperand(Op);
2427 return SV->getOperand(Op);
2428 };
2429 Builder.SetInsertPoint(*SVI0A->getInsertionPointAfterDef());
2430 Value *NSV0A = Builder.CreateShuffleVector(GetShuffleOperand(SVI0A, 0),
2431 GetShuffleOperand(SVI0A, 1), V1A);
2432 Builder.SetInsertPoint(*SVI0B->getInsertionPointAfterDef());
2433 Value *NSV0B = Builder.CreateShuffleVector(GetShuffleOperand(SVI0B, 0),
2434 GetShuffleOperand(SVI0B, 1), V1B);
2435 Builder.SetInsertPoint(*SVI1A->getInsertionPointAfterDef());
2436 Value *NSV1A = Builder.CreateShuffleVector(GetShuffleOperand(SVI1A, 0),
2437 GetShuffleOperand(SVI1A, 1), V2A);
2438 Builder.SetInsertPoint(*SVI1B->getInsertionPointAfterDef());
2439 Value *NSV1B = Builder.CreateShuffleVector(GetShuffleOperand(SVI1B, 0),
2440 GetShuffleOperand(SVI1B, 1), V2B);
2441 Builder.SetInsertPoint(Op0);
2442 Value *NOp0 = Builder.CreateBinOp((Instruction::BinaryOps)Op0->getOpcode(),
2443 NSV0A, NSV0B);
2444 if (auto *I = dyn_cast<Instruction>(NOp0))
2445 I->copyIRFlags(Op0, true);
2446 Builder.SetInsertPoint(Op1);
2447 Value *NOp1 = Builder.CreateBinOp((Instruction::BinaryOps)Op1->getOpcode(),
2448 NSV1A, NSV1B);
2449 if (auto *I = dyn_cast<Instruction>(NOp1))
2450 I->copyIRFlags(Op1, true);
2451
2452 for (int S = 0, E = ReconstructMasks.size(); S != E; S++) {
2453 Builder.SetInsertPoint(Shuffles[S]);
2454 Value *NSV = Builder.CreateShuffleVector(NOp0, NOp1, ReconstructMasks[S]);
2455 replaceValue(*Shuffles[S], *NSV);
2456 }
2457
2458 Worklist.pushValue(NSV0A);
2459 Worklist.pushValue(NSV0B);
2460 Worklist.pushValue(NSV1A);
2461 Worklist.pushValue(NSV1B);
2462 for (auto *S : Shuffles)
2463 Worklist.add(S);
2464 return true;
2465}
2466
2467/// This is the entry point for all transforms. Pass manager differences are
2468/// handled in the callers of this function.
2469bool VectorCombine::run() {
2471 return false;
2472
2473 // Don't attempt vectorization if the target does not support vectors.
2474 if (!TTI.getNumberOfRegisters(TTI.getRegisterClassForType(/*Vector*/ true)))
2475 return false;
2476
2477 bool MadeChange = false;
2478 auto FoldInst = [this, &MadeChange](Instruction &I) {
2479 Builder.SetInsertPoint(&I);
2480 bool IsFixedVectorType = isa<FixedVectorType>(I.getType());
2481 auto Opcode = I.getOpcode();
2482
2483 // These folds should be beneficial regardless of when this pass is run
2484 // in the optimization pipeline.
2485 // The type checking is for run-time efficiency. We can avoid wasting time
2486 // dispatching to folding functions if there's no chance of matching.
2487 if (IsFixedVectorType) {
2488 switch (Opcode) {
2489 case Instruction::InsertElement:
2490 MadeChange |= vectorizeLoadInsert(I);
2491 break;
2492 case Instruction::ShuffleVector:
2493 MadeChange |= widenSubvectorLoad(I);
2494 break;
2495 default:
2496 break;
2497 }
2498 }
2499
2500 // This transform works with scalable and fixed vectors
2501 // TODO: Identify and allow other scalable transforms
2502 if (isa<VectorType>(I.getType())) {
2503 MadeChange |= scalarizeBinopOrCmp(I);
2504 MadeChange |= scalarizeLoadExtract(I);
2505 MadeChange |= scalarizeVPIntrinsic(I);
2506 }
2507
2508 if (Opcode == Instruction::Store)
2509 MadeChange |= foldSingleElementStore(I);
2510
2511 // If this is an early pipeline invocation of this pass, we are done.
2512 if (TryEarlyFoldsOnly)
2513 return;
2514
2515 // Otherwise, try folds that improve codegen but may interfere with
2516 // early IR canonicalizations.
2517 // The type checking is for run-time efficiency. We can avoid wasting time
2518 // dispatching to folding functions if there's no chance of matching.
2519 if (IsFixedVectorType) {
2520 switch (Opcode) {
2521 case Instruction::InsertElement:
2522 MadeChange |= foldInsExtFNeg(I);
2523 break;
2524 case Instruction::ShuffleVector:
2525 MadeChange |= foldShuffleOfBinops(I);
2526 MadeChange |= foldShuffleOfCastops(I);
2527 MadeChange |= foldShuffleOfShuffles(I);
2528 MadeChange |= foldSelectShuffle(I);
2529 MadeChange |= foldShuffleToIdentity(I);
2530 break;
2531 case Instruction::BitCast:
2532 MadeChange |= foldBitcastShuffle(I);
2533 break;
2534 }
2535 } else {
2536 switch (Opcode) {
2537 case Instruction::Call:
2538 MadeChange |= foldShuffleFromReductions(I);
2539 MadeChange |= foldTruncFromReductions(I);
2540 break;
2541 case Instruction::ICmp:
2542 case Instruction::FCmp:
2543 MadeChange |= foldExtractExtract(I);
2544 break;
2545 default:
2546 if (Instruction::isBinaryOp(Opcode)) {
2547 MadeChange |= foldExtractExtract(I);
2548 MadeChange |= foldExtractedCmps(I);
2549 }
2550 break;
2551 }
2552 }
2553 };
2554
2555 for (BasicBlock &BB : F) {
2556 // Ignore unreachable basic blocks.
2557 if (!DT.isReachableFromEntry(&BB))
2558 continue;
2559 // Use early increment range so that we can erase instructions in loop.
2560 for (Instruction &I : make_early_inc_range(BB)) {
2561 if (I.isDebugOrPseudoInst())
2562 continue;
2563 FoldInst(I);
2564 }
2565 }
2566
2567 while (!Worklist.isEmpty()) {
2568 Instruction *I = Worklist.removeOne();
2569 if (!I)
2570 continue;
2571
2574 continue;
2575 }
2576
2577 FoldInst(*I);
2578 }
2579
2580 return MadeChange;
2581}
2582
2585 auto &AC = FAM.getResult<AssumptionAnalysis>(F);
2589 const DataLayout *DL = &F.getDataLayout();
2590 VectorCombine Combiner(F, TTI, DT, AA, AC, DL, TryEarlyFoldsOnly);
2591 if (!Combiner.run())
2592 return PreservedAnalyses::all();
2595 return PA;
2596}
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This is the interface for LLVM's primary stateless and local alias analysis.
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static cl::opt< TargetTransformInfo::TargetCostKind > CostKind("cost-kind", cl::desc("Target cost kind"), cl::init(TargetTransformInfo::TCK_RecipThroughput), cl::values(clEnumValN(TargetTransformInfo::TCK_RecipThroughput, "throughput", "Reciprocal throughput"), clEnumValN(TargetTransformInfo::TCK_Latency, "latency", "Instruction latency"), clEnumValN(TargetTransformInfo::TCK_CodeSize, "code-size", "Code size"), clEnumValN(TargetTransformInfo::TCK_SizeAndLatency, "size-latency", "Code size and latency")))
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
#define LLVM_DEBUG(X)
Definition: Debug.h:101
This file defines the DenseMap class.
std::optional< std::vector< StOtherPiece > > Other
Definition: ELFYAML.cpp:1293
bool End
Definition: ELF_riscv.cpp:480
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
This is the interface for a simple mod/ref and alias analysis over globals.
Hexagon Common GEP
static void eraseInstruction(Instruction &I, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU)
Definition: LICM.cpp:1500
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
uint64_t IntrinsicInst * II
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
if(VerifyEach)
FunctionAnalysisManager FAM
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
unsigned OpIndex
This file contains some templates that are useful if you are working with the STL at all.
This file defines the make_scope_exit function, which executes user-defined cleanup logic at scope ex...
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition: Statistic.h:167
static SymbolRef::Type getType(const Symbol *Sym)
Definition: TapiFile.cpp:40
This pass exposes codegen information to IR-level passes.
static std::optional< unsigned > getOpcode(ArrayRef< VPValue * > Values)
Returns the opcode of Values or ~0 if they do not all agree.
Definition: VPlanSLP.cpp:191
static SmallVector< InstLane > generateInstLaneVectorFromOperand(ArrayRef< InstLane > Item, int Op)
static Value * createShiftShuffle(Value *Vec, unsigned OldIndex, unsigned NewIndex, IRBuilder<> &Builder)
Create a shuffle that translates (shifts) 1 element from the input vector to a new element location.
static Value * peekThroughBitcasts(Value *V)
Return the source operand of a potentially bitcasted value.
static Align computeAlignmentAfterScalarization(Align VectorAlignment, Type *ScalarType, Value *Idx, const DataLayout &DL)
The memory operation on a vector of ScalarType had alignment of VectorAlignment.
static ScalarizationResult canScalarizeAccess(VectorType *VecTy, Value *Idx, Instruction *CtxI, AssumptionCache &AC, const DominatorTree &DT)
Check if it is legal to scalarize a memory access to VecTy at index Idx.
static cl::opt< bool > DisableVectorCombine("disable-vector-combine", cl::init(false), cl::Hidden, cl::desc("Disable all vector combine transforms"))
static InstLane lookThroughShuffles(Use *U, int Lane)
static bool canWidenLoad(LoadInst *Load, const TargetTransformInfo &TTI)
static bool isFreeConcat(ArrayRef< InstLane > Item, const TargetTransformInfo &TTI)
Detect concat of multiple values into a vector.
static Value * generateNewInstTree(ArrayRef< InstLane > Item, FixedVectorType *Ty, const SmallPtrSet< Use *, 4 > &IdentityLeafs, const SmallPtrSet< Use *, 4 > &SplatLeafs, const SmallPtrSet< Use *, 4 > &ConcatLeafs, IRBuilder<> &Builder)
static const unsigned InvalidIndex
std::pair< Use *, int > InstLane
static cl::opt< unsigned > MaxInstrsToScan("vector-combine-max-scan-instrs", cl::init(30), cl::Hidden, cl::desc("Max number of instructions to scan for vector combining."))
static cl::opt< bool > DisableBinopExtractShuffle("disable-binop-extract-shuffle", cl::init(false), cl::Hidden, cl::desc("Disable binop extract to shuffle transforms"))
static bool isMemModifiedBetween(BasicBlock::iterator Begin, BasicBlock::iterator End, const MemoryLocation &Loc, AAResults &AA)
static ExtractElementInst * translateExtract(ExtractElementInst *ExtElt, unsigned NewIndex, IRBuilder<> &Builder)
Given an extract element instruction with constant index operand, shuffle the source vector (shift th...
A manager for alias analyses.
ModRefInfo getModRefInfo(const Instruction *I, const std::optional< MemoryLocation > &OptLoc)
Check whether or not an instruction may read or write the optionally specified memory location.
Class for arbitrary precision integers.
Definition: APInt.h:77
static APInt getOneBitSet(unsigned numBits, unsigned BitNo)
Return an APInt with exactly one bit set in the result.
Definition: APInt.h:218
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:253
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:405
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
const T & front() const
front - Get the first element.
Definition: ArrayRef.h:168
iterator end() const
Definition: ArrayRef.h:154
size_t size() const
size - Get the array size.
Definition: ArrayRef.h:165
iterator begin() const
Definition: ArrayRef.h:153
A function analysis which provides an AssumptionCache.
A cache of @llvm.assume calls within a function.
bool hasFnAttr(Attribute::AttrKind Kind) const
Return true if the attribute exists for the function.
LLVM Basic Block Representation.
Definition: BasicBlock.h:61
InstListType::iterator iterator
Instruction iterators...
Definition: BasicBlock.h:167
BinaryOps getOpcode() const
Definition: InstrTypes.h:442
Represents analyses that only rely on functions' control flow.
Definition: Analysis.h:72
Value * getArgOperand(unsigned i) const
Definition: InstrTypes.h:1410
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
Definition: InstrTypes.h:1401
static Type * makeCmpResultType(Type *opnd_type)
Create a result type for fcmp/icmp.
Definition: InstrTypes.h:1104
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
Definition: InstrTypes.h:757
bool isFPPredicate() const
Definition: InstrTypes.h:864
Combiner implementation.
Definition: Combiner.h:34
static Constant * getExtractElement(Constant *Vec, Constant *Idx, Type *OnlyIfReducedTy=nullptr)
Definition: Constants.cpp:2478
This is the shared class of boolean and integer constants.
Definition: Constants.h:81
const APInt & getValue() const
Return the constant as an APInt value reference.
Definition: Constants.h:146
This class represents a range of values.
Definition: ConstantRange.h:47
ConstantRange urem(const ConstantRange &Other) const
Return a new range representing the possible values resulting from an unsigned remainder operation of...
ConstantRange binaryAnd(const ConstantRange &Other) const
Return a new range representing the possible values resulting from a binary-and of a value in this ra...
bool contains(const APInt &Val) const
Return true if the specified value is in the set.
static Constant * get(ArrayRef< Constant * > V)
Definition: Constants.cpp:1399
This is an important base class in LLVM.
Definition: Constant.h:41
This class represents an Operation in the Expression.
A parsed version of the target data layout string in and methods for querying it.
Definition: DataLayout.h:110
iterator find(const_arg_type_t< KeyT > Val)
Definition: DenseMap.h:155
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&... Args)
Definition: DenseMap.h:235
iterator end()
Definition: DenseMap.h:84
Analysis pass which computes a DominatorTree.
Definition: Dominators.h:279
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition: Dominators.h:162
bool isReachableFromEntry(const Use &U) const
Provide an overload for a Use.
Definition: Dominators.cpp:321
This instruction extracts a single (scalar) element from a VectorType value.
Class to represent fixed width SIMD vectors.
Definition: DerivedTypes.h:539
unsigned getNumElements() const
Definition: DerivedTypes.h:582
static FixedVectorType * get(Type *ElementType, unsigned NumElts)
Definition: Type.cpp:692
Value * CreateInsertElement(Type *VecTy, Value *NewElt, Value *Idx, const Twine &Name="")
Definition: IRBuilder.h:2470
Value * CreateExtractElement(Value *Vec, Value *Idx, const Twine &Name="")
Definition: IRBuilder.h:2458
LoadInst * CreateAlignedLoad(Type *Ty, Value *Ptr, MaybeAlign Align, const char *Name)
Definition: IRBuilder.h:1805
Value * CreateVectorSplat(unsigned NumElts, Value *V, const Twine &Name="")
Return a vector value that contains.
Definition: IRBuilder.cpp:1192
CallInst * CreateIntrinsic(Intrinsic::ID ID, ArrayRef< Type * > Types, ArrayRef< Value * > Args, Instruction *FMFSource=nullptr, const Twine &Name="")
Create a call to intrinsic ID with Args, mangled using Types.
Definition: IRBuilder.cpp:932
Value * CreateFNegFMF(Value *V, Instruction *FMFSource, const Twine &Name="")
Copy fast-math-flags from an instruction rather than using the builder's default FMF.
Definition: IRBuilder.h:1738
Value * CreateSelect(Value *C, Value *True, Value *False, const Twine &Name="", Instruction *MDFrom=nullptr)
Definition: IRBuilder.cpp:1090
Value * CreateFreeze(Value *V, const Twine &Name="")
Definition: IRBuilder.h:2533
Value * CreateInBoundsGEP(Type *Ty, Value *Ptr, ArrayRef< Value * > IdxList, const Twine &Name="")
Definition: IRBuilder.h:1872
Value * CreatePointerBitCastOrAddrSpaceCast(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2180
ConstantInt * getInt64(uint64_t C)
Get a constant 64-bit value.
Definition: IRBuilder.h:489
Value * CreateUnOp(Instruction::UnaryOps Opc, Value *V, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:1751
ConstantInt * getInt32(uint32_t C)
Get a constant 32-bit value.
Definition: IRBuilder.h:484
Value * CreateCmp(CmpInst::Predicate Pred, Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2364
Value * CreateBitCast(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2125
LoadInst * CreateLoad(Type *Ty, Value *Ptr, const char *Name)
Provided to resolve 'CreateLoad(Ty, Ptr, "...")' correctly, instead of converting the string to 'bool...
Definition: IRBuilder.h:1788
Value * CreateShuffleVector(Value *V1, Value *V2, Value *Mask, const Twine &Name="")
Definition: IRBuilder.h:2492
StoreInst * CreateStore(Value *Val, Value *Ptr, bool isVolatile=false)
Definition: IRBuilder.h:1801
Value * CreateTrunc(Value *V, Type *DestTy, const Twine &Name="", bool IsNUW=false, bool IsNSW=false)
Definition: IRBuilder.h:2005
PointerType * getPtrTy(unsigned AddrSpace=0)
Fetch the type representing a pointer.
Definition: IRBuilder.h:567
Value * CreateBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:1664
Value * CreateCast(Instruction::CastOps Op, Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2159
void SetInsertPoint(BasicBlock *TheBB)
This specifies that created instructions should be appended to the end of the specified block.
Definition: IRBuilder.h:178
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition: IRBuilder.h:2664
InstructionWorklist - This is the worklist management logic for InstCombine and other simplification ...
void pushUsersToWorkList(Instruction &I)
When an instruction is simplified, add all users of the instruction to the work lists because they mi...
void push(Instruction *I)
Push the instruction onto the worklist stack.
void remove(Instruction *I)
Remove I from the worklist if it exists.
bool isBinaryOp() const
Definition: Instruction.h:279
bool comesBefore(const Instruction *Other) const
Given an instruction Other in the same basic block as this instruction, return true if this instructi...
bool mayReadFromMemory() const LLVM_READONLY
Return true if this instruction may read memory.
void copyMetadata(const Instruction &SrcInst, ArrayRef< unsigned > WL=ArrayRef< unsigned >())
Copy metadata from SrcInst to this instruction.
bool isIntDivRem() const
Definition: Instruction.h:280
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
Definition: IntrinsicInst.h:55
An instruction for reading from memory.
Definition: Instructions.h:173
Representation for a specific memory location.
static MemoryLocation get(const LoadInst *LI)
Return a location with information about the memory reference by the given instruction.
static PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Definition: Constants.cpp:1814
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:111
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:117
void preserveSet()
Mark an analysis set as preserved.
Definition: Analysis.h:146
This instruction constructs a fixed permutation of two input vectors.
int getMaskValue(unsigned Elt) const
Return the shuffle mask value of this instruction for the given element index.
VectorType * getType() const
Overload to return most specific vector type.
static void getShuffleMask(const Constant *Mask, SmallVectorImpl< int > &Result)
Convert the input shuffle mask operand to a vector of integers.
static bool isIdentityMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask chooses elements from exactly one source vector without lane crossin...
static void commuteShuffleMask(MutableArrayRef< int > Mask, unsigned InVecNumElts)
Change values in a shuffle permute mask assuming the two vector operands of length InVecNumElts have ...
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
Definition: SmallPtrSet.h:344
bool contains(ConstPtrType Ptr) const
Definition: SmallPtrSet.h:418
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
Definition: SmallPtrSet.h:479
bool empty() const
Definition: SmallVector.h:94
size_t size() const
Definition: SmallVector.h:91
reference emplace_back(ArgTypes &&... Args)
Definition: SmallVector.h:950
void push_back(const T &Elt)
Definition: SmallVector.h:426
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
An instruction for storing to memory.
Definition: Instructions.h:289
void setAlignment(Align Align)
Definition: Instructions.h:332
Analysis pass providing the TargetTransformInfo.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
InstructionCost getAddressComputationCost(Type *Ty, ScalarEvolution *SE=nullptr, const SCEV *Ptr=nullptr) const
InstructionCost getMemoryOpCost(unsigned Opcode, Type *Src, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind=TTI::TCK_RecipThroughput, OperandValueInfo OpdInfo={OK_AnyValue, OP_None}, const Instruction *I=nullptr) const
InstructionCost getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA, TTI::TargetCostKind CostKind) const
InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind=TTI::TCK_RecipThroughput) const
Calculate the cost of vector reduction intrinsics.
InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, TTI::CastContextHint CCH, TTI::TargetCostKind CostKind=TTI::TCK_SizeAndLatency, const Instruction *I=nullptr) const
InstructionCost getArithmeticInstrCost(unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind=TTI::TCK_RecipThroughput, TTI::OperandValueInfo Opd1Info={TTI::OK_AnyValue, TTI::OP_None}, TTI::OperandValueInfo Opd2Info={TTI::OK_AnyValue, TTI::OP_None}, ArrayRef< const Value * > Args=std::nullopt, const Instruction *CxtI=nullptr, const TargetLibraryInfo *TLibInfo=nullptr) const
This is an approximation of reciprocal throughput of a math/logic op.
unsigned getRegisterClassForType(bool Vector, Type *Ty=nullptr) const
TargetCostKind
The kind of cost model.
@ TCK_RecipThroughput
Reciprocal throughput.
unsigned getMinVectorRegisterBitWidth() const
unsigned getNumberOfRegisters(unsigned ClassID) const
InstructionCost getShuffleCost(ShuffleKind Kind, VectorType *Tp, ArrayRef< int > Mask=std::nullopt, TTI::TargetCostKind CostKind=TTI::TCK_RecipThroughput, int Index=0, VectorType *SubTp=nullptr, ArrayRef< const Value * > Args=std::nullopt, const Instruction *CxtI=nullptr) const
InstructionCost getScalarizationOverhead(VectorType *Ty, const APInt &DemandedElts, bool Insert, bool Extract, TTI::TargetCostKind CostKind) const
Estimate the overhead of scalarizing an instruction.
InstructionCost getVectorInstrCost(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index=-1, Value *Op0=nullptr, Value *Op1=nullptr) const
ShuffleKind
The various kinds of shuffle patterns for vector queries.
@ SK_Select
Selects elements from the corresponding lane of either source operand.
@ SK_PermuteSingleSrc
Shuffle elements of single source vector with any shuffle mask.
@ SK_Broadcast
Broadcast element 0 to all other elements.
@ SK_PermuteTwoSrc
Merge elements from two source vectors into one with any shuffle mask.
@ None
The cast is not used with a load/store of any kind.
InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, CmpInst::Predicate VecPred, TTI::TargetCostKind CostKind=TTI::TCK_RecipThroughput, const Instruction *I=nullptr) const
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
bool isVectorTy() const
True if this is an instance of VectorType.
Definition: Type.h:265
bool isPointerTy() const
True if this is an instance of PointerType.
Definition: Type.h:255
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
Definition: Type.h:185
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition: Type.h:228
TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
Definition: Type.h:348
'undef' values are things that do not have specified contents.
Definition: Constants.h:1385
A Use represents the edge between a Value definition and its users.
Definition: Use.h:43
op_range operands()
Definition: User.h:242
Value * getOperand(unsigned i) const
Definition: User.h:169
static bool isVPBinOp(Intrinsic::ID ID)
This is the common base class for vector predication intrinsics.
std::optional< unsigned > getFunctionalIntrinsicID() const
std::optional< unsigned > getFunctionalOpcode() const
LLVM Value Representation.
Definition: Value.h:74
Type * getType() const
All values are typed, get the type of this value.
Definition: Value.h:255
const Value * stripAndAccumulateInBoundsConstantOffsets(const DataLayout &DL, APInt &Offset) const
This is a wrapper around stripAndAccumulateConstantOffsets with the in-bounds requirement set to fals...
Definition: Value.h:736
bool hasOneUse() const
Return true if there is exactly one use of this value.
Definition: Value.h:434
void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
Definition: Value.cpp:534
iterator_range< user_iterator > users()
Definition: Value.h:421
Align getPointerAlignment(const DataLayout &DL) const
Returns an alignment of the pointer value.
Definition: Value.cpp:926
unsigned getValueID() const
Return an ID for the concrete type of this object.
Definition: Value.h:532
bool hasNUses(unsigned N) const
Return true if this Value has exactly N uses.
Definition: Value.cpp:149
StringRef getName() const
Return a constant reference to the value's name.
Definition: Value.cpp:309
PreservedAnalyses run(Function &F, FunctionAnalysisManager &)
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
Definition: BitmaskEnum.h:121
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
AttributeList getAttributes(LLVMContext &C, ID id)
Return the attributes for an intrinsic.
BinaryOp_match< LHS, RHS, Instruction::And > m_And(const LHS &L, const RHS &R)
class_match< BinaryOperator > m_BinOp()
Match an arbitrary binary operation and ignore it.
Definition: PatternMatch.h:100
BinaryOp_match< LHS, RHS, Instruction::URem > m_URem(const LHS &L, const RHS &R)
class_match< Constant > m_Constant()
Match an arbitrary Constant and ignore it.
Definition: PatternMatch.h:165
CastInst_match< OpTy, TruncInst > m_Trunc(const OpTy &Op)
Matches Trunc.
specific_intval< false > m_SpecificInt(const APInt &V)
Match a specific integer value or vector with all elements equal to the value.
Definition: PatternMatch.h:972
bool match(Val *V, const Pattern &P)
Definition: PatternMatch.h:49
bind_ty< Instruction > m_Instruction(Instruction *&I)
Match an instruction, capturing it if we match.
Definition: PatternMatch.h:816
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
Definition: PatternMatch.h:875
TwoOps_match< Val_t, Idx_t, Instruction::ExtractElement > m_ExtractElt(const Val_t &Val, const Idx_t &Idx)
Matches ExtractElementInst.
class_match< ConstantInt > m_ConstantInt()
Match an arbitrary ConstantInt and ignore it.
Definition: PatternMatch.h:168
ThreeOps_match< Cond, LHS, RHS, Instruction::Select > m_Select(const Cond &C, const LHS &L, const RHS &R)
Matches SelectInst.
match_combine_and< LTy, RTy > m_CombineAnd(const LTy &L, const RTy &R)
Combine two pattern matchers matching L && R.
Definition: PatternMatch.h:245
cst_pred_ty< is_zero_int > m_ZeroInt()
Match an integer 0 or a vector with all elements equal to 0.
Definition: PatternMatch.h:599
OneUse_match< T > m_OneUse(const T &SubPattern)
Definition: PatternMatch.h:67
TwoOps_match< V1_t, V2_t, Instruction::ShuffleVector > m_Shuffle(const V1_t &v1, const V2_t &v2)
Matches ShuffleVectorInst independently of mask value.
OneOps_match< OpTy, Instruction::Load > m_Load(const OpTy &Op)
Matches LoadInst.
class_match< UndefValue > m_UndefValue()
Match an arbitrary UndefValue constant.
Definition: PatternMatch.h:155
class_match< CmpInst > m_Cmp()
Matches any compare instruction and ignore it.
Definition: PatternMatch.h:105
CastOperator_match< OpTy, Instruction::BitCast > m_BitCast(const OpTy &Op)
Matches BitCast.
match_combine_or< CastInst_match< OpTy, SExtInst >, NNegZExt_match< OpTy > > m_SExtLike(const OpTy &Op)
Match either "sext" or "zext nneg".
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
Definition: PatternMatch.h:92
FNeg_match< OpTy > m_FNeg(const OpTy &X)
Match 'fneg X' as 'fsub -0.0, X'.
auto m_Undef()
Match an arbitrary undef constant.
Definition: PatternMatch.h:152
ThreeOps_match< Val_t, Elt_t, Idx_t, Instruction::InsertElement > m_InsertElt(const Val_t &Val, const Elt_t &Elt, const Idx_t &Idx)
Matches InsertElementInst.
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:443
PointerTypeMap run(const Module &M)
Compute the PointerTypeMap for the module M.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
Definition: STLExtras.h:329
@ Offset
Definition: DWP.cpp:480
void stable_sort(R &&Range)
Definition: STLExtras.h:1995
UnaryFunction for_each(R &&Range, UnaryFunction F)
Provide wrappers to std::for_each which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1715
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1722
bool isSafeToLoadUnconditionally(Value *V, Align Alignment, const APInt &Size, const DataLayout &DL, Instruction *ScanFrom=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr)
Return true if we know that executing a load from this value cannot trap.
Definition: Loads.cpp:352
detail::scope_exit< std::decay_t< Callable > > make_scope_exit(Callable &&F)
Definition: ScopeExit.h:59
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are are tuples (A,...
Definition: STLExtras.h:2400
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
unsigned getArithmeticReductionInstruction(Intrinsic::ID RdxID)
Returns the arithmetic instruction opcode used when expanding a reduction.
Definition: LoopUtils.cpp:921
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
Definition: STLExtras.h:656
bool mustSuppressSpeculation(const LoadInst &LI)
Return true if speculation of the given load must be suppressed to avoid ordering or interfering with...
bool widenShuffleMaskElts(int Scale, ArrayRef< int > Mask, SmallVectorImpl< int > &ScaledMask)
Try to transform a shuffle mask by replacing elements with the scaled index for an equivalent mask of...
Value * getSplatValue(const Value *V)
Get splat value if the input is a splat vector or return nullptr.
ConstantRange computeConstantRange(const Value *V, bool ForSigned, bool UseInstrInfo=true, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Determine the possible constant range of an integer or vector of integer value.
bool isSafeToSpeculativelyExecuteWithOpcode(unsigned Opcode, const Instruction *Inst, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr)
This returns the same result as isSafeToSpeculativelyExecute if Opcode is the actual opcode of Inst.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1729
bool isInstructionTriviallyDead(Instruction *I, const TargetLibraryInfo *TLI=nullptr)
Return true if the result produced by the instruction is not used, and the instruction will return.
Definition: Local.cpp:400
bool isSplatValue(const Value *V, int Index=-1, unsigned Depth=0)
Return true if each element of the vector value V is poisoned or equal to every other non-poisoned el...
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Definition: MathExtras.h:275
bool isModSet(const ModRefInfo MRI)
Definition: ModRef.h:48
void sort(IteratorTy Start, IteratorTy End)
Definition: STLExtras.h:1647
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1736
void propagateIRFlags(Value *I, ArrayRef< Value * > VL, Value *OpValue=nullptr, bool IncludeWrapFlags=true)
Get the intersection (logical and) of all of the potential IR flags of each scalar operation (VL) tha...
Definition: LoopUtils.cpp:1223
bool isKnownNonZero(const Value *V, const SimplifyQuery &Q, unsigned Depth=0)
Return true if the given value is known to be non-zero when defined.
constexpr int PoisonMaskElem
void narrowShuffleMaskElts(int Scale, ArrayRef< int > Mask, SmallVectorImpl< int > &ScaledMask)
Replace each shuffle mask index with the scaled sequential indices for an equivalent mask of narrowed...
DWARFExpression::Operation Op
bool isSafeToSpeculativelyExecute(const Instruction *I, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr)
Return true if the instruction does not have any effects besides calculating the result and does not ...
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1749
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition: STLExtras.h:1879
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
Definition: Alignment.h:212
bool isVectorIntrinsicWithScalarOpAtArg(Intrinsic::ID ID, unsigned ScalarOpdIdx)
Identifies if the vector form of the intrinsic has a scalar operand.
bool isGuaranteedNotToBePoison(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Returns true if V cannot be poison, but may be undef.
bool isTriviallyVectorizable(Intrinsic::ID ID)
Identify if the intrinsic is trivially vectorizable.
Definition: VectorUtils.cpp:46
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition: BitVector.h:860
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39