1 //===- SLPVectorizer.cpp - A bottom up SLP Vectorizer ---------------------===//
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 implements the Bottom Up SLP vectorizer. It detects consecutive
10 // stores that can be put together into vector-stores. Next, it attempts to
11 // construct vectorizable tree using the use-def chains. If a profitable tree
12 // was found, the SLP vectorizer performs vectorization on the tree.
13 //
14 // The pass is inspired by the work described in the paper:
15 //  "Loop-Aware SLP in GCC" by Ira Rosen, Dorit Nuzman, Ayal Zaks.
16 //
17 //===----------------------------------------------------------------------===//
18 
19 #include "llvm/Transforms/Vectorize/SLPVectorizer.h"
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/ADT/DenseSet.h"
22 #include "llvm/ADT/Optional.h"
23 #include "llvm/ADT/PostOrderIterator.h"
24 #include "llvm/ADT/STLExtras.h"
25 #include "llvm/ADT/SetOperations.h"
26 #include "llvm/ADT/SetVector.h"
27 #include "llvm/ADT/SmallBitVector.h"
28 #include "llvm/ADT/SmallPtrSet.h"
29 #include "llvm/ADT/SmallSet.h"
30 #include "llvm/ADT/SmallString.h"
31 #include "llvm/ADT/Statistic.h"
32 #include "llvm/ADT/iterator.h"
33 #include "llvm/ADT/iterator_range.h"
34 #include "llvm/Analysis/AliasAnalysis.h"
35 #include "llvm/Analysis/AssumptionCache.h"
36 #include "llvm/Analysis/CodeMetrics.h"
37 #include "llvm/Analysis/DemandedBits.h"
38 #include "llvm/Analysis/GlobalsModRef.h"
39 #include "llvm/Analysis/IVDescriptors.h"
40 #include "llvm/Analysis/LoopAccessAnalysis.h"
41 #include "llvm/Analysis/LoopInfo.h"
42 #include "llvm/Analysis/MemoryLocation.h"
43 #include "llvm/Analysis/OptimizationRemarkEmitter.h"
44 #include "llvm/Analysis/ScalarEvolution.h"
45 #include "llvm/Analysis/ScalarEvolutionExpressions.h"
46 #include "llvm/Analysis/TargetLibraryInfo.h"
47 #include "llvm/Analysis/TargetTransformInfo.h"
48 #include "llvm/Analysis/ValueTracking.h"
49 #include "llvm/Analysis/VectorUtils.h"
50 #include "llvm/IR/Attributes.h"
51 #include "llvm/IR/BasicBlock.h"
52 #include "llvm/IR/Constant.h"
53 #include "llvm/IR/Constants.h"
54 #include "llvm/IR/DataLayout.h"
55 #include "llvm/IR/DebugLoc.h"
56 #include "llvm/IR/DerivedTypes.h"
57 #include "llvm/IR/Dominators.h"
58 #include "llvm/IR/Function.h"
59 #include "llvm/IR/IRBuilder.h"
60 #include "llvm/IR/InstrTypes.h"
61 #include "llvm/IR/Instruction.h"
62 #include "llvm/IR/Instructions.h"
63 #include "llvm/IR/IntrinsicInst.h"
64 #include "llvm/IR/Intrinsics.h"
65 #include "llvm/IR/Module.h"
66 #include "llvm/IR/NoFolder.h"
67 #include "llvm/IR/Operator.h"
68 #include "llvm/IR/PatternMatch.h"
69 #include "llvm/IR/Type.h"
70 #include "llvm/IR/Use.h"
71 #include "llvm/IR/User.h"
72 #include "llvm/IR/Value.h"
73 #include "llvm/IR/ValueHandle.h"
74 #include "llvm/IR/Verifier.h"
75 #include "llvm/InitializePasses.h"
76 #include "llvm/Pass.h"
77 #include "llvm/Support/Casting.h"
78 #include "llvm/Support/CommandLine.h"
79 #include "llvm/Support/Compiler.h"
80 #include "llvm/Support/DOTGraphTraits.h"
81 #include "llvm/Support/Debug.h"
82 #include "llvm/Support/ErrorHandling.h"
83 #include "llvm/Support/GraphWriter.h"
84 #include "llvm/Support/InstructionCost.h"
85 #include "llvm/Support/KnownBits.h"
86 #include "llvm/Support/MathExtras.h"
87 #include "llvm/Support/raw_ostream.h"
88 #include "llvm/Transforms/Utils/InjectTLIMappings.h"
89 #include "llvm/Transforms/Utils/LoopUtils.h"
90 #include "llvm/Transforms/Vectorize.h"
91 #include <algorithm>
92 #include <cassert>
93 #include <cstdint>
94 #include <iterator>
95 #include <memory>
96 #include <set>
97 #include <string>
98 #include <tuple>
99 #include <utility>
100 #include <vector>
101 
102 using namespace llvm;
103 using namespace llvm::PatternMatch;
104 using namespace slpvectorizer;
105 
106 #define SV_NAME "slp-vectorizer"
107 #define DEBUG_TYPE "SLP"
108 
109 STATISTIC(NumVectorInstructions, "Number of vector instructions generated");
110 
111 cl::opt<bool> RunSLPVectorization("vectorize-slp", cl::init(true), cl::Hidden,
112                                   cl::desc("Run the SLP vectorization passes"));
113 
114 static cl::opt<int>
115     SLPCostThreshold("slp-threshold", cl::init(0), cl::Hidden,
116                      cl::desc("Only vectorize if you gain more than this "
117                               "number "));
118 
119 static cl::opt<bool>
120 ShouldVectorizeHor("slp-vectorize-hor", cl::init(true), cl::Hidden,
121                    cl::desc("Attempt to vectorize horizontal reductions"));
122 
123 static cl::opt<bool> ShouldStartVectorizeHorAtStore(
124     "slp-vectorize-hor-store", cl::init(false), cl::Hidden,
125     cl::desc(
126         "Attempt to vectorize horizontal reductions feeding into a store"));
127 
128 static cl::opt<int>
129 MaxVectorRegSizeOption("slp-max-reg-size", cl::init(128), cl::Hidden,
130     cl::desc("Attempt to vectorize for this register size in bits"));
131 
132 static cl::opt<unsigned>
133 MaxVFOption("slp-max-vf", cl::init(0), cl::Hidden,
134     cl::desc("Maximum SLP vectorization factor (0=unlimited)"));
135 
136 static cl::opt<int>
137 MaxStoreLookup("slp-max-store-lookup", cl::init(32), cl::Hidden,
138     cl::desc("Maximum depth of the lookup for consecutive stores."));
139 
140 /// Limits the size of scheduling regions in a block.
141 /// It avoid long compile times for _very_ large blocks where vector
142 /// instructions are spread over a wide range.
143 /// This limit is way higher than needed by real-world functions.
144 static cl::opt<int>
145 ScheduleRegionSizeBudget("slp-schedule-budget", cl::init(100000), cl::Hidden,
146     cl::desc("Limit the size of the SLP scheduling region per block"));
147 
148 static cl::opt<int> MinVectorRegSizeOption(
149     "slp-min-reg-size", cl::init(128), cl::Hidden,
150     cl::desc("Attempt to vectorize for this register size in bits"));
151 
152 static cl::opt<unsigned> RecursionMaxDepth(
153     "slp-recursion-max-depth", cl::init(12), cl::Hidden,
154     cl::desc("Limit the recursion depth when building a vectorizable tree"));
155 
156 static cl::opt<unsigned> MinTreeSize(
157     "slp-min-tree-size", cl::init(3), cl::Hidden,
158     cl::desc("Only vectorize small trees if they are fully vectorizable"));
159 
160 // The maximum depth that the look-ahead score heuristic will explore.
161 // The higher this value, the higher the compilation time overhead.
162 static cl::opt<int> LookAheadMaxDepth(
163     "slp-max-look-ahead-depth", cl::init(2), cl::Hidden,
164     cl::desc("The maximum look-ahead depth for operand reordering scores"));
165 
166 // The Look-ahead heuristic goes through the users of the bundle to calculate
167 // the users cost in getExternalUsesCost(). To avoid compilation time increase
168 // we limit the number of users visited to this value.
169 static cl::opt<unsigned> LookAheadUsersBudget(
170     "slp-look-ahead-users-budget", cl::init(2), cl::Hidden,
171     cl::desc("The maximum number of users to visit while visiting the "
172              "predecessors. This prevents compilation time increase."));
173 
174 static cl::opt<bool>
175     ViewSLPTree("view-slp-tree", cl::Hidden,
176                 cl::desc("Display the SLP trees with Graphviz"));
177 
178 // Limit the number of alias checks. The limit is chosen so that
179 // it has no negative effect on the llvm benchmarks.
180 static const unsigned AliasedCheckLimit = 10;
181 
182 // Another limit for the alias checks: The maximum distance between load/store
183 // instructions where alias checks are done.
184 // This limit is useful for very large basic blocks.
185 static const unsigned MaxMemDepDistance = 160;
186 
187 /// If the ScheduleRegionSizeBudget is exhausted, we allow small scheduling
188 /// regions to be handled.
189 static const int MinScheduleRegionSize = 16;
190 
191 /// Predicate for the element types that the SLP vectorizer supports.
192 ///
193 /// The most important thing to filter here are types which are invalid in LLVM
194 /// vectors. We also filter target specific types which have absolutely no
195 /// meaningful vectorization path such as x86_fp80 and ppc_f128. This just
196 /// avoids spending time checking the cost model and realizing that they will
197 /// be inevitably scalarized.
198 static bool isValidElementType(Type *Ty) {
199   return VectorType::isValidElementType(Ty) && !Ty->isX86_FP80Ty() &&
200          !Ty->isPPC_FP128Ty();
201 }
202 
203 /// \returns true if all of the instructions in \p VL are in the same block or
204 /// false otherwise.
205 static bool allSameBlock(ArrayRef<Value *> VL) {
206   Instruction *I0 = dyn_cast<Instruction>(VL[0]);
207   if (!I0)
208     return false;
209   BasicBlock *BB = I0->getParent();
210   for (int I = 1, E = VL.size(); I < E; I++) {
211     auto *II = dyn_cast<Instruction>(VL[I]);
212     if (!II)
213       return false;
214 
215     if (BB != II->getParent())
216       return false;
217   }
218   return true;
219 }
220 
221 /// \returns True if the value is a constant (but not globals/constant
222 /// expressions).
223 static bool isConstant(Value *V) {
224   return isa<Constant>(V) && !isa<ConstantExpr>(V) && !isa<GlobalValue>(V);
225 }
226 
227 /// \returns True if all of the values in \p VL are constants (but not
228 /// globals/constant expressions).
229 static bool allConstant(ArrayRef<Value *> VL) {
230   // Constant expressions and globals can't be vectorized like normal integer/FP
231   // constants.
232   return all_of(VL, isConstant);
233 }
234 
235 /// \returns True if all of the values in \p VL are identical.
236 static bool isSplat(ArrayRef<Value *> VL) {
237   for (unsigned i = 1, e = VL.size(); i < e; ++i)
238     if (VL[i] != VL[0])
239       return false;
240   return true;
241 }
242 
243 /// \returns True if \p I is commutative, handles CmpInst and BinaryOperator.
244 static bool isCommutative(Instruction *I) {
245   if (auto *Cmp = dyn_cast<CmpInst>(I))
246     return Cmp->isCommutative();
247   if (auto *BO = dyn_cast<BinaryOperator>(I))
248     return BO->isCommutative();
249   // TODO: This should check for generic Instruction::isCommutative(), but
250   //       we need to confirm that the caller code correctly handles Intrinsics
251   //       for example (does not have 2 operands).
252   return false;
253 }
254 
255 /// Checks if the vector of instructions can be represented as a shuffle, like:
256 /// %x0 = extractelement <4 x i8> %x, i32 0
257 /// %x3 = extractelement <4 x i8> %x, i32 3
258 /// %y1 = extractelement <4 x i8> %y, i32 1
259 /// %y2 = extractelement <4 x i8> %y, i32 2
260 /// %x0x0 = mul i8 %x0, %x0
261 /// %x3x3 = mul i8 %x3, %x3
262 /// %y1y1 = mul i8 %y1, %y1
263 /// %y2y2 = mul i8 %y2, %y2
264 /// %ins1 = insertelement <4 x i8> poison, i8 %x0x0, i32 0
265 /// %ins2 = insertelement <4 x i8> %ins1, i8 %x3x3, i32 1
266 /// %ins3 = insertelement <4 x i8> %ins2, i8 %y1y1, i32 2
267 /// %ins4 = insertelement <4 x i8> %ins3, i8 %y2y2, i32 3
268 /// ret <4 x i8> %ins4
269 /// can be transformed into:
270 /// %1 = shufflevector <4 x i8> %x, <4 x i8> %y, <4 x i32> <i32 0, i32 3, i32 5,
271 ///                                                         i32 6>
272 /// %2 = mul <4 x i8> %1, %1
273 /// ret <4 x i8> %2
274 /// We convert this initially to something like:
275 /// %x0 = extractelement <4 x i8> %x, i32 0
276 /// %x3 = extractelement <4 x i8> %x, i32 3
277 /// %y1 = extractelement <4 x i8> %y, i32 1
278 /// %y2 = extractelement <4 x i8> %y, i32 2
279 /// %1 = insertelement <4 x i8> poison, i8 %x0, i32 0
280 /// %2 = insertelement <4 x i8> %1, i8 %x3, i32 1
281 /// %3 = insertelement <4 x i8> %2, i8 %y1, i32 2
282 /// %4 = insertelement <4 x i8> %3, i8 %y2, i32 3
283 /// %5 = mul <4 x i8> %4, %4
284 /// %6 = extractelement <4 x i8> %5, i32 0
285 /// %ins1 = insertelement <4 x i8> poison, i8 %6, i32 0
286 /// %7 = extractelement <4 x i8> %5, i32 1
287 /// %ins2 = insertelement <4 x i8> %ins1, i8 %7, i32 1
288 /// %8 = extractelement <4 x i8> %5, i32 2
289 /// %ins3 = insertelement <4 x i8> %ins2, i8 %8, i32 2
290 /// %9 = extractelement <4 x i8> %5, i32 3
291 /// %ins4 = insertelement <4 x i8> %ins3, i8 %9, i32 3
292 /// ret <4 x i8> %ins4
293 /// InstCombiner transforms this into a shuffle and vector mul
294 /// Mask will return the Shuffle Mask equivalent to the extracted elements.
295 /// TODO: Can we split off and reuse the shuffle mask detection from
296 /// TargetTransformInfo::getInstructionThroughput?
297 static Optional<TargetTransformInfo::ShuffleKind>
298 isShuffle(ArrayRef<Value *> VL, SmallVectorImpl<int> &Mask) {
299   auto *EI0 = cast<ExtractElementInst>(VL[0]);
300   unsigned Size =
301       cast<FixedVectorType>(EI0->getVectorOperandType())->getNumElements();
302   Value *Vec1 = nullptr;
303   Value *Vec2 = nullptr;
304   enum ShuffleMode { Unknown, Select, Permute };
305   ShuffleMode CommonShuffleMode = Unknown;
306   for (unsigned I = 0, E = VL.size(); I < E; ++I) {
307     auto *EI = cast<ExtractElementInst>(VL[I]);
308     auto *Vec = EI->getVectorOperand();
309     // All vector operands must have the same number of vector elements.
310     if (cast<FixedVectorType>(Vec->getType())->getNumElements() != Size)
311       return None;
312     auto *Idx = dyn_cast<ConstantInt>(EI->getIndexOperand());
313     if (!Idx)
314       return None;
315     // Undefined behavior if Idx is negative or >= Size.
316     if (Idx->getValue().uge(Size)) {
317       Mask.push_back(UndefMaskElem);
318       continue;
319     }
320     unsigned IntIdx = Idx->getValue().getZExtValue();
321     Mask.push_back(IntIdx);
322     // We can extractelement from undef or poison vector.
323     if (isa<UndefValue>(Vec))
324       continue;
325     // For correct shuffling we have to have at most 2 different vector operands
326     // in all extractelement instructions.
327     if (!Vec1 || Vec1 == Vec)
328       Vec1 = Vec;
329     else if (!Vec2 || Vec2 == Vec)
330       Vec2 = Vec;
331     else
332       return None;
333     if (CommonShuffleMode == Permute)
334       continue;
335     // If the extract index is not the same as the operation number, it is a
336     // permutation.
337     if (IntIdx != I) {
338       CommonShuffleMode = Permute;
339       continue;
340     }
341     CommonShuffleMode = Select;
342   }
343   // If we're not crossing lanes in different vectors, consider it as blending.
344   if (CommonShuffleMode == Select && Vec2)
345     return TargetTransformInfo::SK_Select;
346   // If Vec2 was never used, we have a permutation of a single vector, otherwise
347   // we have permutation of 2 vectors.
348   return Vec2 ? TargetTransformInfo::SK_PermuteTwoSrc
349               : TargetTransformInfo::SK_PermuteSingleSrc;
350 }
351 
352 namespace {
353 
354 /// Main data required for vectorization of instructions.
355 struct InstructionsState {
356   /// The very first instruction in the list with the main opcode.
357   Value *OpValue = nullptr;
358 
359   /// The main/alternate instruction.
360   Instruction *MainOp = nullptr;
361   Instruction *AltOp = nullptr;
362 
363   /// The main/alternate opcodes for the list of instructions.
364   unsigned getOpcode() const {
365     return MainOp ? MainOp->getOpcode() : 0;
366   }
367 
368   unsigned getAltOpcode() const {
369     return AltOp ? AltOp->getOpcode() : 0;
370   }
371 
372   /// Some of the instructions in the list have alternate opcodes.
373   bool isAltShuffle() const { return getOpcode() != getAltOpcode(); }
374 
375   bool isOpcodeOrAlt(Instruction *I) const {
376     unsigned CheckedOpcode = I->getOpcode();
377     return getOpcode() == CheckedOpcode || getAltOpcode() == CheckedOpcode;
378   }
379 
380   InstructionsState() = delete;
381   InstructionsState(Value *OpValue, Instruction *MainOp, Instruction *AltOp)
382       : OpValue(OpValue), MainOp(MainOp), AltOp(AltOp) {}
383 };
384 
385 } // end anonymous namespace
386 
387 /// Chooses the correct key for scheduling data. If \p Op has the same (or
388 /// alternate) opcode as \p OpValue, the key is \p Op. Otherwise the key is \p
389 /// OpValue.
390 static Value *isOneOf(const InstructionsState &S, Value *Op) {
391   auto *I = dyn_cast<Instruction>(Op);
392   if (I && S.isOpcodeOrAlt(I))
393     return Op;
394   return S.OpValue;
395 }
396 
397 /// \returns true if \p Opcode is allowed as part of of the main/alternate
398 /// instruction for SLP vectorization.
399 ///
400 /// Example of unsupported opcode is SDIV that can potentially cause UB if the
401 /// "shuffled out" lane would result in division by zero.
402 static bool isValidForAlternation(unsigned Opcode) {
403   if (Instruction::isIntDivRem(Opcode))
404     return false;
405 
406   return true;
407 }
408 
409 /// \returns analysis of the Instructions in \p VL described in
410 /// InstructionsState, the Opcode that we suppose the whole list
411 /// could be vectorized even if its structure is diverse.
412 static InstructionsState getSameOpcode(ArrayRef<Value *> VL,
413                                        unsigned BaseIndex = 0) {
414   // Make sure these are all Instructions.
415   if (llvm::any_of(VL, [](Value *V) { return !isa<Instruction>(V); }))
416     return InstructionsState(VL[BaseIndex], nullptr, nullptr);
417 
418   bool IsCastOp = isa<CastInst>(VL[BaseIndex]);
419   bool IsBinOp = isa<BinaryOperator>(VL[BaseIndex]);
420   unsigned Opcode = cast<Instruction>(VL[BaseIndex])->getOpcode();
421   unsigned AltOpcode = Opcode;
422   unsigned AltIndex = BaseIndex;
423 
424   // Check for one alternate opcode from another BinaryOperator.
425   // TODO - generalize to support all operators (types, calls etc.).
426   for (int Cnt = 0, E = VL.size(); Cnt < E; Cnt++) {
427     unsigned InstOpcode = cast<Instruction>(VL[Cnt])->getOpcode();
428     if (IsBinOp && isa<BinaryOperator>(VL[Cnt])) {
429       if (InstOpcode == Opcode || InstOpcode == AltOpcode)
430         continue;
431       if (Opcode == AltOpcode && isValidForAlternation(InstOpcode) &&
432           isValidForAlternation(Opcode)) {
433         AltOpcode = InstOpcode;
434         AltIndex = Cnt;
435         continue;
436       }
437     } else if (IsCastOp && isa<CastInst>(VL[Cnt])) {
438       Type *Ty0 = cast<Instruction>(VL[BaseIndex])->getOperand(0)->getType();
439       Type *Ty1 = cast<Instruction>(VL[Cnt])->getOperand(0)->getType();
440       if (Ty0 == Ty1) {
441         if (InstOpcode == Opcode || InstOpcode == AltOpcode)
442           continue;
443         if (Opcode == AltOpcode) {
444           assert(isValidForAlternation(Opcode) &&
445                  isValidForAlternation(InstOpcode) &&
446                  "Cast isn't safe for alternation, logic needs to be updated!");
447           AltOpcode = InstOpcode;
448           AltIndex = Cnt;
449           continue;
450         }
451       }
452     } else if (InstOpcode == Opcode || InstOpcode == AltOpcode)
453       continue;
454     return InstructionsState(VL[BaseIndex], nullptr, nullptr);
455   }
456 
457   return InstructionsState(VL[BaseIndex], cast<Instruction>(VL[BaseIndex]),
458                            cast<Instruction>(VL[AltIndex]));
459 }
460 
461 /// \returns true if all of the values in \p VL have the same type or false
462 /// otherwise.
463 static bool allSameType(ArrayRef<Value *> VL) {
464   Type *Ty = VL[0]->getType();
465   for (int i = 1, e = VL.size(); i < e; i++)
466     if (VL[i]->getType() != Ty)
467       return false;
468 
469   return true;
470 }
471 
472 /// \returns True if Extract{Value,Element} instruction extracts element Idx.
473 static Optional<unsigned> getExtractIndex(Instruction *E) {
474   unsigned Opcode = E->getOpcode();
475   assert((Opcode == Instruction::ExtractElement ||
476           Opcode == Instruction::ExtractValue) &&
477          "Expected extractelement or extractvalue instruction.");
478   if (Opcode == Instruction::ExtractElement) {
479     auto *CI = dyn_cast<ConstantInt>(E->getOperand(1));
480     if (!CI)
481       return None;
482     return CI->getZExtValue();
483   }
484   ExtractValueInst *EI = cast<ExtractValueInst>(E);
485   if (EI->getNumIndices() != 1)
486     return None;
487   return *EI->idx_begin();
488 }
489 
490 /// \returns True if in-tree use also needs extract. This refers to
491 /// possible scalar operand in vectorized instruction.
492 static bool InTreeUserNeedToExtract(Value *Scalar, Instruction *UserInst,
493                                     TargetLibraryInfo *TLI) {
494   unsigned Opcode = UserInst->getOpcode();
495   switch (Opcode) {
496   case Instruction::Load: {
497     LoadInst *LI = cast<LoadInst>(UserInst);
498     return (LI->getPointerOperand() == Scalar);
499   }
500   case Instruction::Store: {
501     StoreInst *SI = cast<StoreInst>(UserInst);
502     return (SI->getPointerOperand() == Scalar);
503   }
504   case Instruction::Call: {
505     CallInst *CI = cast<CallInst>(UserInst);
506     Intrinsic::ID ID = getVectorIntrinsicIDForCall(CI, TLI);
507     for (unsigned i = 0, e = CI->getNumArgOperands(); i != e; ++i) {
508       if (hasVectorInstrinsicScalarOpd(ID, i))
509         return (CI->getArgOperand(i) == Scalar);
510     }
511     LLVM_FALLTHROUGH;
512   }
513   default:
514     return false;
515   }
516 }
517 
518 /// \returns the AA location that is being access by the instruction.
519 static MemoryLocation getLocation(Instruction *I, AAResults *AA) {
520   if (StoreInst *SI = dyn_cast<StoreInst>(I))
521     return MemoryLocation::get(SI);
522   if (LoadInst *LI = dyn_cast<LoadInst>(I))
523     return MemoryLocation::get(LI);
524   return MemoryLocation();
525 }
526 
527 /// \returns True if the instruction is not a volatile or atomic load/store.
528 static bool isSimple(Instruction *I) {
529   if (LoadInst *LI = dyn_cast<LoadInst>(I))
530     return LI->isSimple();
531   if (StoreInst *SI = dyn_cast<StoreInst>(I))
532     return SI->isSimple();
533   if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I))
534     return !MI->isVolatile();
535   return true;
536 }
537 
538 namespace llvm {
539 
540 static void inversePermutation(ArrayRef<unsigned> Indices,
541                                SmallVectorImpl<int> &Mask) {
542   Mask.clear();
543   const unsigned E = Indices.size();
544   Mask.resize(E, E + 1);
545   for (unsigned I = 0; I < E; ++I)
546     Mask[Indices[I]] = I;
547 }
548 
549 /// \returns inserting index of InsertElement or InsertValue instruction,
550 /// using Offset as base offset for index.
551 static Optional<int> getInsertIndex(Value *InsertInst, unsigned Offset) {
552   int Index = Offset;
553   if (auto *IE = dyn_cast<InsertElementInst>(InsertInst)) {
554     if (auto *CI = dyn_cast<ConstantInt>(IE->getOperand(2))) {
555       auto *VT = cast<FixedVectorType>(IE->getType());
556       if (CI->getValue().uge(VT->getNumElements()))
557         return UndefMaskElem;
558       Index *= VT->getNumElements();
559       Index += CI->getZExtValue();
560       return Index;
561     }
562     if (isa<UndefValue>(IE->getOperand(2)))
563       return UndefMaskElem;
564     return None;
565   }
566 
567   auto *IV = cast<InsertValueInst>(InsertInst);
568   Type *CurrentType = IV->getType();
569   for (unsigned I : IV->indices()) {
570     if (auto *ST = dyn_cast<StructType>(CurrentType)) {
571       Index *= ST->getNumElements();
572       CurrentType = ST->getElementType(I);
573     } else if (auto *AT = dyn_cast<ArrayType>(CurrentType)) {
574       Index *= AT->getNumElements();
575       CurrentType = AT->getElementType();
576     } else {
577       return None;
578     }
579     Index += I;
580   }
581   return Index;
582 }
583 
584 namespace slpvectorizer {
585 
586 /// Bottom Up SLP Vectorizer.
587 class BoUpSLP {
588   struct TreeEntry;
589   struct ScheduleData;
590 
591 public:
592   using ValueList = SmallVector<Value *, 8>;
593   using InstrList = SmallVector<Instruction *, 16>;
594   using ValueSet = SmallPtrSet<Value *, 16>;
595   using StoreList = SmallVector<StoreInst *, 8>;
596   using ExtraValueToDebugLocsMap =
597       MapVector<Value *, SmallVector<Instruction *, 2>>;
598   using OrdersType = SmallVector<unsigned, 4>;
599 
600   BoUpSLP(Function *Func, ScalarEvolution *Se, TargetTransformInfo *Tti,
601           TargetLibraryInfo *TLi, AAResults *Aa, LoopInfo *Li,
602           DominatorTree *Dt, AssumptionCache *AC, DemandedBits *DB,
603           const DataLayout *DL, OptimizationRemarkEmitter *ORE)
604       : F(Func), SE(Se), TTI(Tti), TLI(TLi), AA(Aa), LI(Li), DT(Dt), AC(AC),
605         DB(DB), DL(DL), ORE(ORE), Builder(Se->getContext()) {
606     CodeMetrics::collectEphemeralValues(F, AC, EphValues);
607     // Use the vector register size specified by the target unless overridden
608     // by a command-line option.
609     // TODO: It would be better to limit the vectorization factor based on
610     //       data type rather than just register size. For example, x86 AVX has
611     //       256-bit registers, but it does not support integer operations
612     //       at that width (that requires AVX2).
613     if (MaxVectorRegSizeOption.getNumOccurrences())
614       MaxVecRegSize = MaxVectorRegSizeOption;
615     else
616       MaxVecRegSize =
617           TTI->getRegisterBitWidth(TargetTransformInfo::RGK_FixedWidthVector)
618               .getFixedSize();
619 
620     if (MinVectorRegSizeOption.getNumOccurrences())
621       MinVecRegSize = MinVectorRegSizeOption;
622     else
623       MinVecRegSize = TTI->getMinVectorRegisterBitWidth();
624   }
625 
626   /// Vectorize the tree that starts with the elements in \p VL.
627   /// Returns the vectorized root.
628   Value *vectorizeTree();
629 
630   /// Vectorize the tree but with the list of externally used values \p
631   /// ExternallyUsedValues. Values in this MapVector can be replaced but the
632   /// generated extractvalue instructions.
633   Value *vectorizeTree(ExtraValueToDebugLocsMap &ExternallyUsedValues);
634 
635   /// \returns the cost incurred by unwanted spills and fills, caused by
636   /// holding live values over call sites.
637   InstructionCost getSpillCost() const;
638 
639   /// \returns the vectorization cost of the subtree that starts at \p VL.
640   /// A negative number means that this is profitable.
641   InstructionCost getTreeCost(ArrayRef<Value *> VectorizedVals = None);
642 
643   /// Construct a vectorizable tree that starts at \p Roots, ignoring users for
644   /// the purpose of scheduling and extraction in the \p UserIgnoreLst.
645   void buildTree(ArrayRef<Value *> Roots,
646                  ArrayRef<Value *> UserIgnoreLst = None);
647 
648   /// Construct a vectorizable tree that starts at \p Roots, ignoring users for
649   /// the purpose of scheduling and extraction in the \p UserIgnoreLst taking
650   /// into account (and updating it, if required) list of externally used
651   /// values stored in \p ExternallyUsedValues.
652   void buildTree(ArrayRef<Value *> Roots,
653                  ExtraValueToDebugLocsMap &ExternallyUsedValues,
654                  ArrayRef<Value *> UserIgnoreLst = None);
655 
656   /// Clear the internal data structures that are created by 'buildTree'.
657   void deleteTree() {
658     VectorizableTree.clear();
659     ScalarToTreeEntry.clear();
660     MustGather.clear();
661     ExternalUses.clear();
662     NumOpsWantToKeepOrder.clear();
663     NumOpsWantToKeepOriginalOrder = 0;
664     for (auto &Iter : BlocksSchedules) {
665       BlockScheduling *BS = Iter.second.get();
666       BS->clear();
667     }
668     MinBWs.clear();
669     InstrElementSize.clear();
670   }
671 
672   unsigned getTreeSize() const { return VectorizableTree.size(); }
673 
674   /// Perform LICM and CSE on the newly generated gather sequences.
675   void optimizeGatherSequence();
676 
677   /// \returns The best order of instructions for vectorization.
678   Optional<ArrayRef<unsigned>> bestOrder() const {
679     assert(llvm::all_of(
680                NumOpsWantToKeepOrder,
681                [this](const decltype(NumOpsWantToKeepOrder)::value_type &D) {
682                  return D.getFirst().size() ==
683                         VectorizableTree[0]->Scalars.size();
684                }) &&
685            "All orders must have the same size as number of instructions in "
686            "tree node.");
687     auto I = std::max_element(
688         NumOpsWantToKeepOrder.begin(), NumOpsWantToKeepOrder.end(),
689         [](const decltype(NumOpsWantToKeepOrder)::value_type &D1,
690            const decltype(NumOpsWantToKeepOrder)::value_type &D2) {
691           return D1.second < D2.second;
692         });
693     if (I == NumOpsWantToKeepOrder.end() ||
694         I->getSecond() <= NumOpsWantToKeepOriginalOrder)
695       return None;
696 
697     return makeArrayRef(I->getFirst());
698   }
699 
700   /// Builds the correct order for root instructions.
701   /// If some leaves have the same instructions to be vectorized, we may
702   /// incorrectly evaluate the best order for the root node (it is built for the
703   /// vector of instructions without repeated instructions and, thus, has less
704   /// elements than the root node). This function builds the correct order for
705   /// the root node.
706   /// For example, if the root node is \<a+b, a+c, a+d, f+e\>, then the leaves
707   /// are \<a, a, a, f\> and \<b, c, d, e\>. When we try to vectorize the first
708   /// leaf, it will be shrink to \<a, b\>. If instructions in this leaf should
709   /// be reordered, the best order will be \<1, 0\>. We need to extend this
710   /// order for the root node. For the root node this order should look like
711   /// \<3, 0, 1, 2\>. This function extends the order for the reused
712   /// instructions.
713   void findRootOrder(OrdersType &Order) {
714     // If the leaf has the same number of instructions to vectorize as the root
715     // - order must be set already.
716     unsigned RootSize = VectorizableTree[0]->Scalars.size();
717     if (Order.size() == RootSize)
718       return;
719     SmallVector<unsigned, 4> RealOrder(Order.size());
720     std::swap(Order, RealOrder);
721     SmallVector<int, 4> Mask;
722     inversePermutation(RealOrder, Mask);
723     Order.assign(Mask.begin(), Mask.end());
724     // The leaf has less number of instructions - need to find the true order of
725     // the root.
726     // Scan the nodes starting from the leaf back to the root.
727     const TreeEntry *PNode = VectorizableTree.back().get();
728     SmallVector<const TreeEntry *, 4> Nodes(1, PNode);
729     SmallPtrSet<const TreeEntry *, 4> Visited;
730     while (!Nodes.empty() && Order.size() != RootSize) {
731       const TreeEntry *PNode = Nodes.pop_back_val();
732       if (!Visited.insert(PNode).second)
733         continue;
734       const TreeEntry &Node = *PNode;
735       for (const EdgeInfo &EI : Node.UserTreeIndices)
736         if (EI.UserTE)
737           Nodes.push_back(EI.UserTE);
738       if (Node.ReuseShuffleIndices.empty())
739         continue;
740       // Build the order for the parent node.
741       OrdersType NewOrder(Node.ReuseShuffleIndices.size(), RootSize);
742       SmallVector<unsigned, 4> OrderCounter(Order.size(), 0);
743       // The algorithm of the order extension is:
744       // 1. Calculate the number of the same instructions for the order.
745       // 2. Calculate the index of the new order: total number of instructions
746       // with order less than the order of the current instruction + reuse
747       // number of the current instruction.
748       // 3. The new order is just the index of the instruction in the original
749       // vector of the instructions.
750       for (unsigned I : Node.ReuseShuffleIndices)
751         ++OrderCounter[Order[I]];
752       SmallVector<unsigned, 4> CurrentCounter(Order.size(), 0);
753       for (unsigned I = 0, E = Node.ReuseShuffleIndices.size(); I < E; ++I) {
754         unsigned ReusedIdx = Node.ReuseShuffleIndices[I];
755         unsigned OrderIdx = Order[ReusedIdx];
756         unsigned NewIdx = 0;
757         for (unsigned J = 0; J < OrderIdx; ++J)
758           NewIdx += OrderCounter[J];
759         NewIdx += CurrentCounter[OrderIdx];
760         ++CurrentCounter[OrderIdx];
761         assert(NewOrder[NewIdx] == RootSize &&
762                "The order index should not be written already.");
763         NewOrder[NewIdx] = I;
764       }
765       std::swap(Order, NewOrder);
766     }
767     assert(Order.size() == RootSize &&
768            "Root node is expected or the size of the order must be the same as "
769            "the number of elements in the root node.");
770     assert(llvm::all_of(Order,
771                         [RootSize](unsigned Val) { return Val != RootSize; }) &&
772            "All indices must be initialized");
773   }
774 
775   /// \return The vector element size in bits to use when vectorizing the
776   /// expression tree ending at \p V. If V is a store, the size is the width of
777   /// the stored value. Otherwise, the size is the width of the largest loaded
778   /// value reaching V. This method is used by the vectorizer to calculate
779   /// vectorization factors.
780   unsigned getVectorElementSize(Value *V);
781 
782   /// Compute the minimum type sizes required to represent the entries in a
783   /// vectorizable tree.
784   void computeMinimumValueSizes();
785 
786   // \returns maximum vector register size as set by TTI or overridden by cl::opt.
787   unsigned getMaxVecRegSize() const {
788     return MaxVecRegSize;
789   }
790 
791   // \returns minimum vector register size as set by cl::opt.
792   unsigned getMinVecRegSize() const {
793     return MinVecRegSize;
794   }
795 
796   unsigned getMaximumVF(unsigned ElemWidth, unsigned Opcode) const {
797     unsigned MaxVF = MaxVFOption.getNumOccurrences() ?
798       MaxVFOption : TTI->getMaximumVF(ElemWidth, Opcode);
799     return MaxVF ? MaxVF : UINT_MAX;
800   }
801 
802   /// Check if homogeneous aggregate is isomorphic to some VectorType.
803   /// Accepts homogeneous multidimensional aggregate of scalars/vectors like
804   /// {[4 x i16], [4 x i16]}, { <2 x float>, <2 x float> },
805   /// {{{i16, i16}, {i16, i16}}, {{i16, i16}, {i16, i16}}} and so on.
806   ///
807   /// \returns number of elements in vector if isomorphism exists, 0 otherwise.
808   unsigned canMapToVector(Type *T, const DataLayout &DL) const;
809 
810   /// \returns True if the VectorizableTree is both tiny and not fully
811   /// vectorizable. We do not vectorize such trees.
812   bool isTreeTinyAndNotFullyVectorizable() const;
813 
814   /// Assume that a legal-sized 'or'-reduction of shifted/zexted loaded values
815   /// can be load combined in the backend. Load combining may not be allowed in
816   /// the IR optimizer, so we do not want to alter the pattern. For example,
817   /// partially transforming a scalar bswap() pattern into vector code is
818   /// effectively impossible for the backend to undo.
819   /// TODO: If load combining is allowed in the IR optimizer, this analysis
820   ///       may not be necessary.
821   bool isLoadCombineReductionCandidate(RecurKind RdxKind) const;
822 
823   /// Assume that a vector of stores of bitwise-or/shifted/zexted loaded values
824   /// can be load combined in the backend. Load combining may not be allowed in
825   /// the IR optimizer, so we do not want to alter the pattern. For example,
826   /// partially transforming a scalar bswap() pattern into vector code is
827   /// effectively impossible for the backend to undo.
828   /// TODO: If load combining is allowed in the IR optimizer, this analysis
829   ///       may not be necessary.
830   bool isLoadCombineCandidate() const;
831 
832   OptimizationRemarkEmitter *getORE() { return ORE; }
833 
834   /// This structure holds any data we need about the edges being traversed
835   /// during buildTree_rec(). We keep track of:
836   /// (i) the user TreeEntry index, and
837   /// (ii) the index of the edge.
838   struct EdgeInfo {
839     EdgeInfo() = default;
840     EdgeInfo(TreeEntry *UserTE, unsigned EdgeIdx)
841         : UserTE(UserTE), EdgeIdx(EdgeIdx) {}
842     /// The user TreeEntry.
843     TreeEntry *UserTE = nullptr;
844     /// The operand index of the use.
845     unsigned EdgeIdx = UINT_MAX;
846 #ifndef NDEBUG
847     friend inline raw_ostream &operator<<(raw_ostream &OS,
848                                           const BoUpSLP::EdgeInfo &EI) {
849       EI.dump(OS);
850       return OS;
851     }
852     /// Debug print.
853     void dump(raw_ostream &OS) const {
854       OS << "{User:" << (UserTE ? std::to_string(UserTE->Idx) : "null")
855          << " EdgeIdx:" << EdgeIdx << "}";
856     }
857     LLVM_DUMP_METHOD void dump() const { dump(dbgs()); }
858 #endif
859   };
860 
861   /// A helper data structure to hold the operands of a vector of instructions.
862   /// This supports a fixed vector length for all operand vectors.
863   class VLOperands {
864     /// For each operand we need (i) the value, and (ii) the opcode that it
865     /// would be attached to if the expression was in a left-linearized form.
866     /// This is required to avoid illegal operand reordering.
867     /// For example:
868     /// \verbatim
869     ///                         0 Op1
870     ///                         |/
871     /// Op1 Op2   Linearized    + Op2
872     ///   \ /     ---------->   |/
873     ///    -                    -
874     ///
875     /// Op1 - Op2            (0 + Op1) - Op2
876     /// \endverbatim
877     ///
878     /// Value Op1 is attached to a '+' operation, and Op2 to a '-'.
879     ///
880     /// Another way to think of this is to track all the operations across the
881     /// path from the operand all the way to the root of the tree and to
882     /// calculate the operation that corresponds to this path. For example, the
883     /// path from Op2 to the root crosses the RHS of the '-', therefore the
884     /// corresponding operation is a '-' (which matches the one in the
885     /// linearized tree, as shown above).
886     ///
887     /// For lack of a better term, we refer to this operation as Accumulated
888     /// Path Operation (APO).
889     struct OperandData {
890       OperandData() = default;
891       OperandData(Value *V, bool APO, bool IsUsed)
892           : V(V), APO(APO), IsUsed(IsUsed) {}
893       /// The operand value.
894       Value *V = nullptr;
895       /// TreeEntries only allow a single opcode, or an alternate sequence of
896       /// them (e.g, +, -). Therefore, we can safely use a boolean value for the
897       /// APO. It is set to 'true' if 'V' is attached to an inverse operation
898       /// in the left-linearized form (e.g., Sub/Div), and 'false' otherwise
899       /// (e.g., Add/Mul)
900       bool APO = false;
901       /// Helper data for the reordering function.
902       bool IsUsed = false;
903     };
904 
905     /// During operand reordering, we are trying to select the operand at lane
906     /// that matches best with the operand at the neighboring lane. Our
907     /// selection is based on the type of value we are looking for. For example,
908     /// if the neighboring lane has a load, we need to look for a load that is
909     /// accessing a consecutive address. These strategies are summarized in the
910     /// 'ReorderingMode' enumerator.
911     enum class ReorderingMode {
912       Load,     ///< Matching loads to consecutive memory addresses
913       Opcode,   ///< Matching instructions based on opcode (same or alternate)
914       Constant, ///< Matching constants
915       Splat,    ///< Matching the same instruction multiple times (broadcast)
916       Failed,   ///< We failed to create a vectorizable group
917     };
918 
919     using OperandDataVec = SmallVector<OperandData, 2>;
920 
921     /// A vector of operand vectors.
922     SmallVector<OperandDataVec, 4> OpsVec;
923 
924     const DataLayout &DL;
925     ScalarEvolution &SE;
926     const BoUpSLP &R;
927 
928     /// \returns the operand data at \p OpIdx and \p Lane.
929     OperandData &getData(unsigned OpIdx, unsigned Lane) {
930       return OpsVec[OpIdx][Lane];
931     }
932 
933     /// \returns the operand data at \p OpIdx and \p Lane. Const version.
934     const OperandData &getData(unsigned OpIdx, unsigned Lane) const {
935       return OpsVec[OpIdx][Lane];
936     }
937 
938     /// Clears the used flag for all entries.
939     void clearUsed() {
940       for (unsigned OpIdx = 0, NumOperands = getNumOperands();
941            OpIdx != NumOperands; ++OpIdx)
942         for (unsigned Lane = 0, NumLanes = getNumLanes(); Lane != NumLanes;
943              ++Lane)
944           OpsVec[OpIdx][Lane].IsUsed = false;
945     }
946 
947     /// Swap the operand at \p OpIdx1 with that one at \p OpIdx2.
948     void swap(unsigned OpIdx1, unsigned OpIdx2, unsigned Lane) {
949       std::swap(OpsVec[OpIdx1][Lane], OpsVec[OpIdx2][Lane]);
950     }
951 
952     // The hard-coded scores listed here are not very important. When computing
953     // the scores of matching one sub-tree with another, we are basically
954     // counting the number of values that are matching. So even if all scores
955     // are set to 1, we would still get a decent matching result.
956     // However, sometimes we have to break ties. For example we may have to
957     // choose between matching loads vs matching opcodes. This is what these
958     // scores are helping us with: they provide the order of preference.
959 
960     /// Loads from consecutive memory addresses, e.g. load(A[i]), load(A[i+1]).
961     static const int ScoreConsecutiveLoads = 3;
962     /// ExtractElementInst from same vector and consecutive indexes.
963     static const int ScoreConsecutiveExtracts = 3;
964     /// Constants.
965     static const int ScoreConstants = 2;
966     /// Instructions with the same opcode.
967     static const int ScoreSameOpcode = 2;
968     /// Instructions with alt opcodes (e.g, add + sub).
969     static const int ScoreAltOpcodes = 1;
970     /// Identical instructions (a.k.a. splat or broadcast).
971     static const int ScoreSplat = 1;
972     /// Matching with an undef is preferable to failing.
973     static const int ScoreUndef = 1;
974     /// Score for failing to find a decent match.
975     static const int ScoreFail = 0;
976     /// User exteranl to the vectorized code.
977     static const int ExternalUseCost = 1;
978     /// The user is internal but in a different lane.
979     static const int UserInDiffLaneCost = ExternalUseCost;
980 
981     /// \returns the score of placing \p V1 and \p V2 in consecutive lanes.
982     static int getShallowScore(Value *V1, Value *V2, const DataLayout &DL,
983                                ScalarEvolution &SE) {
984       auto *LI1 = dyn_cast<LoadInst>(V1);
985       auto *LI2 = dyn_cast<LoadInst>(V2);
986       if (LI1 && LI2) {
987         if (LI1->getParent() != LI2->getParent())
988           return VLOperands::ScoreFail;
989 
990         Optional<int> Dist = getPointersDiff(
991             LI1->getType(), LI1->getPointerOperand(), LI2->getType(),
992             LI2->getPointerOperand(), DL, SE, /*StrictCheck=*/true);
993         return (Dist && *Dist == 1) ? VLOperands::ScoreConsecutiveLoads
994                                     : VLOperands::ScoreFail;
995       }
996 
997       auto *C1 = dyn_cast<Constant>(V1);
998       auto *C2 = dyn_cast<Constant>(V2);
999       if (C1 && C2)
1000         return VLOperands::ScoreConstants;
1001 
1002       // Extracts from consecutive indexes of the same vector better score as
1003       // the extracts could be optimized away.
1004       Value *EV;
1005       ConstantInt *Ex1Idx, *Ex2Idx;
1006       if (match(V1, m_ExtractElt(m_Value(EV), m_ConstantInt(Ex1Idx))) &&
1007           match(V2, m_ExtractElt(m_Deferred(EV), m_ConstantInt(Ex2Idx))) &&
1008           Ex1Idx->getZExtValue() + 1 == Ex2Idx->getZExtValue())
1009         return VLOperands::ScoreConsecutiveExtracts;
1010 
1011       auto *I1 = dyn_cast<Instruction>(V1);
1012       auto *I2 = dyn_cast<Instruction>(V2);
1013       if (I1 && I2) {
1014         if (I1 == I2)
1015           return VLOperands::ScoreSplat;
1016         InstructionsState S = getSameOpcode({I1, I2});
1017         // Note: Only consider instructions with <= 2 operands to avoid
1018         // complexity explosion.
1019         if (S.getOpcode() && S.MainOp->getNumOperands() <= 2)
1020           return S.isAltShuffle() ? VLOperands::ScoreAltOpcodes
1021                                   : VLOperands::ScoreSameOpcode;
1022       }
1023 
1024       if (isa<UndefValue>(V2))
1025         return VLOperands::ScoreUndef;
1026 
1027       return VLOperands::ScoreFail;
1028     }
1029 
1030     /// Holds the values and their lane that are taking part in the look-ahead
1031     /// score calculation. This is used in the external uses cost calculation.
1032     SmallDenseMap<Value *, int> InLookAheadValues;
1033 
1034     /// \Returns the additinal cost due to uses of \p LHS and \p RHS that are
1035     /// either external to the vectorized code, or require shuffling.
1036     int getExternalUsesCost(const std::pair<Value *, int> &LHS,
1037                             const std::pair<Value *, int> &RHS) {
1038       int Cost = 0;
1039       std::array<std::pair<Value *, int>, 2> Values = {{LHS, RHS}};
1040       for (int Idx = 0, IdxE = Values.size(); Idx != IdxE; ++Idx) {
1041         Value *V = Values[Idx].first;
1042         if (isa<Constant>(V)) {
1043           // Since this is a function pass, it doesn't make semantic sense to
1044           // walk the users of a subclass of Constant. The users could be in
1045           // another function, or even another module that happens to be in
1046           // the same LLVMContext.
1047           continue;
1048         }
1049 
1050         // Calculate the absolute lane, using the minimum relative lane of LHS
1051         // and RHS as base and Idx as the offset.
1052         int Ln = std::min(LHS.second, RHS.second) + Idx;
1053         assert(Ln >= 0 && "Bad lane calculation");
1054         unsigned UsersBudget = LookAheadUsersBudget;
1055         for (User *U : V->users()) {
1056           if (const TreeEntry *UserTE = R.getTreeEntry(U)) {
1057             // The user is in the VectorizableTree. Check if we need to insert.
1058             auto It = llvm::find(UserTE->Scalars, U);
1059             assert(It != UserTE->Scalars.end() && "U is in UserTE");
1060             int UserLn = std::distance(UserTE->Scalars.begin(), It);
1061             assert(UserLn >= 0 && "Bad lane");
1062             if (UserLn != Ln)
1063               Cost += UserInDiffLaneCost;
1064           } else {
1065             // Check if the user is in the look-ahead code.
1066             auto It2 = InLookAheadValues.find(U);
1067             if (It2 != InLookAheadValues.end()) {
1068               // The user is in the look-ahead code. Check the lane.
1069               if (It2->second != Ln)
1070                 Cost += UserInDiffLaneCost;
1071             } else {
1072               // The user is neither in SLP tree nor in the look-ahead code.
1073               Cost += ExternalUseCost;
1074             }
1075           }
1076           // Limit the number of visited uses to cap compilation time.
1077           if (--UsersBudget == 0)
1078             break;
1079         }
1080       }
1081       return Cost;
1082     }
1083 
1084     /// Go through the operands of \p LHS and \p RHS recursively until \p
1085     /// MaxLevel, and return the cummulative score. For example:
1086     /// \verbatim
1087     ///  A[0]  B[0]  A[1]  B[1]  C[0] D[0]  B[1] A[1]
1088     ///     \ /         \ /         \ /        \ /
1089     ///      +           +           +          +
1090     ///     G1          G2          G3         G4
1091     /// \endverbatim
1092     /// The getScoreAtLevelRec(G1, G2) function will try to match the nodes at
1093     /// each level recursively, accumulating the score. It starts from matching
1094     /// the additions at level 0, then moves on to the loads (level 1). The
1095     /// score of G1 and G2 is higher than G1 and G3, because {A[0],A[1]} and
1096     /// {B[0],B[1]} match with VLOperands::ScoreConsecutiveLoads, while
1097     /// {A[0],C[0]} has a score of VLOperands::ScoreFail.
1098     /// Please note that the order of the operands does not matter, as we
1099     /// evaluate the score of all profitable combinations of operands. In
1100     /// other words the score of G1 and G4 is the same as G1 and G2. This
1101     /// heuristic is based on ideas described in:
1102     ///   Look-ahead SLP: Auto-vectorization in the presence of commutative
1103     ///   operations, CGO 2018 by Vasileios Porpodas, Rodrigo C. O. Rocha,
1104     ///   Luís F. W. Góes
1105     int getScoreAtLevelRec(const std::pair<Value *, int> &LHS,
1106                            const std::pair<Value *, int> &RHS, int CurrLevel,
1107                            int MaxLevel) {
1108 
1109       Value *V1 = LHS.first;
1110       Value *V2 = RHS.first;
1111       // Get the shallow score of V1 and V2.
1112       int ShallowScoreAtThisLevel =
1113           std::max((int)ScoreFail, getShallowScore(V1, V2, DL, SE) -
1114                                        getExternalUsesCost(LHS, RHS));
1115       int Lane1 = LHS.second;
1116       int Lane2 = RHS.second;
1117 
1118       // If reached MaxLevel,
1119       //  or if V1 and V2 are not instructions,
1120       //  or if they are SPLAT,
1121       //  or if they are not consecutive, early return the current cost.
1122       auto *I1 = dyn_cast<Instruction>(V1);
1123       auto *I2 = dyn_cast<Instruction>(V2);
1124       if (CurrLevel == MaxLevel || !(I1 && I2) || I1 == I2 ||
1125           ShallowScoreAtThisLevel == VLOperands::ScoreFail ||
1126           (isa<LoadInst>(I1) && isa<LoadInst>(I2) && ShallowScoreAtThisLevel))
1127         return ShallowScoreAtThisLevel;
1128       assert(I1 && I2 && "Should have early exited.");
1129 
1130       // Keep track of in-tree values for determining the external-use cost.
1131       InLookAheadValues[V1] = Lane1;
1132       InLookAheadValues[V2] = Lane2;
1133 
1134       // Contains the I2 operand indexes that got matched with I1 operands.
1135       SmallSet<unsigned, 4> Op2Used;
1136 
1137       // Recursion towards the operands of I1 and I2. We are trying all possbile
1138       // operand pairs, and keeping track of the best score.
1139       for (unsigned OpIdx1 = 0, NumOperands1 = I1->getNumOperands();
1140            OpIdx1 != NumOperands1; ++OpIdx1) {
1141         // Try to pair op1I with the best operand of I2.
1142         int MaxTmpScore = 0;
1143         unsigned MaxOpIdx2 = 0;
1144         bool FoundBest = false;
1145         // If I2 is commutative try all combinations.
1146         unsigned FromIdx = isCommutative(I2) ? 0 : OpIdx1;
1147         unsigned ToIdx = isCommutative(I2)
1148                              ? I2->getNumOperands()
1149                              : std::min(I2->getNumOperands(), OpIdx1 + 1);
1150         assert(FromIdx <= ToIdx && "Bad index");
1151         for (unsigned OpIdx2 = FromIdx; OpIdx2 != ToIdx; ++OpIdx2) {
1152           // Skip operands already paired with OpIdx1.
1153           if (Op2Used.count(OpIdx2))
1154             continue;
1155           // Recursively calculate the cost at each level
1156           int TmpScore = getScoreAtLevelRec({I1->getOperand(OpIdx1), Lane1},
1157                                             {I2->getOperand(OpIdx2), Lane2},
1158                                             CurrLevel + 1, MaxLevel);
1159           // Look for the best score.
1160           if (TmpScore > VLOperands::ScoreFail && TmpScore > MaxTmpScore) {
1161             MaxTmpScore = TmpScore;
1162             MaxOpIdx2 = OpIdx2;
1163             FoundBest = true;
1164           }
1165         }
1166         if (FoundBest) {
1167           // Pair {OpIdx1, MaxOpIdx2} was found to be best. Never revisit it.
1168           Op2Used.insert(MaxOpIdx2);
1169           ShallowScoreAtThisLevel += MaxTmpScore;
1170         }
1171       }
1172       return ShallowScoreAtThisLevel;
1173     }
1174 
1175     /// \Returns the look-ahead score, which tells us how much the sub-trees
1176     /// rooted at \p LHS and \p RHS match, the more they match the higher the
1177     /// score. This helps break ties in an informed way when we cannot decide on
1178     /// the order of the operands by just considering the immediate
1179     /// predecessors.
1180     int getLookAheadScore(const std::pair<Value *, int> &LHS,
1181                           const std::pair<Value *, int> &RHS) {
1182       InLookAheadValues.clear();
1183       return getScoreAtLevelRec(LHS, RHS, 1, LookAheadMaxDepth);
1184     }
1185 
1186     // Search all operands in Ops[*][Lane] for the one that matches best
1187     // Ops[OpIdx][LastLane] and return its opreand index.
1188     // If no good match can be found, return None.
1189     Optional<unsigned>
1190     getBestOperand(unsigned OpIdx, int Lane, int LastLane,
1191                    ArrayRef<ReorderingMode> ReorderingModes) {
1192       unsigned NumOperands = getNumOperands();
1193 
1194       // The operand of the previous lane at OpIdx.
1195       Value *OpLastLane = getData(OpIdx, LastLane).V;
1196 
1197       // Our strategy mode for OpIdx.
1198       ReorderingMode RMode = ReorderingModes[OpIdx];
1199 
1200       // The linearized opcode of the operand at OpIdx, Lane.
1201       bool OpIdxAPO = getData(OpIdx, Lane).APO;
1202 
1203       // The best operand index and its score.
1204       // Sometimes we have more than one option (e.g., Opcode and Undefs), so we
1205       // are using the score to differentiate between the two.
1206       struct BestOpData {
1207         Optional<unsigned> Idx = None;
1208         unsigned Score = 0;
1209       } BestOp;
1210 
1211       // Iterate through all unused operands and look for the best.
1212       for (unsigned Idx = 0; Idx != NumOperands; ++Idx) {
1213         // Get the operand at Idx and Lane.
1214         OperandData &OpData = getData(Idx, Lane);
1215         Value *Op = OpData.V;
1216         bool OpAPO = OpData.APO;
1217 
1218         // Skip already selected operands.
1219         if (OpData.IsUsed)
1220           continue;
1221 
1222         // Skip if we are trying to move the operand to a position with a
1223         // different opcode in the linearized tree form. This would break the
1224         // semantics.
1225         if (OpAPO != OpIdxAPO)
1226           continue;
1227 
1228         // Look for an operand that matches the current mode.
1229         switch (RMode) {
1230         case ReorderingMode::Load:
1231         case ReorderingMode::Constant:
1232         case ReorderingMode::Opcode: {
1233           bool LeftToRight = Lane > LastLane;
1234           Value *OpLeft = (LeftToRight) ? OpLastLane : Op;
1235           Value *OpRight = (LeftToRight) ? Op : OpLastLane;
1236           unsigned Score =
1237               getLookAheadScore({OpLeft, LastLane}, {OpRight, Lane});
1238           if (Score > BestOp.Score) {
1239             BestOp.Idx = Idx;
1240             BestOp.Score = Score;
1241           }
1242           break;
1243         }
1244         case ReorderingMode::Splat:
1245           if (Op == OpLastLane)
1246             BestOp.Idx = Idx;
1247           break;
1248         case ReorderingMode::Failed:
1249           return None;
1250         }
1251       }
1252 
1253       if (BestOp.Idx) {
1254         getData(BestOp.Idx.getValue(), Lane).IsUsed = true;
1255         return BestOp.Idx;
1256       }
1257       // If we could not find a good match return None.
1258       return None;
1259     }
1260 
1261     /// Helper for reorderOperandVecs. \Returns the lane that we should start
1262     /// reordering from. This is the one which has the least number of operands
1263     /// that can freely move about.
1264     unsigned getBestLaneToStartReordering() const {
1265       unsigned BestLane = 0;
1266       unsigned Min = UINT_MAX;
1267       for (unsigned Lane = 0, NumLanes = getNumLanes(); Lane != NumLanes;
1268            ++Lane) {
1269         unsigned NumFreeOps = getMaxNumOperandsThatCanBeReordered(Lane);
1270         if (NumFreeOps < Min) {
1271           Min = NumFreeOps;
1272           BestLane = Lane;
1273         }
1274       }
1275       return BestLane;
1276     }
1277 
1278     /// \Returns the maximum number of operands that are allowed to be reordered
1279     /// for \p Lane. This is used as a heuristic for selecting the first lane to
1280     /// start operand reordering.
1281     unsigned getMaxNumOperandsThatCanBeReordered(unsigned Lane) const {
1282       unsigned CntTrue = 0;
1283       unsigned NumOperands = getNumOperands();
1284       // Operands with the same APO can be reordered. We therefore need to count
1285       // how many of them we have for each APO, like this: Cnt[APO] = x.
1286       // Since we only have two APOs, namely true and false, we can avoid using
1287       // a map. Instead we can simply count the number of operands that
1288       // correspond to one of them (in this case the 'true' APO), and calculate
1289       // the other by subtracting it from the total number of operands.
1290       for (unsigned OpIdx = 0; OpIdx != NumOperands; ++OpIdx)
1291         if (getData(OpIdx, Lane).APO)
1292           ++CntTrue;
1293       unsigned CntFalse = NumOperands - CntTrue;
1294       return std::max(CntTrue, CntFalse);
1295     }
1296 
1297     /// Go through the instructions in VL and append their operands.
1298     void appendOperandsOfVL(ArrayRef<Value *> VL) {
1299       assert(!VL.empty() && "Bad VL");
1300       assert((empty() || VL.size() == getNumLanes()) &&
1301              "Expected same number of lanes");
1302       assert(isa<Instruction>(VL[0]) && "Expected instruction");
1303       unsigned NumOperands = cast<Instruction>(VL[0])->getNumOperands();
1304       OpsVec.resize(NumOperands);
1305       unsigned NumLanes = VL.size();
1306       for (unsigned OpIdx = 0; OpIdx != NumOperands; ++OpIdx) {
1307         OpsVec[OpIdx].resize(NumLanes);
1308         for (unsigned Lane = 0; Lane != NumLanes; ++Lane) {
1309           assert(isa<Instruction>(VL[Lane]) && "Expected instruction");
1310           // Our tree has just 3 nodes: the root and two operands.
1311           // It is therefore trivial to get the APO. We only need to check the
1312           // opcode of VL[Lane] and whether the operand at OpIdx is the LHS or
1313           // RHS operand. The LHS operand of both add and sub is never attached
1314           // to an inversese operation in the linearized form, therefore its APO
1315           // is false. The RHS is true only if VL[Lane] is an inverse operation.
1316 
1317           // Since operand reordering is performed on groups of commutative
1318           // operations or alternating sequences (e.g., +, -), we can safely
1319           // tell the inverse operations by checking commutativity.
1320           bool IsInverseOperation = !isCommutative(cast<Instruction>(VL[Lane]));
1321           bool APO = (OpIdx == 0) ? false : IsInverseOperation;
1322           OpsVec[OpIdx][Lane] = {cast<Instruction>(VL[Lane])->getOperand(OpIdx),
1323                                  APO, false};
1324         }
1325       }
1326     }
1327 
1328     /// \returns the number of operands.
1329     unsigned getNumOperands() const { return OpsVec.size(); }
1330 
1331     /// \returns the number of lanes.
1332     unsigned getNumLanes() const { return OpsVec[0].size(); }
1333 
1334     /// \returns the operand value at \p OpIdx and \p Lane.
1335     Value *getValue(unsigned OpIdx, unsigned Lane) const {
1336       return getData(OpIdx, Lane).V;
1337     }
1338 
1339     /// \returns true if the data structure is empty.
1340     bool empty() const { return OpsVec.empty(); }
1341 
1342     /// Clears the data.
1343     void clear() { OpsVec.clear(); }
1344 
1345     /// \Returns true if there are enough operands identical to \p Op to fill
1346     /// the whole vector.
1347     /// Note: This modifies the 'IsUsed' flag, so a cleanUsed() must follow.
1348     bool shouldBroadcast(Value *Op, unsigned OpIdx, unsigned Lane) {
1349       bool OpAPO = getData(OpIdx, Lane).APO;
1350       for (unsigned Ln = 0, Lns = getNumLanes(); Ln != Lns; ++Ln) {
1351         if (Ln == Lane)
1352           continue;
1353         // This is set to true if we found a candidate for broadcast at Lane.
1354         bool FoundCandidate = false;
1355         for (unsigned OpI = 0, OpE = getNumOperands(); OpI != OpE; ++OpI) {
1356           OperandData &Data = getData(OpI, Ln);
1357           if (Data.APO != OpAPO || Data.IsUsed)
1358             continue;
1359           if (Data.V == Op) {
1360             FoundCandidate = true;
1361             Data.IsUsed = true;
1362             break;
1363           }
1364         }
1365         if (!FoundCandidate)
1366           return false;
1367       }
1368       return true;
1369     }
1370 
1371   public:
1372     /// Initialize with all the operands of the instruction vector \p RootVL.
1373     VLOperands(ArrayRef<Value *> RootVL, const DataLayout &DL,
1374                ScalarEvolution &SE, const BoUpSLP &R)
1375         : DL(DL), SE(SE), R(R) {
1376       // Append all the operands of RootVL.
1377       appendOperandsOfVL(RootVL);
1378     }
1379 
1380     /// \Returns a value vector with the operands across all lanes for the
1381     /// opearnd at \p OpIdx.
1382     ValueList getVL(unsigned OpIdx) const {
1383       ValueList OpVL(OpsVec[OpIdx].size());
1384       assert(OpsVec[OpIdx].size() == getNumLanes() &&
1385              "Expected same num of lanes across all operands");
1386       for (unsigned Lane = 0, Lanes = getNumLanes(); Lane != Lanes; ++Lane)
1387         OpVL[Lane] = OpsVec[OpIdx][Lane].V;
1388       return OpVL;
1389     }
1390 
1391     // Performs operand reordering for 2 or more operands.
1392     // The original operands are in OrigOps[OpIdx][Lane].
1393     // The reordered operands are returned in 'SortedOps[OpIdx][Lane]'.
1394     void reorder() {
1395       unsigned NumOperands = getNumOperands();
1396       unsigned NumLanes = getNumLanes();
1397       // Each operand has its own mode. We are using this mode to help us select
1398       // the instructions for each lane, so that they match best with the ones
1399       // we have selected so far.
1400       SmallVector<ReorderingMode, 2> ReorderingModes(NumOperands);
1401 
1402       // This is a greedy single-pass algorithm. We are going over each lane
1403       // once and deciding on the best order right away with no back-tracking.
1404       // However, in order to increase its effectiveness, we start with the lane
1405       // that has operands that can move the least. For example, given the
1406       // following lanes:
1407       //  Lane 0 : A[0] = B[0] + C[0]   // Visited 3rd
1408       //  Lane 1 : A[1] = C[1] - B[1]   // Visited 1st
1409       //  Lane 2 : A[2] = B[2] + C[2]   // Visited 2nd
1410       //  Lane 3 : A[3] = C[3] - B[3]   // Visited 4th
1411       // we will start at Lane 1, since the operands of the subtraction cannot
1412       // be reordered. Then we will visit the rest of the lanes in a circular
1413       // fashion. That is, Lanes 2, then Lane 0, and finally Lane 3.
1414 
1415       // Find the first lane that we will start our search from.
1416       unsigned FirstLane = getBestLaneToStartReordering();
1417 
1418       // Initialize the modes.
1419       for (unsigned OpIdx = 0; OpIdx != NumOperands; ++OpIdx) {
1420         Value *OpLane0 = getValue(OpIdx, FirstLane);
1421         // Keep track if we have instructions with all the same opcode on one
1422         // side.
1423         if (isa<LoadInst>(OpLane0))
1424           ReorderingModes[OpIdx] = ReorderingMode::Load;
1425         else if (isa<Instruction>(OpLane0)) {
1426           // Check if OpLane0 should be broadcast.
1427           if (shouldBroadcast(OpLane0, OpIdx, FirstLane))
1428             ReorderingModes[OpIdx] = ReorderingMode::Splat;
1429           else
1430             ReorderingModes[OpIdx] = ReorderingMode::Opcode;
1431         }
1432         else if (isa<Constant>(OpLane0))
1433           ReorderingModes[OpIdx] = ReorderingMode::Constant;
1434         else if (isa<Argument>(OpLane0))
1435           // Our best hope is a Splat. It may save some cost in some cases.
1436           ReorderingModes[OpIdx] = ReorderingMode::Splat;
1437         else
1438           // NOTE: This should be unreachable.
1439           ReorderingModes[OpIdx] = ReorderingMode::Failed;
1440       }
1441 
1442       // If the initial strategy fails for any of the operand indexes, then we
1443       // perform reordering again in a second pass. This helps avoid assigning
1444       // high priority to the failed strategy, and should improve reordering for
1445       // the non-failed operand indexes.
1446       for (int Pass = 0; Pass != 2; ++Pass) {
1447         // Skip the second pass if the first pass did not fail.
1448         bool StrategyFailed = false;
1449         // Mark all operand data as free to use.
1450         clearUsed();
1451         // We keep the original operand order for the FirstLane, so reorder the
1452         // rest of the lanes. We are visiting the nodes in a circular fashion,
1453         // using FirstLane as the center point and increasing the radius
1454         // distance.
1455         for (unsigned Distance = 1; Distance != NumLanes; ++Distance) {
1456           // Visit the lane on the right and then the lane on the left.
1457           for (int Direction : {+1, -1}) {
1458             int Lane = FirstLane + Direction * Distance;
1459             if (Lane < 0 || Lane >= (int)NumLanes)
1460               continue;
1461             int LastLane = Lane - Direction;
1462             assert(LastLane >= 0 && LastLane < (int)NumLanes &&
1463                    "Out of bounds");
1464             // Look for a good match for each operand.
1465             for (unsigned OpIdx = 0; OpIdx != NumOperands; ++OpIdx) {
1466               // Search for the operand that matches SortedOps[OpIdx][Lane-1].
1467               Optional<unsigned> BestIdx =
1468                   getBestOperand(OpIdx, Lane, LastLane, ReorderingModes);
1469               // By not selecting a value, we allow the operands that follow to
1470               // select a better matching value. We will get a non-null value in
1471               // the next run of getBestOperand().
1472               if (BestIdx) {
1473                 // Swap the current operand with the one returned by
1474                 // getBestOperand().
1475                 swap(OpIdx, BestIdx.getValue(), Lane);
1476               } else {
1477                 // We failed to find a best operand, set mode to 'Failed'.
1478                 ReorderingModes[OpIdx] = ReorderingMode::Failed;
1479                 // Enable the second pass.
1480                 StrategyFailed = true;
1481               }
1482             }
1483           }
1484         }
1485         // Skip second pass if the strategy did not fail.
1486         if (!StrategyFailed)
1487           break;
1488       }
1489     }
1490 
1491 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1492     LLVM_DUMP_METHOD static StringRef getModeStr(ReorderingMode RMode) {
1493       switch (RMode) {
1494       case ReorderingMode::Load:
1495         return "Load";
1496       case ReorderingMode::Opcode:
1497         return "Opcode";
1498       case ReorderingMode::Constant:
1499         return "Constant";
1500       case ReorderingMode::Splat:
1501         return "Splat";
1502       case ReorderingMode::Failed:
1503         return "Failed";
1504       }
1505       llvm_unreachable("Unimplemented Reordering Type");
1506     }
1507 
1508     LLVM_DUMP_METHOD static raw_ostream &printMode(ReorderingMode RMode,
1509                                                    raw_ostream &OS) {
1510       return OS << getModeStr(RMode);
1511     }
1512 
1513     /// Debug print.
1514     LLVM_DUMP_METHOD static void dumpMode(ReorderingMode RMode) {
1515       printMode(RMode, dbgs());
1516     }
1517 
1518     friend raw_ostream &operator<<(raw_ostream &OS, ReorderingMode RMode) {
1519       return printMode(RMode, OS);
1520     }
1521 
1522     LLVM_DUMP_METHOD raw_ostream &print(raw_ostream &OS) const {
1523       const unsigned Indent = 2;
1524       unsigned Cnt = 0;
1525       for (const OperandDataVec &OpDataVec : OpsVec) {
1526         OS << "Operand " << Cnt++ << "\n";
1527         for (const OperandData &OpData : OpDataVec) {
1528           OS.indent(Indent) << "{";
1529           if (Value *V = OpData.V)
1530             OS << *V;
1531           else
1532             OS << "null";
1533           OS << ", APO:" << OpData.APO << "}\n";
1534         }
1535         OS << "\n";
1536       }
1537       return OS;
1538     }
1539 
1540     /// Debug print.
1541     LLVM_DUMP_METHOD void dump() const { print(dbgs()); }
1542 #endif
1543   };
1544 
1545   /// Checks if the instruction is marked for deletion.
1546   bool isDeleted(Instruction *I) const { return DeletedInstructions.count(I); }
1547 
1548   /// Marks values operands for later deletion by replacing them with Undefs.
1549   void eraseInstructions(ArrayRef<Value *> AV);
1550 
1551   ~BoUpSLP();
1552 
1553 private:
1554   /// Checks if all users of \p I are the part of the vectorization tree.
1555   bool areAllUsersVectorized(Instruction *I,
1556                              ArrayRef<Value *> VectorizedVals) const;
1557 
1558   /// \returns the cost of the vectorizable entry.
1559   InstructionCost getEntryCost(const TreeEntry *E,
1560                                ArrayRef<Value *> VectorizedVals);
1561 
1562   /// This is the recursive part of buildTree.
1563   void buildTree_rec(ArrayRef<Value *> Roots, unsigned Depth,
1564                      const EdgeInfo &EI);
1565 
1566   /// \returns true if the ExtractElement/ExtractValue instructions in \p VL can
1567   /// be vectorized to use the original vector (or aggregate "bitcast" to a
1568   /// vector) and sets \p CurrentOrder to the identity permutation; otherwise
1569   /// returns false, setting \p CurrentOrder to either an empty vector or a
1570   /// non-identity permutation that allows to reuse extract instructions.
1571   bool canReuseExtract(ArrayRef<Value *> VL, Value *OpValue,
1572                        SmallVectorImpl<unsigned> &CurrentOrder) const;
1573 
1574   /// Vectorize a single entry in the tree.
1575   Value *vectorizeTree(TreeEntry *E);
1576 
1577   /// Vectorize a single entry in the tree, starting in \p VL.
1578   Value *vectorizeTree(ArrayRef<Value *> VL);
1579 
1580   /// \returns the scalarization cost for this type. Scalarization in this
1581   /// context means the creation of vectors from a group of scalars.
1582   InstructionCost
1583   getGatherCost(FixedVectorType *Ty,
1584                 const DenseSet<unsigned> &ShuffledIndices) const;
1585 
1586   /// Checks if the gathered \p VL can be represented as shuffle(s) of previous
1587   /// tree entries.
1588   /// \returns ShuffleKind, if gathered values can be represented as shuffles of
1589   /// previous tree entries. \p Mask is filled with the shuffle mask.
1590   Optional<TargetTransformInfo::ShuffleKind>
1591   isGatherShuffledEntry(const TreeEntry *TE, SmallVectorImpl<int> &Mask,
1592                         SmallVectorImpl<const TreeEntry *> &Entries);
1593 
1594   /// \returns the scalarization cost for this list of values. Assuming that
1595   /// this subtree gets vectorized, we may need to extract the values from the
1596   /// roots. This method calculates the cost of extracting the values.
1597   InstructionCost getGatherCost(ArrayRef<Value *> VL) const;
1598 
1599   /// Set the Builder insert point to one after the last instruction in
1600   /// the bundle
1601   void setInsertPointAfterBundle(const TreeEntry *E);
1602 
1603   /// \returns a vector from a collection of scalars in \p VL.
1604   Value *gather(ArrayRef<Value *> VL);
1605 
1606   /// \returns whether the VectorizableTree is fully vectorizable and will
1607   /// be beneficial even the tree height is tiny.
1608   bool isFullyVectorizableTinyTree() const;
1609 
1610   /// Reorder commutative or alt operands to get better probability of
1611   /// generating vectorized code.
1612   static void reorderInputsAccordingToOpcode(ArrayRef<Value *> VL,
1613                                              SmallVectorImpl<Value *> &Left,
1614                                              SmallVectorImpl<Value *> &Right,
1615                                              const DataLayout &DL,
1616                                              ScalarEvolution &SE,
1617                                              const BoUpSLP &R);
1618   struct TreeEntry {
1619     using VecTreeTy = SmallVector<std::unique_ptr<TreeEntry>, 8>;
1620     TreeEntry(VecTreeTy &Container) : Container(Container) {}
1621 
1622     /// \returns true if the scalars in VL are equal to this entry.
1623     bool isSame(ArrayRef<Value *> VL) const {
1624       if (VL.size() == Scalars.size())
1625         return std::equal(VL.begin(), VL.end(), Scalars.begin());
1626       return VL.size() == ReuseShuffleIndices.size() &&
1627              std::equal(
1628                  VL.begin(), VL.end(), ReuseShuffleIndices.begin(),
1629                  [this](Value *V, int Idx) { return V == Scalars[Idx]; });
1630     }
1631 
1632     /// A vector of scalars.
1633     ValueList Scalars;
1634 
1635     /// The Scalars are vectorized into this value. It is initialized to Null.
1636     Value *VectorizedValue = nullptr;
1637 
1638     /// Do we need to gather this sequence or vectorize it
1639     /// (either with vector instruction or with scatter/gather
1640     /// intrinsics for store/load)?
1641     enum EntryState { Vectorize, ScatterVectorize, NeedToGather };
1642     EntryState State;
1643 
1644     /// Does this sequence require some shuffling?
1645     SmallVector<int, 4> ReuseShuffleIndices;
1646 
1647     /// Does this entry require reordering?
1648     SmallVector<unsigned, 4> ReorderIndices;
1649 
1650     /// Points back to the VectorizableTree.
1651     ///
1652     /// Only used for Graphviz right now.  Unfortunately GraphTrait::NodeRef has
1653     /// to be a pointer and needs to be able to initialize the child iterator.
1654     /// Thus we need a reference back to the container to translate the indices
1655     /// to entries.
1656     VecTreeTy &Container;
1657 
1658     /// The TreeEntry index containing the user of this entry.  We can actually
1659     /// have multiple users so the data structure is not truly a tree.
1660     SmallVector<EdgeInfo, 1> UserTreeIndices;
1661 
1662     /// The index of this treeEntry in VectorizableTree.
1663     int Idx = -1;
1664 
1665   private:
1666     /// The operands of each instruction in each lane Operands[op_index][lane].
1667     /// Note: This helps avoid the replication of the code that performs the
1668     /// reordering of operands during buildTree_rec() and vectorizeTree().
1669     SmallVector<ValueList, 2> Operands;
1670 
1671     /// The main/alternate instruction.
1672     Instruction *MainOp = nullptr;
1673     Instruction *AltOp = nullptr;
1674 
1675   public:
1676     /// Set this bundle's \p OpIdx'th operand to \p OpVL.
1677     void setOperand(unsigned OpIdx, ArrayRef<Value *> OpVL) {
1678       if (Operands.size() < OpIdx + 1)
1679         Operands.resize(OpIdx + 1);
1680       assert(Operands[OpIdx].empty() && "Already resized?");
1681       Operands[OpIdx].resize(Scalars.size());
1682       for (unsigned Lane = 0, E = Scalars.size(); Lane != E; ++Lane)
1683         Operands[OpIdx][Lane] = OpVL[Lane];
1684     }
1685 
1686     /// Set the operands of this bundle in their original order.
1687     void setOperandsInOrder() {
1688       assert(Operands.empty() && "Already initialized?");
1689       auto *I0 = cast<Instruction>(Scalars[0]);
1690       Operands.resize(I0->getNumOperands());
1691       unsigned NumLanes = Scalars.size();
1692       for (unsigned OpIdx = 0, NumOperands = I0->getNumOperands();
1693            OpIdx != NumOperands; ++OpIdx) {
1694         Operands[OpIdx].resize(NumLanes);
1695         for (unsigned Lane = 0; Lane != NumLanes; ++Lane) {
1696           auto *I = cast<Instruction>(Scalars[Lane]);
1697           assert(I->getNumOperands() == NumOperands &&
1698                  "Expected same number of operands");
1699           Operands[OpIdx][Lane] = I->getOperand(OpIdx);
1700         }
1701       }
1702     }
1703 
1704     /// \returns the \p OpIdx operand of this TreeEntry.
1705     ValueList &getOperand(unsigned OpIdx) {
1706       assert(OpIdx < Operands.size() && "Off bounds");
1707       return Operands[OpIdx];
1708     }
1709 
1710     /// \returns the number of operands.
1711     unsigned getNumOperands() const { return Operands.size(); }
1712 
1713     /// \return the single \p OpIdx operand.
1714     Value *getSingleOperand(unsigned OpIdx) const {
1715       assert(OpIdx < Operands.size() && "Off bounds");
1716       assert(!Operands[OpIdx].empty() && "No operand available");
1717       return Operands[OpIdx][0];
1718     }
1719 
1720     /// Some of the instructions in the list have alternate opcodes.
1721     bool isAltShuffle() const {
1722       return getOpcode() != getAltOpcode();
1723     }
1724 
1725     bool isOpcodeOrAlt(Instruction *I) const {
1726       unsigned CheckedOpcode = I->getOpcode();
1727       return (getOpcode() == CheckedOpcode ||
1728               getAltOpcode() == CheckedOpcode);
1729     }
1730 
1731     /// Chooses the correct key for scheduling data. If \p Op has the same (or
1732     /// alternate) opcode as \p OpValue, the key is \p Op. Otherwise the key is
1733     /// \p OpValue.
1734     Value *isOneOf(Value *Op) const {
1735       auto *I = dyn_cast<Instruction>(Op);
1736       if (I && isOpcodeOrAlt(I))
1737         return Op;
1738       return MainOp;
1739     }
1740 
1741     void setOperations(const InstructionsState &S) {
1742       MainOp = S.MainOp;
1743       AltOp = S.AltOp;
1744     }
1745 
1746     Instruction *getMainOp() const {
1747       return MainOp;
1748     }
1749 
1750     Instruction *getAltOp() const {
1751       return AltOp;
1752     }
1753 
1754     /// The main/alternate opcodes for the list of instructions.
1755     unsigned getOpcode() const {
1756       return MainOp ? MainOp->getOpcode() : 0;
1757     }
1758 
1759     unsigned getAltOpcode() const {
1760       return AltOp ? AltOp->getOpcode() : 0;
1761     }
1762 
1763     /// Update operations state of this entry if reorder occurred.
1764     bool updateStateIfReorder() {
1765       if (ReorderIndices.empty())
1766         return false;
1767       InstructionsState S = getSameOpcode(Scalars, ReorderIndices.front());
1768       setOperations(S);
1769       return true;
1770     }
1771 
1772 #ifndef NDEBUG
1773     /// Debug printer.
1774     LLVM_DUMP_METHOD void dump() const {
1775       dbgs() << Idx << ".\n";
1776       for (unsigned OpI = 0, OpE = Operands.size(); OpI != OpE; ++OpI) {
1777         dbgs() << "Operand " << OpI << ":\n";
1778         for (const Value *V : Operands[OpI])
1779           dbgs().indent(2) << *V << "\n";
1780       }
1781       dbgs() << "Scalars: \n";
1782       for (Value *V : Scalars)
1783         dbgs().indent(2) << *V << "\n";
1784       dbgs() << "State: ";
1785       switch (State) {
1786       case Vectorize:
1787         dbgs() << "Vectorize\n";
1788         break;
1789       case ScatterVectorize:
1790         dbgs() << "ScatterVectorize\n";
1791         break;
1792       case NeedToGather:
1793         dbgs() << "NeedToGather\n";
1794         break;
1795       }
1796       dbgs() << "MainOp: ";
1797       if (MainOp)
1798         dbgs() << *MainOp << "\n";
1799       else
1800         dbgs() << "NULL\n";
1801       dbgs() << "AltOp: ";
1802       if (AltOp)
1803         dbgs() << *AltOp << "\n";
1804       else
1805         dbgs() << "NULL\n";
1806       dbgs() << "VectorizedValue: ";
1807       if (VectorizedValue)
1808         dbgs() << *VectorizedValue << "\n";
1809       else
1810         dbgs() << "NULL\n";
1811       dbgs() << "ReuseShuffleIndices: ";
1812       if (ReuseShuffleIndices.empty())
1813         dbgs() << "Empty";
1814       else
1815         for (unsigned ReuseIdx : ReuseShuffleIndices)
1816           dbgs() << ReuseIdx << ", ";
1817       dbgs() << "\n";
1818       dbgs() << "ReorderIndices: ";
1819       for (unsigned ReorderIdx : ReorderIndices)
1820         dbgs() << ReorderIdx << ", ";
1821       dbgs() << "\n";
1822       dbgs() << "UserTreeIndices: ";
1823       for (const auto &EInfo : UserTreeIndices)
1824         dbgs() << EInfo << ", ";
1825       dbgs() << "\n";
1826     }
1827 #endif
1828   };
1829 
1830 #ifndef NDEBUG
1831   void dumpTreeCosts(const TreeEntry *E, InstructionCost ReuseShuffleCost,
1832                      InstructionCost VecCost,
1833                      InstructionCost ScalarCost) const {
1834     dbgs() << "SLP: Calculated costs for Tree:\n"; E->dump();
1835     dbgs() << "SLP: Costs:\n";
1836     dbgs() << "SLP:     ReuseShuffleCost = " << ReuseShuffleCost << "\n";
1837     dbgs() << "SLP:     VectorCost = " << VecCost << "\n";
1838     dbgs() << "SLP:     ScalarCost = " << ScalarCost << "\n";
1839     dbgs() << "SLP:     ReuseShuffleCost + VecCost - ScalarCost = " <<
1840                ReuseShuffleCost + VecCost - ScalarCost << "\n";
1841   }
1842 #endif
1843 
1844   /// Create a new VectorizableTree entry.
1845   TreeEntry *newTreeEntry(ArrayRef<Value *> VL, Optional<ScheduleData *> Bundle,
1846                           const InstructionsState &S,
1847                           const EdgeInfo &UserTreeIdx,
1848                           ArrayRef<unsigned> ReuseShuffleIndices = None,
1849                           ArrayRef<unsigned> ReorderIndices = None) {
1850     TreeEntry::EntryState EntryState =
1851         Bundle ? TreeEntry::Vectorize : TreeEntry::NeedToGather;
1852     return newTreeEntry(VL, EntryState, Bundle, S, UserTreeIdx,
1853                         ReuseShuffleIndices, ReorderIndices);
1854   }
1855 
1856   TreeEntry *newTreeEntry(ArrayRef<Value *> VL,
1857                           TreeEntry::EntryState EntryState,
1858                           Optional<ScheduleData *> Bundle,
1859                           const InstructionsState &S,
1860                           const EdgeInfo &UserTreeIdx,
1861                           ArrayRef<unsigned> ReuseShuffleIndices = None,
1862                           ArrayRef<unsigned> ReorderIndices = None) {
1863     assert(((!Bundle && EntryState == TreeEntry::NeedToGather) ||
1864             (Bundle && EntryState != TreeEntry::NeedToGather)) &&
1865            "Need to vectorize gather entry?");
1866     VectorizableTree.push_back(std::make_unique<TreeEntry>(VectorizableTree));
1867     TreeEntry *Last = VectorizableTree.back().get();
1868     Last->Idx = VectorizableTree.size() - 1;
1869     Last->Scalars.insert(Last->Scalars.begin(), VL.begin(), VL.end());
1870     Last->State = EntryState;
1871     Last->ReuseShuffleIndices.append(ReuseShuffleIndices.begin(),
1872                                      ReuseShuffleIndices.end());
1873     Last->ReorderIndices.append(ReorderIndices.begin(), ReorderIndices.end());
1874     Last->setOperations(S);
1875     if (Last->State != TreeEntry::NeedToGather) {
1876       for (Value *V : VL) {
1877         assert(!getTreeEntry(V) && "Scalar already in tree!");
1878         ScalarToTreeEntry[V] = Last;
1879       }
1880       // Update the scheduler bundle to point to this TreeEntry.
1881       unsigned Lane = 0;
1882       for (ScheduleData *BundleMember = Bundle.getValue(); BundleMember;
1883            BundleMember = BundleMember->NextInBundle) {
1884         BundleMember->TE = Last;
1885         BundleMember->Lane = Lane;
1886         ++Lane;
1887       }
1888       assert((!Bundle.getValue() || Lane == VL.size()) &&
1889              "Bundle and VL out of sync");
1890     } else {
1891       MustGather.insert(VL.begin(), VL.end());
1892     }
1893 
1894     if (UserTreeIdx.UserTE)
1895       Last->UserTreeIndices.push_back(UserTreeIdx);
1896 
1897     return Last;
1898   }
1899 
1900   /// -- Vectorization State --
1901   /// Holds all of the tree entries.
1902   TreeEntry::VecTreeTy VectorizableTree;
1903 
1904 #ifndef NDEBUG
1905   /// Debug printer.
1906   LLVM_DUMP_METHOD void dumpVectorizableTree() const {
1907     for (unsigned Id = 0, IdE = VectorizableTree.size(); Id != IdE; ++Id) {
1908       VectorizableTree[Id]->dump();
1909       dbgs() << "\n";
1910     }
1911   }
1912 #endif
1913 
1914   TreeEntry *getTreeEntry(Value *V) { return ScalarToTreeEntry.lookup(V); }
1915 
1916   const TreeEntry *getTreeEntry(Value *V) const {
1917     return ScalarToTreeEntry.lookup(V);
1918   }
1919 
1920   /// Maps a specific scalar to its tree entry.
1921   SmallDenseMap<Value*, TreeEntry *> ScalarToTreeEntry;
1922 
1923   /// Maps a value to the proposed vectorizable size.
1924   SmallDenseMap<Value *, unsigned> InstrElementSize;
1925 
1926   /// A list of scalars that we found that we need to keep as scalars.
1927   ValueSet MustGather;
1928 
1929   /// This POD struct describes one external user in the vectorized tree.
1930   struct ExternalUser {
1931     ExternalUser(Value *S, llvm::User *U, int L)
1932         : Scalar(S), User(U), Lane(L) {}
1933 
1934     // Which scalar in our function.
1935     Value *Scalar;
1936 
1937     // Which user that uses the scalar.
1938     llvm::User *User;
1939 
1940     // Which lane does the scalar belong to.
1941     int Lane;
1942   };
1943   using UserList = SmallVector<ExternalUser, 16>;
1944 
1945   /// Checks if two instructions may access the same memory.
1946   ///
1947   /// \p Loc1 is the location of \p Inst1. It is passed explicitly because it
1948   /// is invariant in the calling loop.
1949   bool isAliased(const MemoryLocation &Loc1, Instruction *Inst1,
1950                  Instruction *Inst2) {
1951     // First check if the result is already in the cache.
1952     AliasCacheKey key = std::make_pair(Inst1, Inst2);
1953     Optional<bool> &result = AliasCache[key];
1954     if (result.hasValue()) {
1955       return result.getValue();
1956     }
1957     MemoryLocation Loc2 = getLocation(Inst2, AA);
1958     bool aliased = true;
1959     if (Loc1.Ptr && Loc2.Ptr && isSimple(Inst1) && isSimple(Inst2)) {
1960       // Do the alias check.
1961       aliased = !AA->isNoAlias(Loc1, Loc2);
1962     }
1963     // Store the result in the cache.
1964     result = aliased;
1965     return aliased;
1966   }
1967 
1968   using AliasCacheKey = std::pair<Instruction *, Instruction *>;
1969 
1970   /// Cache for alias results.
1971   /// TODO: consider moving this to the AliasAnalysis itself.
1972   DenseMap<AliasCacheKey, Optional<bool>> AliasCache;
1973 
1974   /// Removes an instruction from its block and eventually deletes it.
1975   /// It's like Instruction::eraseFromParent() except that the actual deletion
1976   /// is delayed until BoUpSLP is destructed.
1977   /// This is required to ensure that there are no incorrect collisions in the
1978   /// AliasCache, which can happen if a new instruction is allocated at the
1979   /// same address as a previously deleted instruction.
1980   void eraseInstruction(Instruction *I, bool ReplaceOpsWithUndef = false) {
1981     auto It = DeletedInstructions.try_emplace(I, ReplaceOpsWithUndef).first;
1982     It->getSecond() = It->getSecond() && ReplaceOpsWithUndef;
1983   }
1984 
1985   /// Temporary store for deleted instructions. Instructions will be deleted
1986   /// eventually when the BoUpSLP is destructed.
1987   DenseMap<Instruction *, bool> DeletedInstructions;
1988 
1989   /// A list of values that need to extracted out of the tree.
1990   /// This list holds pairs of (Internal Scalar : External User). External User
1991   /// can be nullptr, it means that this Internal Scalar will be used later,
1992   /// after vectorization.
1993   UserList ExternalUses;
1994 
1995   /// Values used only by @llvm.assume calls.
1996   SmallPtrSet<const Value *, 32> EphValues;
1997 
1998   /// Holds all of the instructions that we gathered.
1999   SetVector<Instruction *> GatherSeq;
2000 
2001   /// A list of blocks that we are going to CSE.
2002   SetVector<BasicBlock *> CSEBlocks;
2003 
2004   /// Contains all scheduling relevant data for an instruction.
2005   /// A ScheduleData either represents a single instruction or a member of an
2006   /// instruction bundle (= a group of instructions which is combined into a
2007   /// vector instruction).
2008   struct ScheduleData {
2009     // The initial value for the dependency counters. It means that the
2010     // dependencies are not calculated yet.
2011     enum { InvalidDeps = -1 };
2012 
2013     ScheduleData() = default;
2014 
2015     void init(int BlockSchedulingRegionID, Value *OpVal) {
2016       FirstInBundle = this;
2017       NextInBundle = nullptr;
2018       NextLoadStore = nullptr;
2019       IsScheduled = false;
2020       SchedulingRegionID = BlockSchedulingRegionID;
2021       UnscheduledDepsInBundle = UnscheduledDeps;
2022       clearDependencies();
2023       OpValue = OpVal;
2024       TE = nullptr;
2025       Lane = -1;
2026     }
2027 
2028     /// Returns true if the dependency information has been calculated.
2029     bool hasValidDependencies() const { return Dependencies != InvalidDeps; }
2030 
2031     /// Returns true for single instructions and for bundle representatives
2032     /// (= the head of a bundle).
2033     bool isSchedulingEntity() const { return FirstInBundle == this; }
2034 
2035     /// Returns true if it represents an instruction bundle and not only a
2036     /// single instruction.
2037     bool isPartOfBundle() const {
2038       return NextInBundle != nullptr || FirstInBundle != this;
2039     }
2040 
2041     /// Returns true if it is ready for scheduling, i.e. it has no more
2042     /// unscheduled depending instructions/bundles.
2043     bool isReady() const {
2044       assert(isSchedulingEntity() &&
2045              "can't consider non-scheduling entity for ready list");
2046       return UnscheduledDepsInBundle == 0 && !IsScheduled;
2047     }
2048 
2049     /// Modifies the number of unscheduled dependencies, also updating it for
2050     /// the whole bundle.
2051     int incrementUnscheduledDeps(int Incr) {
2052       UnscheduledDeps += Incr;
2053       return FirstInBundle->UnscheduledDepsInBundle += Incr;
2054     }
2055 
2056     /// Sets the number of unscheduled dependencies to the number of
2057     /// dependencies.
2058     void resetUnscheduledDeps() {
2059       incrementUnscheduledDeps(Dependencies - UnscheduledDeps);
2060     }
2061 
2062     /// Clears all dependency information.
2063     void clearDependencies() {
2064       Dependencies = InvalidDeps;
2065       resetUnscheduledDeps();
2066       MemoryDependencies.clear();
2067     }
2068 
2069     void dump(raw_ostream &os) const {
2070       if (!isSchedulingEntity()) {
2071         os << "/ " << *Inst;
2072       } else if (NextInBundle) {
2073         os << '[' << *Inst;
2074         ScheduleData *SD = NextInBundle;
2075         while (SD) {
2076           os << ';' << *SD->Inst;
2077           SD = SD->NextInBundle;
2078         }
2079         os << ']';
2080       } else {
2081         os << *Inst;
2082       }
2083     }
2084 
2085     Instruction *Inst = nullptr;
2086 
2087     /// Points to the head in an instruction bundle (and always to this for
2088     /// single instructions).
2089     ScheduleData *FirstInBundle = nullptr;
2090 
2091     /// Single linked list of all instructions in a bundle. Null if it is a
2092     /// single instruction.
2093     ScheduleData *NextInBundle = nullptr;
2094 
2095     /// Single linked list of all memory instructions (e.g. load, store, call)
2096     /// in the block - until the end of the scheduling region.
2097     ScheduleData *NextLoadStore = nullptr;
2098 
2099     /// The dependent memory instructions.
2100     /// This list is derived on demand in calculateDependencies().
2101     SmallVector<ScheduleData *, 4> MemoryDependencies;
2102 
2103     /// This ScheduleData is in the current scheduling region if this matches
2104     /// the current SchedulingRegionID of BlockScheduling.
2105     int SchedulingRegionID = 0;
2106 
2107     /// Used for getting a "good" final ordering of instructions.
2108     int SchedulingPriority = 0;
2109 
2110     /// The number of dependencies. Constitutes of the number of users of the
2111     /// instruction plus the number of dependent memory instructions (if any).
2112     /// This value is calculated on demand.
2113     /// If InvalidDeps, the number of dependencies is not calculated yet.
2114     int Dependencies = InvalidDeps;
2115 
2116     /// The number of dependencies minus the number of dependencies of scheduled
2117     /// instructions. As soon as this is zero, the instruction/bundle gets ready
2118     /// for scheduling.
2119     /// Note that this is negative as long as Dependencies is not calculated.
2120     int UnscheduledDeps = InvalidDeps;
2121 
2122     /// The sum of UnscheduledDeps in a bundle. Equals to UnscheduledDeps for
2123     /// single instructions.
2124     int UnscheduledDepsInBundle = InvalidDeps;
2125 
2126     /// True if this instruction is scheduled (or considered as scheduled in the
2127     /// dry-run).
2128     bool IsScheduled = false;
2129 
2130     /// Opcode of the current instruction in the schedule data.
2131     Value *OpValue = nullptr;
2132 
2133     /// The TreeEntry that this instruction corresponds to.
2134     TreeEntry *TE = nullptr;
2135 
2136     /// The lane of this node in the TreeEntry.
2137     int Lane = -1;
2138   };
2139 
2140 #ifndef NDEBUG
2141   friend inline raw_ostream &operator<<(raw_ostream &os,
2142                                         const BoUpSLP::ScheduleData &SD) {
2143     SD.dump(os);
2144     return os;
2145   }
2146 #endif
2147 
2148   friend struct GraphTraits<BoUpSLP *>;
2149   friend struct DOTGraphTraits<BoUpSLP *>;
2150 
2151   /// Contains all scheduling data for a basic block.
2152   struct BlockScheduling {
2153     BlockScheduling(BasicBlock *BB)
2154         : BB(BB), ChunkSize(BB->size()), ChunkPos(ChunkSize) {}
2155 
2156     void clear() {
2157       ReadyInsts.clear();
2158       ScheduleStart = nullptr;
2159       ScheduleEnd = nullptr;
2160       FirstLoadStoreInRegion = nullptr;
2161       LastLoadStoreInRegion = nullptr;
2162 
2163       // Reduce the maximum schedule region size by the size of the
2164       // previous scheduling run.
2165       ScheduleRegionSizeLimit -= ScheduleRegionSize;
2166       if (ScheduleRegionSizeLimit < MinScheduleRegionSize)
2167         ScheduleRegionSizeLimit = MinScheduleRegionSize;
2168       ScheduleRegionSize = 0;
2169 
2170       // Make a new scheduling region, i.e. all existing ScheduleData is not
2171       // in the new region yet.
2172       ++SchedulingRegionID;
2173     }
2174 
2175     ScheduleData *getScheduleData(Value *V) {
2176       ScheduleData *SD = ScheduleDataMap[V];
2177       if (SD && SD->SchedulingRegionID == SchedulingRegionID)
2178         return SD;
2179       return nullptr;
2180     }
2181 
2182     ScheduleData *getScheduleData(Value *V, Value *Key) {
2183       if (V == Key)
2184         return getScheduleData(V);
2185       auto I = ExtraScheduleDataMap.find(V);
2186       if (I != ExtraScheduleDataMap.end()) {
2187         ScheduleData *SD = I->second[Key];
2188         if (SD && SD->SchedulingRegionID == SchedulingRegionID)
2189           return SD;
2190       }
2191       return nullptr;
2192     }
2193 
2194     bool isInSchedulingRegion(ScheduleData *SD) const {
2195       return SD->SchedulingRegionID == SchedulingRegionID;
2196     }
2197 
2198     /// Marks an instruction as scheduled and puts all dependent ready
2199     /// instructions into the ready-list.
2200     template <typename ReadyListType>
2201     void schedule(ScheduleData *SD, ReadyListType &ReadyList) {
2202       SD->IsScheduled = true;
2203       LLVM_DEBUG(dbgs() << "SLP:   schedule " << *SD << "\n");
2204 
2205       ScheduleData *BundleMember = SD;
2206       while (BundleMember) {
2207         if (BundleMember->Inst != BundleMember->OpValue) {
2208           BundleMember = BundleMember->NextInBundle;
2209           continue;
2210         }
2211         // Handle the def-use chain dependencies.
2212 
2213         // Decrement the unscheduled counter and insert to ready list if ready.
2214         auto &&DecrUnsched = [this, &ReadyList](Instruction *I) {
2215           doForAllOpcodes(I, [&ReadyList](ScheduleData *OpDef) {
2216             if (OpDef && OpDef->hasValidDependencies() &&
2217                 OpDef->incrementUnscheduledDeps(-1) == 0) {
2218               // There are no more unscheduled dependencies after
2219               // decrementing, so we can put the dependent instruction
2220               // into the ready list.
2221               ScheduleData *DepBundle = OpDef->FirstInBundle;
2222               assert(!DepBundle->IsScheduled &&
2223                      "already scheduled bundle gets ready");
2224               ReadyList.insert(DepBundle);
2225               LLVM_DEBUG(dbgs()
2226                          << "SLP:    gets ready (def): " << *DepBundle << "\n");
2227             }
2228           });
2229         };
2230 
2231         // If BundleMember is a vector bundle, its operands may have been
2232         // reordered duiring buildTree(). We therefore need to get its operands
2233         // through the TreeEntry.
2234         if (TreeEntry *TE = BundleMember->TE) {
2235           int Lane = BundleMember->Lane;
2236           assert(Lane >= 0 && "Lane not set");
2237 
2238           // Since vectorization tree is being built recursively this assertion
2239           // ensures that the tree entry has all operands set before reaching
2240           // this code. Couple of exceptions known at the moment are extracts
2241           // where their second (immediate) operand is not added. Since
2242           // immediates do not affect scheduler behavior this is considered
2243           // okay.
2244           auto *In = TE->getMainOp();
2245           assert(In &&
2246                  (isa<ExtractValueInst>(In) || isa<ExtractElementInst>(In) ||
2247                   In->getNumOperands() == TE->getNumOperands()) &&
2248                  "Missed TreeEntry operands?");
2249           (void)In; // fake use to avoid build failure when assertions disabled
2250 
2251           for (unsigned OpIdx = 0, NumOperands = TE->getNumOperands();
2252                OpIdx != NumOperands; ++OpIdx)
2253             if (auto *I = dyn_cast<Instruction>(TE->getOperand(OpIdx)[Lane]))
2254               DecrUnsched(I);
2255         } else {
2256           // If BundleMember is a stand-alone instruction, no operand reordering
2257           // has taken place, so we directly access its operands.
2258           for (Use &U : BundleMember->Inst->operands())
2259             if (auto *I = dyn_cast<Instruction>(U.get()))
2260               DecrUnsched(I);
2261         }
2262         // Handle the memory dependencies.
2263         for (ScheduleData *MemoryDepSD : BundleMember->MemoryDependencies) {
2264           if (MemoryDepSD->incrementUnscheduledDeps(-1) == 0) {
2265             // There are no more unscheduled dependencies after decrementing,
2266             // so we can put the dependent instruction into the ready list.
2267             ScheduleData *DepBundle = MemoryDepSD->FirstInBundle;
2268             assert(!DepBundle->IsScheduled &&
2269                    "already scheduled bundle gets ready");
2270             ReadyList.insert(DepBundle);
2271             LLVM_DEBUG(dbgs()
2272                        << "SLP:    gets ready (mem): " << *DepBundle << "\n");
2273           }
2274         }
2275         BundleMember = BundleMember->NextInBundle;
2276       }
2277     }
2278 
2279     void doForAllOpcodes(Value *V,
2280                          function_ref<void(ScheduleData *SD)> Action) {
2281       if (ScheduleData *SD = getScheduleData(V))
2282         Action(SD);
2283       auto I = ExtraScheduleDataMap.find(V);
2284       if (I != ExtraScheduleDataMap.end())
2285         for (auto &P : I->second)
2286           if (P.second->SchedulingRegionID == SchedulingRegionID)
2287             Action(P.second);
2288     }
2289 
2290     /// Put all instructions into the ReadyList which are ready for scheduling.
2291     template <typename ReadyListType>
2292     void initialFillReadyList(ReadyListType &ReadyList) {
2293       for (auto *I = ScheduleStart; I != ScheduleEnd; I = I->getNextNode()) {
2294         doForAllOpcodes(I, [&](ScheduleData *SD) {
2295           if (SD->isSchedulingEntity() && SD->isReady()) {
2296             ReadyList.insert(SD);
2297             LLVM_DEBUG(dbgs()
2298                        << "SLP:    initially in ready list: " << *I << "\n");
2299           }
2300         });
2301       }
2302     }
2303 
2304     /// Checks if a bundle of instructions can be scheduled, i.e. has no
2305     /// cyclic dependencies. This is only a dry-run, no instructions are
2306     /// actually moved at this stage.
2307     /// \returns the scheduling bundle. The returned Optional value is non-None
2308     /// if \p VL is allowed to be scheduled.
2309     Optional<ScheduleData *>
2310     tryScheduleBundle(ArrayRef<Value *> VL, BoUpSLP *SLP,
2311                       const InstructionsState &S);
2312 
2313     /// Un-bundles a group of instructions.
2314     void cancelScheduling(ArrayRef<Value *> VL, Value *OpValue);
2315 
2316     /// Allocates schedule data chunk.
2317     ScheduleData *allocateScheduleDataChunks();
2318 
2319     /// Extends the scheduling region so that V is inside the region.
2320     /// \returns true if the region size is within the limit.
2321     bool extendSchedulingRegion(Value *V, const InstructionsState &S);
2322 
2323     /// Initialize the ScheduleData structures for new instructions in the
2324     /// scheduling region.
2325     void initScheduleData(Instruction *FromI, Instruction *ToI,
2326                           ScheduleData *PrevLoadStore,
2327                           ScheduleData *NextLoadStore);
2328 
2329     /// Updates the dependency information of a bundle and of all instructions/
2330     /// bundles which depend on the original bundle.
2331     void calculateDependencies(ScheduleData *SD, bool InsertInReadyList,
2332                                BoUpSLP *SLP);
2333 
2334     /// Sets all instruction in the scheduling region to un-scheduled.
2335     void resetSchedule();
2336 
2337     BasicBlock *BB;
2338 
2339     /// Simple memory allocation for ScheduleData.
2340     std::vector<std::unique_ptr<ScheduleData[]>> ScheduleDataChunks;
2341 
2342     /// The size of a ScheduleData array in ScheduleDataChunks.
2343     int ChunkSize;
2344 
2345     /// The allocator position in the current chunk, which is the last entry
2346     /// of ScheduleDataChunks.
2347     int ChunkPos;
2348 
2349     /// Attaches ScheduleData to Instruction.
2350     /// Note that the mapping survives during all vectorization iterations, i.e.
2351     /// ScheduleData structures are recycled.
2352     DenseMap<Value *, ScheduleData *> ScheduleDataMap;
2353 
2354     /// Attaches ScheduleData to Instruction with the leading key.
2355     DenseMap<Value *, SmallDenseMap<Value *, ScheduleData *>>
2356         ExtraScheduleDataMap;
2357 
2358     struct ReadyList : SmallVector<ScheduleData *, 8> {
2359       void insert(ScheduleData *SD) { push_back(SD); }
2360     };
2361 
2362     /// The ready-list for scheduling (only used for the dry-run).
2363     ReadyList ReadyInsts;
2364 
2365     /// The first instruction of the scheduling region.
2366     Instruction *ScheduleStart = nullptr;
2367 
2368     /// The first instruction _after_ the scheduling region.
2369     Instruction *ScheduleEnd = nullptr;
2370 
2371     /// The first memory accessing instruction in the scheduling region
2372     /// (can be null).
2373     ScheduleData *FirstLoadStoreInRegion = nullptr;
2374 
2375     /// The last memory accessing instruction in the scheduling region
2376     /// (can be null).
2377     ScheduleData *LastLoadStoreInRegion = nullptr;
2378 
2379     /// The current size of the scheduling region.
2380     int ScheduleRegionSize = 0;
2381 
2382     /// The maximum size allowed for the scheduling region.
2383     int ScheduleRegionSizeLimit = ScheduleRegionSizeBudget;
2384 
2385     /// The ID of the scheduling region. For a new vectorization iteration this
2386     /// is incremented which "removes" all ScheduleData from the region.
2387     // Make sure that the initial SchedulingRegionID is greater than the
2388     // initial SchedulingRegionID in ScheduleData (which is 0).
2389     int SchedulingRegionID = 1;
2390   };
2391 
2392   /// Attaches the BlockScheduling structures to basic blocks.
2393   MapVector<BasicBlock *, std::unique_ptr<BlockScheduling>> BlocksSchedules;
2394 
2395   /// Performs the "real" scheduling. Done before vectorization is actually
2396   /// performed in a basic block.
2397   void scheduleBlock(BlockScheduling *BS);
2398 
2399   /// List of users to ignore during scheduling and that don't need extracting.
2400   ArrayRef<Value *> UserIgnoreList;
2401 
2402   /// A DenseMapInfo implementation for holding DenseMaps and DenseSets of
2403   /// sorted SmallVectors of unsigned.
2404   struct OrdersTypeDenseMapInfo {
2405     static OrdersType getEmptyKey() {
2406       OrdersType V;
2407       V.push_back(~1U);
2408       return V;
2409     }
2410 
2411     static OrdersType getTombstoneKey() {
2412       OrdersType V;
2413       V.push_back(~2U);
2414       return V;
2415     }
2416 
2417     static unsigned getHashValue(const OrdersType &V) {
2418       return static_cast<unsigned>(hash_combine_range(V.begin(), V.end()));
2419     }
2420 
2421     static bool isEqual(const OrdersType &LHS, const OrdersType &RHS) {
2422       return LHS == RHS;
2423     }
2424   };
2425 
2426   /// Contains orders of operations along with the number of bundles that have
2427   /// operations in this order. It stores only those orders that require
2428   /// reordering, if reordering is not required it is counted using \a
2429   /// NumOpsWantToKeepOriginalOrder.
2430   DenseMap<OrdersType, unsigned, OrdersTypeDenseMapInfo> NumOpsWantToKeepOrder;
2431   /// Number of bundles that do not require reordering.
2432   unsigned NumOpsWantToKeepOriginalOrder = 0;
2433 
2434   // Analysis and block reference.
2435   Function *F;
2436   ScalarEvolution *SE;
2437   TargetTransformInfo *TTI;
2438   TargetLibraryInfo *TLI;
2439   AAResults *AA;
2440   LoopInfo *LI;
2441   DominatorTree *DT;
2442   AssumptionCache *AC;
2443   DemandedBits *DB;
2444   const DataLayout *DL;
2445   OptimizationRemarkEmitter *ORE;
2446 
2447   unsigned MaxVecRegSize; // This is set by TTI or overridden by cl::opt.
2448   unsigned MinVecRegSize; // Set by cl::opt (default: 128).
2449 
2450   /// Instruction builder to construct the vectorized tree.
2451   IRBuilder<> Builder;
2452 
2453   /// A map of scalar integer values to the smallest bit width with which they
2454   /// can legally be represented. The values map to (width, signed) pairs,
2455   /// where "width" indicates the minimum bit width and "signed" is True if the
2456   /// value must be signed-extended, rather than zero-extended, back to its
2457   /// original width.
2458   MapVector<Value *, std::pair<uint64_t, bool>> MinBWs;
2459 };
2460 
2461 } // end namespace slpvectorizer
2462 
2463 template <> struct GraphTraits<BoUpSLP *> {
2464   using TreeEntry = BoUpSLP::TreeEntry;
2465 
2466   /// NodeRef has to be a pointer per the GraphWriter.
2467   using NodeRef = TreeEntry *;
2468 
2469   using ContainerTy = BoUpSLP::TreeEntry::VecTreeTy;
2470 
2471   /// Add the VectorizableTree to the index iterator to be able to return
2472   /// TreeEntry pointers.
2473   struct ChildIteratorType
2474       : public iterator_adaptor_base<
2475             ChildIteratorType, SmallVector<BoUpSLP::EdgeInfo, 1>::iterator> {
2476     ContainerTy &VectorizableTree;
2477 
2478     ChildIteratorType(SmallVector<BoUpSLP::EdgeInfo, 1>::iterator W,
2479                       ContainerTy &VT)
2480         : ChildIteratorType::iterator_adaptor_base(W), VectorizableTree(VT) {}
2481 
2482     NodeRef operator*() { return I->UserTE; }
2483   };
2484 
2485   static NodeRef getEntryNode(BoUpSLP &R) {
2486     return R.VectorizableTree[0].get();
2487   }
2488 
2489   static ChildIteratorType child_begin(NodeRef N) {
2490     return {N->UserTreeIndices.begin(), N->Container};
2491   }
2492 
2493   static ChildIteratorType child_end(NodeRef N) {
2494     return {N->UserTreeIndices.end(), N->Container};
2495   }
2496 
2497   /// For the node iterator we just need to turn the TreeEntry iterator into a
2498   /// TreeEntry* iterator so that it dereferences to NodeRef.
2499   class nodes_iterator {
2500     using ItTy = ContainerTy::iterator;
2501     ItTy It;
2502 
2503   public:
2504     nodes_iterator(const ItTy &It2) : It(It2) {}
2505     NodeRef operator*() { return It->get(); }
2506     nodes_iterator operator++() {
2507       ++It;
2508       return *this;
2509     }
2510     bool operator!=(const nodes_iterator &N2) const { return N2.It != It; }
2511   };
2512 
2513   static nodes_iterator nodes_begin(BoUpSLP *R) {
2514     return nodes_iterator(R->VectorizableTree.begin());
2515   }
2516 
2517   static nodes_iterator nodes_end(BoUpSLP *R) {
2518     return nodes_iterator(R->VectorizableTree.end());
2519   }
2520 
2521   static unsigned size(BoUpSLP *R) { return R->VectorizableTree.size(); }
2522 };
2523 
2524 template <> struct DOTGraphTraits<BoUpSLP *> : public DefaultDOTGraphTraits {
2525   using TreeEntry = BoUpSLP::TreeEntry;
2526 
2527   DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {}
2528 
2529   std::string getNodeLabel(const TreeEntry *Entry, const BoUpSLP *R) {
2530     std::string Str;
2531     raw_string_ostream OS(Str);
2532     if (isSplat(Entry->Scalars)) {
2533       OS << "<splat> " << *Entry->Scalars[0];
2534       return Str;
2535     }
2536     for (auto V : Entry->Scalars) {
2537       OS << *V;
2538       if (llvm::any_of(R->ExternalUses, [&](const BoUpSLP::ExternalUser &EU) {
2539             return EU.Scalar == V;
2540           }))
2541         OS << " <extract>";
2542       OS << "\n";
2543     }
2544     return Str;
2545   }
2546 
2547   static std::string getNodeAttributes(const TreeEntry *Entry,
2548                                        const BoUpSLP *) {
2549     if (Entry->State == TreeEntry::NeedToGather)
2550       return "color=red";
2551     return "";
2552   }
2553 };
2554 
2555 } // end namespace llvm
2556 
2557 BoUpSLP::~BoUpSLP() {
2558   for (const auto &Pair : DeletedInstructions) {
2559     // Replace operands of ignored instructions with Undefs in case if they were
2560     // marked for deletion.
2561     if (Pair.getSecond()) {
2562       Value *Undef = UndefValue::get(Pair.getFirst()->getType());
2563       Pair.getFirst()->replaceAllUsesWith(Undef);
2564     }
2565     Pair.getFirst()->dropAllReferences();
2566   }
2567   for (const auto &Pair : DeletedInstructions) {
2568     assert(Pair.getFirst()->use_empty() &&
2569            "trying to erase instruction with users.");
2570     Pair.getFirst()->eraseFromParent();
2571   }
2572 #ifdef EXPENSIVE_CHECKS
2573   // If we could guarantee that this call is not extremely slow, we could
2574   // remove the ifdef limitation (see PR47712).
2575   assert(!verifyFunction(*F, &dbgs()));
2576 #endif
2577 }
2578 
2579 void BoUpSLP::eraseInstructions(ArrayRef<Value *> AV) {
2580   for (auto *V : AV) {
2581     if (auto *I = dyn_cast<Instruction>(V))
2582       eraseInstruction(I, /*ReplaceOpsWithUndef=*/true);
2583   };
2584 }
2585 
2586 void BoUpSLP::buildTree(ArrayRef<Value *> Roots,
2587                         ArrayRef<Value *> UserIgnoreLst) {
2588   ExtraValueToDebugLocsMap ExternallyUsedValues;
2589   buildTree(Roots, ExternallyUsedValues, UserIgnoreLst);
2590 }
2591 
2592 static int findLaneForValue(ArrayRef<Value *> Scalars,
2593                             ArrayRef<int> ReuseShuffleIndices, Value *V) {
2594   unsigned FoundLane = std::distance(Scalars.begin(), find(Scalars, V));
2595   assert(FoundLane < Scalars.size() && "Couldn't find extract lane");
2596   if (!ReuseShuffleIndices.empty()) {
2597     FoundLane = std::distance(ReuseShuffleIndices.begin(),
2598                               find(ReuseShuffleIndices, FoundLane));
2599   }
2600   return FoundLane;
2601 }
2602 
2603 void BoUpSLP::buildTree(ArrayRef<Value *> Roots,
2604                         ExtraValueToDebugLocsMap &ExternallyUsedValues,
2605                         ArrayRef<Value *> UserIgnoreLst) {
2606   deleteTree();
2607   UserIgnoreList = UserIgnoreLst;
2608   if (!allSameType(Roots))
2609     return;
2610   buildTree_rec(Roots, 0, EdgeInfo());
2611 
2612   // Collect the values that we need to extract from the tree.
2613   for (auto &TEPtr : VectorizableTree) {
2614     TreeEntry *Entry = TEPtr.get();
2615 
2616     // No need to handle users of gathered values.
2617     if (Entry->State == TreeEntry::NeedToGather)
2618       continue;
2619 
2620     // For each lane:
2621     for (int Lane = 0, LE = Entry->Scalars.size(); Lane != LE; ++Lane) {
2622       Value *Scalar = Entry->Scalars[Lane];
2623       int FoundLane =
2624           findLaneForValue(Entry->Scalars, Entry->ReuseShuffleIndices, Scalar);
2625 
2626       // Check if the scalar is externally used as an extra arg.
2627       auto ExtI = ExternallyUsedValues.find(Scalar);
2628       if (ExtI != ExternallyUsedValues.end()) {
2629         LLVM_DEBUG(dbgs() << "SLP: Need to extract: Extra arg from lane "
2630                           << Lane << " from " << *Scalar << ".\n");
2631         ExternalUses.emplace_back(Scalar, nullptr, FoundLane);
2632       }
2633       for (User *U : Scalar->users()) {
2634         LLVM_DEBUG(dbgs() << "SLP: Checking user:" << *U << ".\n");
2635 
2636         Instruction *UserInst = dyn_cast<Instruction>(U);
2637         if (!UserInst)
2638           continue;
2639 
2640         // Skip in-tree scalars that become vectors
2641         if (TreeEntry *UseEntry = getTreeEntry(U)) {
2642           Value *UseScalar = UseEntry->Scalars[0];
2643           // Some in-tree scalars will remain as scalar in vectorized
2644           // instructions. If that is the case, the one in Lane 0 will
2645           // be used.
2646           if (UseScalar != U ||
2647               UseEntry->State == TreeEntry::ScatterVectorize ||
2648               !InTreeUserNeedToExtract(Scalar, UserInst, TLI)) {
2649             LLVM_DEBUG(dbgs() << "SLP: \tInternal user will be removed:" << *U
2650                               << ".\n");
2651             assert(UseEntry->State != TreeEntry::NeedToGather && "Bad state");
2652             continue;
2653           }
2654         }
2655 
2656         // Ignore users in the user ignore list.
2657         if (is_contained(UserIgnoreList, UserInst))
2658           continue;
2659 
2660         LLVM_DEBUG(dbgs() << "SLP: Need to extract:" << *U << " from lane "
2661                           << Lane << " from " << *Scalar << ".\n");
2662         ExternalUses.push_back(ExternalUser(Scalar, U, FoundLane));
2663       }
2664     }
2665   }
2666 }
2667 
2668 void BoUpSLP::buildTree_rec(ArrayRef<Value *> VL, unsigned Depth,
2669                             const EdgeInfo &UserTreeIdx) {
2670   assert((allConstant(VL) || allSameType(VL)) && "Invalid types!");
2671 
2672   InstructionsState S = getSameOpcode(VL);
2673   if (Depth == RecursionMaxDepth) {
2674     LLVM_DEBUG(dbgs() << "SLP: Gathering due to max recursion depth.\n");
2675     newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2676     return;
2677   }
2678 
2679   // Don't handle vectors.
2680   if (S.OpValue->getType()->isVectorTy() &&
2681       !isa<InsertElementInst>(S.OpValue)) {
2682     LLVM_DEBUG(dbgs() << "SLP: Gathering due to vector type.\n");
2683     newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2684     return;
2685   }
2686 
2687   if (StoreInst *SI = dyn_cast<StoreInst>(S.OpValue))
2688     if (SI->getValueOperand()->getType()->isVectorTy()) {
2689       LLVM_DEBUG(dbgs() << "SLP: Gathering due to store vector type.\n");
2690       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2691       return;
2692     }
2693 
2694   // If all of the operands are identical or constant we have a simple solution.
2695   if (allConstant(VL) || isSplat(VL) || !allSameBlock(VL) || !S.getOpcode()) {
2696     LLVM_DEBUG(dbgs() << "SLP: Gathering due to C,S,B,O. \n");
2697     newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2698     return;
2699   }
2700 
2701   // We now know that this is a vector of instructions of the same type from
2702   // the same block.
2703 
2704   // Don't vectorize ephemeral values.
2705   for (Value *V : VL) {
2706     if (EphValues.count(V)) {
2707       LLVM_DEBUG(dbgs() << "SLP: The instruction (" << *V
2708                         << ") is ephemeral.\n");
2709       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2710       return;
2711     }
2712   }
2713 
2714   // Check if this is a duplicate of another entry.
2715   if (TreeEntry *E = getTreeEntry(S.OpValue)) {
2716     LLVM_DEBUG(dbgs() << "SLP: \tChecking bundle: " << *S.OpValue << ".\n");
2717     if (!E->isSame(VL)) {
2718       LLVM_DEBUG(dbgs() << "SLP: Gathering due to partial overlap.\n");
2719       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2720       return;
2721     }
2722     // Record the reuse of the tree node.  FIXME, currently this is only used to
2723     // properly draw the graph rather than for the actual vectorization.
2724     E->UserTreeIndices.push_back(UserTreeIdx);
2725     LLVM_DEBUG(dbgs() << "SLP: Perfect diamond merge at " << *S.OpValue
2726                       << ".\n");
2727     return;
2728   }
2729 
2730   // Check that none of the instructions in the bundle are already in the tree.
2731   for (Value *V : VL) {
2732     auto *I = dyn_cast<Instruction>(V);
2733     if (!I)
2734       continue;
2735     if (getTreeEntry(I)) {
2736       LLVM_DEBUG(dbgs() << "SLP: The instruction (" << *V
2737                         << ") is already in tree.\n");
2738       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2739       return;
2740     }
2741   }
2742 
2743   // If any of the scalars is marked as a value that needs to stay scalar, then
2744   // we need to gather the scalars.
2745   // The reduction nodes (stored in UserIgnoreList) also should stay scalar.
2746   for (Value *V : VL) {
2747     if (MustGather.count(V) || is_contained(UserIgnoreList, V)) {
2748       LLVM_DEBUG(dbgs() << "SLP: Gathering due to gathered scalar.\n");
2749       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2750       return;
2751     }
2752   }
2753 
2754   // Check that all of the users of the scalars that we want to vectorize are
2755   // schedulable.
2756   auto *VL0 = cast<Instruction>(S.OpValue);
2757   BasicBlock *BB = VL0->getParent();
2758 
2759   if (!DT->isReachableFromEntry(BB)) {
2760     // Don't go into unreachable blocks. They may contain instructions with
2761     // dependency cycles which confuse the final scheduling.
2762     LLVM_DEBUG(dbgs() << "SLP: bundle in unreachable block.\n");
2763     newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2764     return;
2765   }
2766 
2767   // Check that every instruction appears once in this bundle.
2768   SmallVector<unsigned, 4> ReuseShuffleIndicies;
2769   SmallVector<Value *, 4> UniqueValues;
2770   DenseMap<Value *, unsigned> UniquePositions;
2771   for (Value *V : VL) {
2772     auto Res = UniquePositions.try_emplace(V, UniqueValues.size());
2773     ReuseShuffleIndicies.emplace_back(Res.first->second);
2774     if (Res.second)
2775       UniqueValues.emplace_back(V);
2776   }
2777   size_t NumUniqueScalarValues = UniqueValues.size();
2778   if (NumUniqueScalarValues == VL.size()) {
2779     ReuseShuffleIndicies.clear();
2780   } else {
2781     LLVM_DEBUG(dbgs() << "SLP: Shuffle for reused scalars.\n");
2782     if (NumUniqueScalarValues <= 1 ||
2783         !llvm::isPowerOf2_32(NumUniqueScalarValues)) {
2784       LLVM_DEBUG(dbgs() << "SLP: Scalar used twice in bundle.\n");
2785       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx);
2786       return;
2787     }
2788     VL = UniqueValues;
2789   }
2790 
2791   auto &BSRef = BlocksSchedules[BB];
2792   if (!BSRef)
2793     BSRef = std::make_unique<BlockScheduling>(BB);
2794 
2795   BlockScheduling &BS = *BSRef.get();
2796 
2797   Optional<ScheduleData *> Bundle = BS.tryScheduleBundle(VL, this, S);
2798   if (!Bundle) {
2799     LLVM_DEBUG(dbgs() << "SLP: We are not able to schedule this bundle!\n");
2800     assert((!BS.getScheduleData(VL0) ||
2801             !BS.getScheduleData(VL0)->isPartOfBundle()) &&
2802            "tryScheduleBundle should cancelScheduling on failure");
2803     newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
2804                  ReuseShuffleIndicies);
2805     return;
2806   }
2807   LLVM_DEBUG(dbgs() << "SLP: We are able to schedule this bundle.\n");
2808 
2809   unsigned ShuffleOrOp = S.isAltShuffle() ?
2810                 (unsigned) Instruction::ShuffleVector : S.getOpcode();
2811   switch (ShuffleOrOp) {
2812     case Instruction::PHI: {
2813       auto *PH = cast<PHINode>(VL0);
2814 
2815       // Check for terminator values (e.g. invoke).
2816       for (Value *V : VL)
2817         for (unsigned I = 0, E = PH->getNumIncomingValues(); I < E; ++I) {
2818           Instruction *Term = dyn_cast<Instruction>(
2819               cast<PHINode>(V)->getIncomingValueForBlock(
2820                   PH->getIncomingBlock(I)));
2821           if (Term && Term->isTerminator()) {
2822             LLVM_DEBUG(dbgs()
2823                        << "SLP: Need to swizzle PHINodes (terminator use).\n");
2824             BS.cancelScheduling(VL, VL0);
2825             newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
2826                          ReuseShuffleIndicies);
2827             return;
2828           }
2829         }
2830 
2831       TreeEntry *TE =
2832           newTreeEntry(VL, Bundle, S, UserTreeIdx, ReuseShuffleIndicies);
2833       LLVM_DEBUG(dbgs() << "SLP: added a vector of PHINodes.\n");
2834 
2835       // Keeps the reordered operands to avoid code duplication.
2836       SmallVector<ValueList, 2> OperandsVec;
2837       for (unsigned I = 0, E = PH->getNumIncomingValues(); I < E; ++I) {
2838         if (!DT->isReachableFromEntry(PH->getIncomingBlock(I))) {
2839           ValueList Operands(VL.size(), PoisonValue::get(PH->getType()));
2840           TE->setOperand(I, Operands);
2841           OperandsVec.push_back(Operands);
2842           continue;
2843         }
2844         ValueList Operands;
2845         // Prepare the operand vector.
2846         for (Value *V : VL)
2847           Operands.push_back(cast<PHINode>(V)->getIncomingValueForBlock(
2848               PH->getIncomingBlock(I)));
2849         TE->setOperand(I, Operands);
2850         OperandsVec.push_back(Operands);
2851       }
2852       for (unsigned OpIdx = 0, OpE = OperandsVec.size(); OpIdx != OpE; ++OpIdx)
2853         buildTree_rec(OperandsVec[OpIdx], Depth + 1, {TE, OpIdx});
2854       return;
2855     }
2856     case Instruction::ExtractValue:
2857     case Instruction::ExtractElement: {
2858       OrdersType CurrentOrder;
2859       bool Reuse = canReuseExtract(VL, VL0, CurrentOrder);
2860       if (Reuse) {
2861         LLVM_DEBUG(dbgs() << "SLP: Reusing or shuffling extract sequence.\n");
2862         ++NumOpsWantToKeepOriginalOrder;
2863         newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
2864                      ReuseShuffleIndicies);
2865         // This is a special case, as it does not gather, but at the same time
2866         // we are not extending buildTree_rec() towards the operands.
2867         ValueList Op0;
2868         Op0.assign(VL.size(), VL0->getOperand(0));
2869         VectorizableTree.back()->setOperand(0, Op0);
2870         return;
2871       }
2872       if (!CurrentOrder.empty()) {
2873         LLVM_DEBUG({
2874           dbgs() << "SLP: Reusing or shuffling of reordered extract sequence "
2875                     "with order";
2876           for (unsigned Idx : CurrentOrder)
2877             dbgs() << " " << Idx;
2878           dbgs() << "\n";
2879         });
2880         // Insert new order with initial value 0, if it does not exist,
2881         // otherwise return the iterator to the existing one.
2882         newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
2883                      ReuseShuffleIndicies, CurrentOrder);
2884         findRootOrder(CurrentOrder);
2885         ++NumOpsWantToKeepOrder[CurrentOrder];
2886         // This is a special case, as it does not gather, but at the same time
2887         // we are not extending buildTree_rec() towards the operands.
2888         ValueList Op0;
2889         Op0.assign(VL.size(), VL0->getOperand(0));
2890         VectorizableTree.back()->setOperand(0, Op0);
2891         return;
2892       }
2893       LLVM_DEBUG(dbgs() << "SLP: Gather extract sequence.\n");
2894       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
2895                    ReuseShuffleIndicies);
2896       BS.cancelScheduling(VL, VL0);
2897       return;
2898     }
2899     case Instruction::InsertElement: {
2900       assert(ReuseShuffleIndicies.empty() && "All inserts should be unique");
2901 
2902       // Check that we have a buildvector and not a shuffle of 2 or more
2903       // different vectors.
2904       ValueSet SourceVectors;
2905       for (Value *V : VL)
2906         SourceVectors.insert(cast<Instruction>(V)->getOperand(0));
2907 
2908       if (count_if(VL, [&SourceVectors](Value *V) {
2909             return !SourceVectors.contains(V);
2910           }) >= 2) {
2911         // Found 2nd source vector - cancel.
2912         LLVM_DEBUG(dbgs() << "SLP: Gather of insertelement vectors with "
2913                              "different source vectors.\n");
2914         newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
2915                      ReuseShuffleIndicies);
2916         BS.cancelScheduling(VL, VL0);
2917         return;
2918       }
2919 
2920       TreeEntry *TE = newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx);
2921       LLVM_DEBUG(dbgs() << "SLP: added inserts bundle.\n");
2922 
2923       constexpr int NumOps = 2;
2924       ValueList VectorOperands[NumOps];
2925       for (int I = 0; I < NumOps; ++I) {
2926         for (Value *V : VL)
2927           VectorOperands[I].push_back(cast<Instruction>(V)->getOperand(I));
2928 
2929         TE->setOperand(I, VectorOperands[I]);
2930       }
2931       buildTree_rec(VectorOperands[NumOps - 1], Depth + 1, {TE, 0});
2932       return;
2933     }
2934     case Instruction::Load: {
2935       // Check that a vectorized load would load the same memory as a scalar
2936       // load. For example, we don't want to vectorize loads that are smaller
2937       // than 8-bit. Even though we have a packed struct {<i2, i2, i2, i2>} LLVM
2938       // treats loading/storing it as an i8 struct. If we vectorize loads/stores
2939       // from such a struct, we read/write packed bits disagreeing with the
2940       // unvectorized version.
2941       Type *ScalarTy = VL0->getType();
2942 
2943       if (DL->getTypeSizeInBits(ScalarTy) !=
2944           DL->getTypeAllocSizeInBits(ScalarTy)) {
2945         BS.cancelScheduling(VL, VL0);
2946         newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
2947                      ReuseShuffleIndicies);
2948         LLVM_DEBUG(dbgs() << "SLP: Gathering loads of non-packed type.\n");
2949         return;
2950       }
2951 
2952       // Make sure all loads in the bundle are simple - we can't vectorize
2953       // atomic or volatile loads.
2954       SmallVector<Value *, 4> PointerOps(VL.size());
2955       auto POIter = PointerOps.begin();
2956       for (Value *V : VL) {
2957         auto *L = cast<LoadInst>(V);
2958         if (!L->isSimple()) {
2959           BS.cancelScheduling(VL, VL0);
2960           newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
2961                        ReuseShuffleIndicies);
2962           LLVM_DEBUG(dbgs() << "SLP: Gathering non-simple loads.\n");
2963           return;
2964         }
2965         *POIter = L->getPointerOperand();
2966         ++POIter;
2967       }
2968 
2969       OrdersType CurrentOrder;
2970       // Check the order of pointer operands.
2971       if (llvm::sortPtrAccesses(PointerOps, ScalarTy, *DL, *SE, CurrentOrder)) {
2972         Value *Ptr0;
2973         Value *PtrN;
2974         if (CurrentOrder.empty()) {
2975           Ptr0 = PointerOps.front();
2976           PtrN = PointerOps.back();
2977         } else {
2978           Ptr0 = PointerOps[CurrentOrder.front()];
2979           PtrN = PointerOps[CurrentOrder.back()];
2980         }
2981         Optional<int> Diff = getPointersDiff(
2982             ScalarTy, Ptr0, ScalarTy, PtrN, *DL, *SE);
2983         // Check that the sorted loads are consecutive.
2984         if (static_cast<unsigned>(*Diff) == VL.size() - 1) {
2985           if (CurrentOrder.empty()) {
2986             // Original loads are consecutive and does not require reordering.
2987             ++NumOpsWantToKeepOriginalOrder;
2988             TreeEntry *TE = newTreeEntry(VL, Bundle /*vectorized*/, S,
2989                                          UserTreeIdx, ReuseShuffleIndicies);
2990             TE->setOperandsInOrder();
2991             LLVM_DEBUG(dbgs() << "SLP: added a vector of loads.\n");
2992           } else {
2993             // Need to reorder.
2994             TreeEntry *TE =
2995                 newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
2996                              ReuseShuffleIndicies, CurrentOrder);
2997             TE->setOperandsInOrder();
2998             LLVM_DEBUG(dbgs() << "SLP: added a vector of jumbled loads.\n");
2999             findRootOrder(CurrentOrder);
3000             ++NumOpsWantToKeepOrder[CurrentOrder];
3001           }
3002           return;
3003         }
3004         // Vectorizing non-consecutive loads with `llvm.masked.gather`.
3005         TreeEntry *TE = newTreeEntry(VL, TreeEntry::ScatterVectorize, Bundle, S,
3006                                      UserTreeIdx, ReuseShuffleIndicies);
3007         TE->setOperandsInOrder();
3008         buildTree_rec(PointerOps, Depth + 1, {TE, 0});
3009         LLVM_DEBUG(dbgs() << "SLP: added a vector of non-consecutive loads.\n");
3010         return;
3011       }
3012 
3013       LLVM_DEBUG(dbgs() << "SLP: Gathering non-consecutive loads.\n");
3014       BS.cancelScheduling(VL, VL0);
3015       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3016                    ReuseShuffleIndicies);
3017       return;
3018     }
3019     case Instruction::ZExt:
3020     case Instruction::SExt:
3021     case Instruction::FPToUI:
3022     case Instruction::FPToSI:
3023     case Instruction::FPExt:
3024     case Instruction::PtrToInt:
3025     case Instruction::IntToPtr:
3026     case Instruction::SIToFP:
3027     case Instruction::UIToFP:
3028     case Instruction::Trunc:
3029     case Instruction::FPTrunc:
3030     case Instruction::BitCast: {
3031       Type *SrcTy = VL0->getOperand(0)->getType();
3032       for (Value *V : VL) {
3033         Type *Ty = cast<Instruction>(V)->getOperand(0)->getType();
3034         if (Ty != SrcTy || !isValidElementType(Ty)) {
3035           BS.cancelScheduling(VL, VL0);
3036           newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3037                        ReuseShuffleIndicies);
3038           LLVM_DEBUG(dbgs()
3039                      << "SLP: Gathering casts with different src types.\n");
3040           return;
3041         }
3042       }
3043       TreeEntry *TE = newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
3044                                    ReuseShuffleIndicies);
3045       LLVM_DEBUG(dbgs() << "SLP: added a vector of casts.\n");
3046 
3047       TE->setOperandsInOrder();
3048       for (unsigned i = 0, e = VL0->getNumOperands(); i < e; ++i) {
3049         ValueList Operands;
3050         // Prepare the operand vector.
3051         for (Value *V : VL)
3052           Operands.push_back(cast<Instruction>(V)->getOperand(i));
3053 
3054         buildTree_rec(Operands, Depth + 1, {TE, i});
3055       }
3056       return;
3057     }
3058     case Instruction::ICmp:
3059     case Instruction::FCmp: {
3060       // Check that all of the compares have the same predicate.
3061       CmpInst::Predicate P0 = cast<CmpInst>(VL0)->getPredicate();
3062       CmpInst::Predicate SwapP0 = CmpInst::getSwappedPredicate(P0);
3063       Type *ComparedTy = VL0->getOperand(0)->getType();
3064       for (Value *V : VL) {
3065         CmpInst *Cmp = cast<CmpInst>(V);
3066         if ((Cmp->getPredicate() != P0 && Cmp->getPredicate() != SwapP0) ||
3067             Cmp->getOperand(0)->getType() != ComparedTy) {
3068           BS.cancelScheduling(VL, VL0);
3069           newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3070                        ReuseShuffleIndicies);
3071           LLVM_DEBUG(dbgs()
3072                      << "SLP: Gathering cmp with different predicate.\n");
3073           return;
3074         }
3075       }
3076 
3077       TreeEntry *TE = newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
3078                                    ReuseShuffleIndicies);
3079       LLVM_DEBUG(dbgs() << "SLP: added a vector of compares.\n");
3080 
3081       ValueList Left, Right;
3082       if (cast<CmpInst>(VL0)->isCommutative()) {
3083         // Commutative predicate - collect + sort operands of the instructions
3084         // so that each side is more likely to have the same opcode.
3085         assert(P0 == SwapP0 && "Commutative Predicate mismatch");
3086         reorderInputsAccordingToOpcode(VL, Left, Right, *DL, *SE, *this);
3087       } else {
3088         // Collect operands - commute if it uses the swapped predicate.
3089         for (Value *V : VL) {
3090           auto *Cmp = cast<CmpInst>(V);
3091           Value *LHS = Cmp->getOperand(0);
3092           Value *RHS = Cmp->getOperand(1);
3093           if (Cmp->getPredicate() != P0)
3094             std::swap(LHS, RHS);
3095           Left.push_back(LHS);
3096           Right.push_back(RHS);
3097         }
3098       }
3099       TE->setOperand(0, Left);
3100       TE->setOperand(1, Right);
3101       buildTree_rec(Left, Depth + 1, {TE, 0});
3102       buildTree_rec(Right, Depth + 1, {TE, 1});
3103       return;
3104     }
3105     case Instruction::Select:
3106     case Instruction::FNeg:
3107     case Instruction::Add:
3108     case Instruction::FAdd:
3109     case Instruction::Sub:
3110     case Instruction::FSub:
3111     case Instruction::Mul:
3112     case Instruction::FMul:
3113     case Instruction::UDiv:
3114     case Instruction::SDiv:
3115     case Instruction::FDiv:
3116     case Instruction::URem:
3117     case Instruction::SRem:
3118     case Instruction::FRem:
3119     case Instruction::Shl:
3120     case Instruction::LShr:
3121     case Instruction::AShr:
3122     case Instruction::And:
3123     case Instruction::Or:
3124     case Instruction::Xor: {
3125       TreeEntry *TE = newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
3126                                    ReuseShuffleIndicies);
3127       LLVM_DEBUG(dbgs() << "SLP: added a vector of un/bin op.\n");
3128 
3129       // Sort operands of the instructions so that each side is more likely to
3130       // have the same opcode.
3131       if (isa<BinaryOperator>(VL0) && VL0->isCommutative()) {
3132         ValueList Left, Right;
3133         reorderInputsAccordingToOpcode(VL, Left, Right, *DL, *SE, *this);
3134         TE->setOperand(0, Left);
3135         TE->setOperand(1, Right);
3136         buildTree_rec(Left, Depth + 1, {TE, 0});
3137         buildTree_rec(Right, Depth + 1, {TE, 1});
3138         return;
3139       }
3140 
3141       TE->setOperandsInOrder();
3142       for (unsigned i = 0, e = VL0->getNumOperands(); i < e; ++i) {
3143         ValueList Operands;
3144         // Prepare the operand vector.
3145         for (Value *V : VL)
3146           Operands.push_back(cast<Instruction>(V)->getOperand(i));
3147 
3148         buildTree_rec(Operands, Depth + 1, {TE, i});
3149       }
3150       return;
3151     }
3152     case Instruction::GetElementPtr: {
3153       // We don't combine GEPs with complicated (nested) indexing.
3154       for (Value *V : VL) {
3155         if (cast<Instruction>(V)->getNumOperands() != 2) {
3156           LLVM_DEBUG(dbgs() << "SLP: not-vectorizable GEP (nested indexes).\n");
3157           BS.cancelScheduling(VL, VL0);
3158           newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3159                        ReuseShuffleIndicies);
3160           return;
3161         }
3162       }
3163 
3164       // We can't combine several GEPs into one vector if they operate on
3165       // different types.
3166       Type *Ty0 = VL0->getOperand(0)->getType();
3167       for (Value *V : VL) {
3168         Type *CurTy = cast<Instruction>(V)->getOperand(0)->getType();
3169         if (Ty0 != CurTy) {
3170           LLVM_DEBUG(dbgs()
3171                      << "SLP: not-vectorizable GEP (different types).\n");
3172           BS.cancelScheduling(VL, VL0);
3173           newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3174                        ReuseShuffleIndicies);
3175           return;
3176         }
3177       }
3178 
3179       // We don't combine GEPs with non-constant indexes.
3180       Type *Ty1 = VL0->getOperand(1)->getType();
3181       for (Value *V : VL) {
3182         auto Op = cast<Instruction>(V)->getOperand(1);
3183         if (!isa<ConstantInt>(Op) ||
3184             (Op->getType() != Ty1 &&
3185              Op->getType()->getScalarSizeInBits() >
3186                  DL->getIndexSizeInBits(
3187                      V->getType()->getPointerAddressSpace()))) {
3188           LLVM_DEBUG(dbgs()
3189                      << "SLP: not-vectorizable GEP (non-constant indexes).\n");
3190           BS.cancelScheduling(VL, VL0);
3191           newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3192                        ReuseShuffleIndicies);
3193           return;
3194         }
3195       }
3196 
3197       TreeEntry *TE = newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
3198                                    ReuseShuffleIndicies);
3199       LLVM_DEBUG(dbgs() << "SLP: added a vector of GEPs.\n");
3200       TE->setOperandsInOrder();
3201       for (unsigned i = 0, e = 2; i < e; ++i) {
3202         ValueList Operands;
3203         // Prepare the operand vector.
3204         for (Value *V : VL)
3205           Operands.push_back(cast<Instruction>(V)->getOperand(i));
3206 
3207         buildTree_rec(Operands, Depth + 1, {TE, i});
3208       }
3209       return;
3210     }
3211     case Instruction::Store: {
3212       // Check if the stores are consecutive or if we need to swizzle them.
3213       llvm::Type *ScalarTy = cast<StoreInst>(VL0)->getValueOperand()->getType();
3214       // Avoid types that are padded when being allocated as scalars, while
3215       // being packed together in a vector (such as i1).
3216       if (DL->getTypeSizeInBits(ScalarTy) !=
3217           DL->getTypeAllocSizeInBits(ScalarTy)) {
3218         BS.cancelScheduling(VL, VL0);
3219         newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3220                      ReuseShuffleIndicies);
3221         LLVM_DEBUG(dbgs() << "SLP: Gathering stores of non-packed type.\n");
3222         return;
3223       }
3224       // Make sure all stores in the bundle are simple - we can't vectorize
3225       // atomic or volatile stores.
3226       SmallVector<Value *, 4> PointerOps(VL.size());
3227       ValueList Operands(VL.size());
3228       auto POIter = PointerOps.begin();
3229       auto OIter = Operands.begin();
3230       for (Value *V : VL) {
3231         auto *SI = cast<StoreInst>(V);
3232         if (!SI->isSimple()) {
3233           BS.cancelScheduling(VL, VL0);
3234           newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3235                        ReuseShuffleIndicies);
3236           LLVM_DEBUG(dbgs() << "SLP: Gathering non-simple stores.\n");
3237           return;
3238         }
3239         *POIter = SI->getPointerOperand();
3240         *OIter = SI->getValueOperand();
3241         ++POIter;
3242         ++OIter;
3243       }
3244 
3245       OrdersType CurrentOrder;
3246       // Check the order of pointer operands.
3247       if (llvm::sortPtrAccesses(PointerOps, ScalarTy, *DL, *SE, CurrentOrder)) {
3248         Value *Ptr0;
3249         Value *PtrN;
3250         if (CurrentOrder.empty()) {
3251           Ptr0 = PointerOps.front();
3252           PtrN = PointerOps.back();
3253         } else {
3254           Ptr0 = PointerOps[CurrentOrder.front()];
3255           PtrN = PointerOps[CurrentOrder.back()];
3256         }
3257         Optional<int> Dist =
3258             getPointersDiff(ScalarTy, Ptr0, ScalarTy, PtrN, *DL, *SE);
3259         // Check that the sorted pointer operands are consecutive.
3260         if (static_cast<unsigned>(*Dist) == VL.size() - 1) {
3261           if (CurrentOrder.empty()) {
3262             // Original stores are consecutive and does not require reordering.
3263             ++NumOpsWantToKeepOriginalOrder;
3264             TreeEntry *TE = newTreeEntry(VL, Bundle /*vectorized*/, S,
3265                                          UserTreeIdx, ReuseShuffleIndicies);
3266             TE->setOperandsInOrder();
3267             buildTree_rec(Operands, Depth + 1, {TE, 0});
3268             LLVM_DEBUG(dbgs() << "SLP: added a vector of stores.\n");
3269           } else {
3270             TreeEntry *TE =
3271                 newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
3272                              ReuseShuffleIndicies, CurrentOrder);
3273             TE->setOperandsInOrder();
3274             buildTree_rec(Operands, Depth + 1, {TE, 0});
3275             LLVM_DEBUG(dbgs() << "SLP: added a vector of jumbled stores.\n");
3276             findRootOrder(CurrentOrder);
3277             ++NumOpsWantToKeepOrder[CurrentOrder];
3278           }
3279           return;
3280         }
3281       }
3282 
3283       BS.cancelScheduling(VL, VL0);
3284       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3285                    ReuseShuffleIndicies);
3286       LLVM_DEBUG(dbgs() << "SLP: Non-consecutive store.\n");
3287       return;
3288     }
3289     case Instruction::Call: {
3290       // Check if the calls are all to the same vectorizable intrinsic or
3291       // library function.
3292       CallInst *CI = cast<CallInst>(VL0);
3293       Intrinsic::ID ID = getVectorIntrinsicIDForCall(CI, TLI);
3294 
3295       VFShape Shape = VFShape::get(
3296           *CI, ElementCount::getFixed(static_cast<unsigned int>(VL.size())),
3297           false /*HasGlobalPred*/);
3298       Function *VecFunc = VFDatabase(*CI).getVectorizedFunction(Shape);
3299 
3300       if (!VecFunc && !isTriviallyVectorizable(ID)) {
3301         BS.cancelScheduling(VL, VL0);
3302         newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3303                      ReuseShuffleIndicies);
3304         LLVM_DEBUG(dbgs() << "SLP: Non-vectorizable call.\n");
3305         return;
3306       }
3307       Function *F = CI->getCalledFunction();
3308       unsigned NumArgs = CI->getNumArgOperands();
3309       SmallVector<Value*, 4> ScalarArgs(NumArgs, nullptr);
3310       for (unsigned j = 0; j != NumArgs; ++j)
3311         if (hasVectorInstrinsicScalarOpd(ID, j))
3312           ScalarArgs[j] = CI->getArgOperand(j);
3313       for (Value *V : VL) {
3314         CallInst *CI2 = dyn_cast<CallInst>(V);
3315         if (!CI2 || CI2->getCalledFunction() != F ||
3316             getVectorIntrinsicIDForCall(CI2, TLI) != ID ||
3317             (VecFunc &&
3318              VecFunc != VFDatabase(*CI2).getVectorizedFunction(Shape)) ||
3319             !CI->hasIdenticalOperandBundleSchema(*CI2)) {
3320           BS.cancelScheduling(VL, VL0);
3321           newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3322                        ReuseShuffleIndicies);
3323           LLVM_DEBUG(dbgs() << "SLP: mismatched calls:" << *CI << "!=" << *V
3324                             << "\n");
3325           return;
3326         }
3327         // Some intrinsics have scalar arguments and should be same in order for
3328         // them to be vectorized.
3329         for (unsigned j = 0; j != NumArgs; ++j) {
3330           if (hasVectorInstrinsicScalarOpd(ID, j)) {
3331             Value *A1J = CI2->getArgOperand(j);
3332             if (ScalarArgs[j] != A1J) {
3333               BS.cancelScheduling(VL, VL0);
3334               newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3335                            ReuseShuffleIndicies);
3336               LLVM_DEBUG(dbgs() << "SLP: mismatched arguments in call:" << *CI
3337                                 << " argument " << ScalarArgs[j] << "!=" << A1J
3338                                 << "\n");
3339               return;
3340             }
3341           }
3342         }
3343         // Verify that the bundle operands are identical between the two calls.
3344         if (CI->hasOperandBundles() &&
3345             !std::equal(CI->op_begin() + CI->getBundleOperandsStartIndex(),
3346                         CI->op_begin() + CI->getBundleOperandsEndIndex(),
3347                         CI2->op_begin() + CI2->getBundleOperandsStartIndex())) {
3348           BS.cancelScheduling(VL, VL0);
3349           newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3350                        ReuseShuffleIndicies);
3351           LLVM_DEBUG(dbgs() << "SLP: mismatched bundle operands in calls:"
3352                             << *CI << "!=" << *V << '\n');
3353           return;
3354         }
3355       }
3356 
3357       TreeEntry *TE = newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
3358                                    ReuseShuffleIndicies);
3359       TE->setOperandsInOrder();
3360       for (unsigned i = 0, e = CI->getNumArgOperands(); i != e; ++i) {
3361         ValueList Operands;
3362         // Prepare the operand vector.
3363         for (Value *V : VL) {
3364           auto *CI2 = cast<CallInst>(V);
3365           Operands.push_back(CI2->getArgOperand(i));
3366         }
3367         buildTree_rec(Operands, Depth + 1, {TE, i});
3368       }
3369       return;
3370     }
3371     case Instruction::ShuffleVector: {
3372       // If this is not an alternate sequence of opcode like add-sub
3373       // then do not vectorize this instruction.
3374       if (!S.isAltShuffle()) {
3375         BS.cancelScheduling(VL, VL0);
3376         newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3377                      ReuseShuffleIndicies);
3378         LLVM_DEBUG(dbgs() << "SLP: ShuffleVector are not vectorized.\n");
3379         return;
3380       }
3381       TreeEntry *TE = newTreeEntry(VL, Bundle /*vectorized*/, S, UserTreeIdx,
3382                                    ReuseShuffleIndicies);
3383       LLVM_DEBUG(dbgs() << "SLP: added a ShuffleVector op.\n");
3384 
3385       // Reorder operands if reordering would enable vectorization.
3386       if (isa<BinaryOperator>(VL0)) {
3387         ValueList Left, Right;
3388         reorderInputsAccordingToOpcode(VL, Left, Right, *DL, *SE, *this);
3389         TE->setOperand(0, Left);
3390         TE->setOperand(1, Right);
3391         buildTree_rec(Left, Depth + 1, {TE, 0});
3392         buildTree_rec(Right, Depth + 1, {TE, 1});
3393         return;
3394       }
3395 
3396       TE->setOperandsInOrder();
3397       for (unsigned i = 0, e = VL0->getNumOperands(); i < e; ++i) {
3398         ValueList Operands;
3399         // Prepare the operand vector.
3400         for (Value *V : VL)
3401           Operands.push_back(cast<Instruction>(V)->getOperand(i));
3402 
3403         buildTree_rec(Operands, Depth + 1, {TE, i});
3404       }
3405       return;
3406     }
3407     default:
3408       BS.cancelScheduling(VL, VL0);
3409       newTreeEntry(VL, None /*not vectorized*/, S, UserTreeIdx,
3410                    ReuseShuffleIndicies);
3411       LLVM_DEBUG(dbgs() << "SLP: Gathering unknown instruction.\n");
3412       return;
3413   }
3414 }
3415 
3416 unsigned BoUpSLP::canMapToVector(Type *T, const DataLayout &DL) const {
3417   unsigned N = 1;
3418   Type *EltTy = T;
3419 
3420   while (isa<StructType>(EltTy) || isa<ArrayType>(EltTy) ||
3421          isa<VectorType>(EltTy)) {
3422     if (auto *ST = dyn_cast<StructType>(EltTy)) {
3423       // Check that struct is homogeneous.
3424       for (const auto *Ty : ST->elements())
3425         if (Ty != *ST->element_begin())
3426           return 0;
3427       N *= ST->getNumElements();
3428       EltTy = *ST->element_begin();
3429     } else if (auto *AT = dyn_cast<ArrayType>(EltTy)) {
3430       N *= AT->getNumElements();
3431       EltTy = AT->getElementType();
3432     } else {
3433       auto *VT = cast<FixedVectorType>(EltTy);
3434       N *= VT->getNumElements();
3435       EltTy = VT->getElementType();
3436     }
3437   }
3438 
3439   if (!isValidElementType(EltTy))
3440     return 0;
3441   uint64_t VTSize = DL.getTypeStoreSizeInBits(FixedVectorType::get(EltTy, N));
3442   if (VTSize < MinVecRegSize || VTSize > MaxVecRegSize || VTSize != DL.getTypeStoreSizeInBits(T))
3443     return 0;
3444   return N;
3445 }
3446 
3447 bool BoUpSLP::canReuseExtract(ArrayRef<Value *> VL, Value *OpValue,
3448                               SmallVectorImpl<unsigned> &CurrentOrder) const {
3449   Instruction *E0 = cast<Instruction>(OpValue);
3450   assert(E0->getOpcode() == Instruction::ExtractElement ||
3451          E0->getOpcode() == Instruction::ExtractValue);
3452   assert(E0->getOpcode() == getSameOpcode(VL).getOpcode() && "Invalid opcode");
3453   // Check if all of the extracts come from the same vector and from the
3454   // correct offset.
3455   Value *Vec = E0->getOperand(0);
3456 
3457   CurrentOrder.clear();
3458 
3459   // We have to extract from a vector/aggregate with the same number of elements.
3460   unsigned NElts;
3461   if (E0->getOpcode() == Instruction::ExtractValue) {
3462     const DataLayout &DL = E0->getModule()->getDataLayout();
3463     NElts = canMapToVector(Vec->getType(), DL);
3464     if (!NElts)
3465       return false;
3466     // Check if load can be rewritten as load of vector.
3467     LoadInst *LI = dyn_cast<LoadInst>(Vec);
3468     if (!LI || !LI->isSimple() || !LI->hasNUses(VL.size()))
3469       return false;
3470   } else {
3471     NElts = cast<FixedVectorType>(Vec->getType())->getNumElements();
3472   }
3473 
3474   if (NElts != VL.size())
3475     return false;
3476 
3477   // Check that all of the indices extract from the correct offset.
3478   bool ShouldKeepOrder = true;
3479   unsigned E = VL.size();
3480   // Assign to all items the initial value E + 1 so we can check if the extract
3481   // instruction index was used already.
3482   // Also, later we can check that all the indices are used and we have a
3483   // consecutive access in the extract instructions, by checking that no
3484   // element of CurrentOrder still has value E + 1.
3485   CurrentOrder.assign(E, E + 1);
3486   unsigned I = 0;
3487   for (; I < E; ++I) {
3488     auto *Inst = cast<Instruction>(VL[I]);
3489     if (Inst->getOperand(0) != Vec)
3490       break;
3491     Optional<unsigned> Idx = getExtractIndex(Inst);
3492     if (!Idx)
3493       break;
3494     const unsigned ExtIdx = *Idx;
3495     if (ExtIdx != I) {
3496       if (ExtIdx >= E || CurrentOrder[ExtIdx] != E + 1)
3497         break;
3498       ShouldKeepOrder = false;
3499       CurrentOrder[ExtIdx] = I;
3500     } else {
3501       if (CurrentOrder[I] != E + 1)
3502         break;
3503       CurrentOrder[I] = I;
3504     }
3505   }
3506   if (I < E) {
3507     CurrentOrder.clear();
3508     return false;
3509   }
3510 
3511   return ShouldKeepOrder;
3512 }
3513 
3514 bool BoUpSLP::areAllUsersVectorized(Instruction *I,
3515                                     ArrayRef<Value *> VectorizedVals) const {
3516   return (I->hasOneUse() && is_contained(VectorizedVals, I)) ||
3517          llvm::all_of(I->users(), [this](User *U) {
3518            return ScalarToTreeEntry.count(U) > 0;
3519          });
3520 }
3521 
3522 static std::pair<InstructionCost, InstructionCost>
3523 getVectorCallCosts(CallInst *CI, FixedVectorType *VecTy,
3524                    TargetTransformInfo *TTI, TargetLibraryInfo *TLI) {
3525   Intrinsic::ID ID = getVectorIntrinsicIDForCall(CI, TLI);
3526 
3527   // Calculate the cost of the scalar and vector calls.
3528   SmallVector<Type *, 4> VecTys;
3529   for (Use &Arg : CI->args())
3530     VecTys.push_back(
3531         FixedVectorType::get(Arg->getType(), VecTy->getNumElements()));
3532   FastMathFlags FMF;
3533   if (auto *FPCI = dyn_cast<FPMathOperator>(CI))
3534     FMF = FPCI->getFastMathFlags();
3535   SmallVector<const Value *> Arguments(CI->arg_begin(), CI->arg_end());
3536   IntrinsicCostAttributes CostAttrs(ID, VecTy, Arguments, VecTys, FMF,
3537                                     dyn_cast<IntrinsicInst>(CI));
3538   auto IntrinsicCost =
3539     TTI->getIntrinsicInstrCost(CostAttrs, TTI::TCK_RecipThroughput);
3540 
3541   auto Shape = VFShape::get(*CI, ElementCount::getFixed(static_cast<unsigned>(
3542                                      VecTy->getNumElements())),
3543                             false /*HasGlobalPred*/);
3544   Function *VecFunc = VFDatabase(*CI).getVectorizedFunction(Shape);
3545   auto LibCost = IntrinsicCost;
3546   if (!CI->isNoBuiltin() && VecFunc) {
3547     // Calculate the cost of the vector library call.
3548     // If the corresponding vector call is cheaper, return its cost.
3549     LibCost = TTI->getCallInstrCost(nullptr, VecTy, VecTys,
3550                                     TTI::TCK_RecipThroughput);
3551   }
3552   return {IntrinsicCost, LibCost};
3553 }
3554 
3555 /// Compute the cost of creating a vector of type \p VecTy containing the
3556 /// extracted values from \p VL.
3557 static InstructionCost
3558 computeExtractCost(ArrayRef<Value *> VL, FixedVectorType *VecTy,
3559                    TargetTransformInfo::ShuffleKind ShuffleKind,
3560                    ArrayRef<int> Mask, TargetTransformInfo &TTI) {
3561   unsigned NumOfParts = TTI.getNumberOfParts(VecTy);
3562 
3563   if (ShuffleKind != TargetTransformInfo::SK_PermuteSingleSrc || !NumOfParts ||
3564       VecTy->getNumElements() < NumOfParts)
3565     return TTI.getShuffleCost(ShuffleKind, VecTy, Mask);
3566 
3567   bool AllConsecutive = true;
3568   unsigned EltsPerVector = VecTy->getNumElements() / NumOfParts;
3569   unsigned Idx = -1;
3570   InstructionCost Cost = 0;
3571 
3572   // Process extracts in blocks of EltsPerVector to check if the source vector
3573   // operand can be re-used directly. If not, add the cost of creating a shuffle
3574   // to extract the values into a vector register.
3575   for (auto *V : VL) {
3576     ++Idx;
3577 
3578     // Reached the start of a new vector registers.
3579     if (Idx % EltsPerVector == 0) {
3580       AllConsecutive = true;
3581       continue;
3582     }
3583 
3584     // Check all extracts for a vector register on the target directly
3585     // extract values in order.
3586     unsigned CurrentIdx = *getExtractIndex(cast<Instruction>(V));
3587     unsigned PrevIdx = *getExtractIndex(cast<Instruction>(VL[Idx - 1]));
3588     AllConsecutive &= PrevIdx + 1 == CurrentIdx &&
3589                       CurrentIdx % EltsPerVector == Idx % EltsPerVector;
3590 
3591     if (AllConsecutive)
3592       continue;
3593 
3594     // Skip all indices, except for the last index per vector block.
3595     if ((Idx + 1) % EltsPerVector != 0 && Idx + 1 != VL.size())
3596       continue;
3597 
3598     // If we have a series of extracts which are not consecutive and hence
3599     // cannot re-use the source vector register directly, compute the shuffle
3600     // cost to extract the a vector with EltsPerVector elements.
3601     Cost += TTI.getShuffleCost(
3602         TargetTransformInfo::SK_PermuteSingleSrc,
3603         FixedVectorType::get(VecTy->getElementType(), EltsPerVector));
3604   }
3605   return Cost;
3606 }
3607 
3608 InstructionCost BoUpSLP::getEntryCost(const TreeEntry *E,
3609                                       ArrayRef<Value *> VectorizedVals) {
3610   ArrayRef<Value*> VL = E->Scalars;
3611 
3612   Type *ScalarTy = VL[0]->getType();
3613   if (StoreInst *SI = dyn_cast<StoreInst>(VL[0]))
3614     ScalarTy = SI->getValueOperand()->getType();
3615   else if (CmpInst *CI = dyn_cast<CmpInst>(VL[0]))
3616     ScalarTy = CI->getOperand(0)->getType();
3617   else if (auto *IE = dyn_cast<InsertElementInst>(VL[0]))
3618     ScalarTy = IE->getOperand(1)->getType();
3619   auto *VecTy = FixedVectorType::get(ScalarTy, VL.size());
3620   TTI::TargetCostKind CostKind = TTI::TCK_RecipThroughput;
3621 
3622   // If we have computed a smaller type for the expression, update VecTy so
3623   // that the costs will be accurate.
3624   if (MinBWs.count(VL[0]))
3625     VecTy = FixedVectorType::get(
3626         IntegerType::get(F->getContext(), MinBWs[VL[0]].first), VL.size());
3627 
3628   unsigned ReuseShuffleNumbers = E->ReuseShuffleIndices.size();
3629   bool NeedToShuffleReuses = !E->ReuseShuffleIndices.empty();
3630   InstructionCost ReuseShuffleCost = 0;
3631   if (NeedToShuffleReuses) {
3632     ReuseShuffleCost =
3633         TTI->getShuffleCost(TargetTransformInfo::SK_PermuteSingleSrc, VecTy,
3634                             E->ReuseShuffleIndices);
3635   }
3636   // FIXME: it tries to fix a problem with MSVC buildbots.
3637   TargetTransformInfo &TTIRef = *TTI;
3638   auto &&AdjustExtractsCost = [this, &TTIRef, CostKind, VL, VecTy,
3639                                VectorizedVals](InstructionCost &Cost,
3640                                                bool IsGather) {
3641     DenseMap<Value *, int> ExtractVectorsTys;
3642     for (auto *V : VL) {
3643       // If all users of instruction are going to be vectorized and this
3644       // instruction itself is not going to be vectorized, consider this
3645       // instruction as dead and remove its cost from the final cost of the
3646       // vectorized tree.
3647       if (!areAllUsersVectorized(cast<Instruction>(V), VectorizedVals) ||
3648           (IsGather && ScalarToTreeEntry.count(V)))
3649         continue;
3650       auto *EE = cast<ExtractElementInst>(V);
3651       unsigned Idx = *getExtractIndex(EE);
3652       if (TTIRef.getNumberOfParts(VecTy) !=
3653           TTIRef.getNumberOfParts(EE->getVectorOperandType())) {
3654         auto It =
3655             ExtractVectorsTys.try_emplace(EE->getVectorOperand(), Idx).first;
3656         It->getSecond() = std::min<int>(It->second, Idx);
3657       }
3658       // Take credit for instruction that will become dead.
3659       if (EE->hasOneUse()) {
3660         Instruction *Ext = EE->user_back();
3661         if ((isa<SExtInst>(Ext) || isa<ZExtInst>(Ext)) &&
3662             all_of(Ext->users(),
3663                    [](User *U) { return isa<GetElementPtrInst>(U); })) {
3664           // Use getExtractWithExtendCost() to calculate the cost of
3665           // extractelement/ext pair.
3666           Cost -=
3667               TTIRef.getExtractWithExtendCost(Ext->getOpcode(), Ext->getType(),
3668                                               EE->getVectorOperandType(), Idx);
3669           // Add back the cost of s|zext which is subtracted separately.
3670           Cost += TTIRef.getCastInstrCost(
3671               Ext->getOpcode(), Ext->getType(), EE->getType(),
3672               TTI::getCastContextHint(Ext), CostKind, Ext);
3673           continue;
3674         }
3675       }
3676       Cost -= TTIRef.getVectorInstrCost(Instruction::ExtractElement,
3677                                         EE->getVectorOperandType(), Idx);
3678     }
3679     // Add a cost for subvector extracts/inserts if required.
3680     for (const auto &Data : ExtractVectorsTys) {
3681       auto *EEVTy = cast<FixedVectorType>(Data.first->getType());
3682       unsigned NumElts = VecTy->getNumElements();
3683       if (TTIRef.getNumberOfParts(EEVTy) > TTIRef.getNumberOfParts(VecTy)) {
3684         unsigned Idx = (Data.second / NumElts) * NumElts;
3685         unsigned EENumElts = EEVTy->getNumElements();
3686         if (Idx + NumElts <= EENumElts) {
3687           Cost +=
3688               TTIRef.getShuffleCost(TargetTransformInfo::SK_ExtractSubvector,
3689                                     EEVTy, None, Idx, VecTy);
3690         } else {
3691           // Need to round up the subvector type vectorization factor to avoid a
3692           // crash in cost model functions. Make SubVT so that Idx + VF of SubVT
3693           // <= EENumElts.
3694           auto *SubVT =
3695               FixedVectorType::get(VecTy->getElementType(), EENumElts - Idx);
3696           Cost +=
3697               TTIRef.getShuffleCost(TargetTransformInfo::SK_ExtractSubvector,
3698                                     EEVTy, None, Idx, SubVT);
3699         }
3700       } else {
3701         Cost += TTIRef.getShuffleCost(TargetTransformInfo::SK_InsertSubvector,
3702                                       VecTy, None, 0, EEVTy);
3703       }
3704     }
3705   };
3706   if (E->State == TreeEntry::NeedToGather) {
3707     if (allConstant(VL))
3708       return 0;
3709     if (isa<InsertElementInst>(VL[0]))
3710       return InstructionCost::getInvalid();
3711     SmallVector<int> Mask;
3712     SmallVector<const TreeEntry *> Entries;
3713     Optional<TargetTransformInfo::ShuffleKind> Shuffle =
3714         isGatherShuffledEntry(E, Mask, Entries);
3715     if (Shuffle.hasValue()) {
3716       InstructionCost GatherCost = 0;
3717       if (ShuffleVectorInst::isIdentityMask(Mask)) {
3718         // Perfect match in the graph, will reuse the previously vectorized
3719         // node. Cost is 0.
3720         LLVM_DEBUG(
3721             dbgs()
3722             << "SLP: perfect diamond match for gather bundle that starts with "
3723             << *VL.front() << ".\n");
3724       } else {
3725         LLVM_DEBUG(dbgs() << "SLP: shuffled " << Entries.size()
3726                           << " entries for bundle that starts with "
3727                           << *VL.front() << ".\n");
3728         // Detected that instead of gather we can emit a shuffle of single/two
3729         // previously vectorized nodes. Add the cost of the permutation rather
3730         // than gather.
3731         GatherCost = TTI->getShuffleCost(*Shuffle, VecTy, Mask);
3732       }
3733       return ReuseShuffleCost + GatherCost;
3734     }
3735     if (isSplat(VL)) {
3736       // Found the broadcasting of the single scalar, calculate the cost as the
3737       // broadcast.
3738       return ReuseShuffleCost +
3739              TTI->getShuffleCost(TargetTransformInfo::SK_Broadcast, VecTy, None,
3740                                  0);
3741     }
3742     if (E->getOpcode() == Instruction::ExtractElement && allSameType(VL) &&
3743         allSameBlock(VL)) {
3744       // Check that gather of extractelements can be represented as just a
3745       // shuffle of a single/two vectors the scalars are extracted from.
3746       SmallVector<int> Mask;
3747       Optional<TargetTransformInfo::ShuffleKind> ShuffleKind =
3748           isShuffle(VL, Mask);
3749       if (ShuffleKind.hasValue()) {
3750         // Found the bunch of extractelement instructions that must be gathered
3751         // into a vector and can be represented as a permutation elements in a
3752         // single input vector or of 2 input vectors.
3753         InstructionCost Cost =
3754             computeExtractCost(VL, VecTy, *ShuffleKind, Mask, *TTI);
3755         AdjustExtractsCost(Cost, /*IsGather=*/true);
3756         return ReuseShuffleCost + Cost;
3757       }
3758     }
3759     return ReuseShuffleCost + getGatherCost(VL);
3760   }
3761   assert((E->State == TreeEntry::Vectorize ||
3762           E->State == TreeEntry::ScatterVectorize) &&
3763          "Unhandled state");
3764   assert(E->getOpcode() && allSameType(VL) && allSameBlock(VL) && "Invalid VL");
3765   Instruction *VL0 = E->getMainOp();
3766   unsigned ShuffleOrOp =
3767       E->isAltShuffle() ? (unsigned)Instruction::ShuffleVector : E->getOpcode();
3768   switch (ShuffleOrOp) {
3769     case Instruction::PHI:
3770       return 0;
3771 
3772     case Instruction::ExtractValue:
3773     case Instruction::ExtractElement: {
3774       // The common cost of removal ExtractElement/ExtractValue instructions +
3775       // the cost of shuffles, if required to resuffle the original vector.
3776       InstructionCost CommonCost = 0;
3777       if (NeedToShuffleReuses) {
3778         unsigned Idx = 0;
3779         for (unsigned I : E->ReuseShuffleIndices) {
3780           if (ShuffleOrOp == Instruction::ExtractElement) {
3781             auto *EE = cast<ExtractElementInst>(VL[I]);
3782             ReuseShuffleCost -= TTI->getVectorInstrCost(
3783                 Instruction::ExtractElement, EE->getVectorOperandType(),
3784                 *getExtractIndex(EE));
3785           } else {
3786             ReuseShuffleCost -= TTI->getVectorInstrCost(
3787                 Instruction::ExtractElement, VecTy, Idx);
3788             ++Idx;
3789           }
3790         }
3791         Idx = ReuseShuffleNumbers;
3792         for (Value *V : VL) {
3793           if (ShuffleOrOp == Instruction::ExtractElement) {
3794             auto *EE = cast<ExtractElementInst>(V);
3795             ReuseShuffleCost += TTI->getVectorInstrCost(
3796                 Instruction::ExtractElement, EE->getVectorOperandType(),
3797                 *getExtractIndex(EE));
3798           } else {
3799             --Idx;
3800             ReuseShuffleCost += TTI->getVectorInstrCost(
3801                 Instruction::ExtractElement, VecTy, Idx);
3802           }
3803         }
3804         CommonCost = ReuseShuffleCost;
3805       } else if (!E->ReorderIndices.empty()) {
3806         SmallVector<int> NewMask;
3807         inversePermutation(E->ReorderIndices, NewMask);
3808         CommonCost = TTI->getShuffleCost(
3809             TargetTransformInfo::SK_PermuteSingleSrc, VecTy, NewMask);
3810       }
3811       if (ShuffleOrOp == Instruction::ExtractValue) {
3812         for (unsigned I = 0, E = VL.size(); I < E; ++I) {
3813           auto *EI = cast<Instruction>(VL[I]);
3814           // Take credit for instruction that will become dead.
3815           if (EI->hasOneUse()) {
3816             Instruction *Ext = EI->user_back();
3817             if ((isa<SExtInst>(Ext) || isa<ZExtInst>(Ext)) &&
3818                 all_of(Ext->users(),
3819                        [](User *U) { return isa<GetElementPtrInst>(U); })) {
3820               // Use getExtractWithExtendCost() to calculate the cost of
3821               // extractelement/ext pair.
3822               CommonCost -= TTI->getExtractWithExtendCost(
3823                   Ext->getOpcode(), Ext->getType(), VecTy, I);
3824               // Add back the cost of s|zext which is subtracted separately.
3825               CommonCost += TTI->getCastInstrCost(
3826                   Ext->getOpcode(), Ext->getType(), EI->getType(),
3827                   TTI::getCastContextHint(Ext), CostKind, Ext);
3828               continue;
3829             }
3830           }
3831           CommonCost -=
3832               TTI->getVectorInstrCost(Instruction::ExtractElement, VecTy, I);
3833         }
3834       } else {
3835         AdjustExtractsCost(CommonCost, /*IsGather=*/false);
3836       }
3837       return CommonCost;
3838     }
3839     case Instruction::InsertElement: {
3840       auto *SrcVecTy = cast<FixedVectorType>(VL0->getType());
3841 
3842       unsigned const NumElts = SrcVecTy->getNumElements();
3843       unsigned const NumScalars = VL.size();
3844       APInt DemandedElts = APInt::getNullValue(NumElts);
3845       // TODO: Add support for Instruction::InsertValue.
3846       unsigned Offset = UINT_MAX;
3847       bool IsIdentity = true;
3848       SmallVector<int> ShuffleMask(NumElts, UndefMaskElem);
3849       for (unsigned I = 0; I < NumScalars; ++I) {
3850         Optional<int> InsertIdx = getInsertIndex(VL[I], 0);
3851         if (!InsertIdx || *InsertIdx == UndefMaskElem)
3852           continue;
3853         unsigned Idx = *InsertIdx;
3854         DemandedElts.setBit(Idx);
3855         if (Idx < Offset) {
3856           Offset = Idx;
3857           IsIdentity &= I == 0;
3858         } else {
3859           assert(Idx >= Offset && "Failed to find vector index offset");
3860           IsIdentity &= Idx - Offset == I;
3861         }
3862         ShuffleMask[Idx] = I;
3863       }
3864       assert(Offset < NumElts && "Failed to find vector index offset");
3865 
3866       InstructionCost Cost = 0;
3867       Cost -= TTI->getScalarizationOverhead(SrcVecTy, DemandedElts,
3868                                             /*Insert*/ true, /*Extract*/ false);
3869 
3870       if (IsIdentity && NumElts != NumScalars && Offset % NumScalars != 0)
3871         Cost += TTI->getShuffleCost(
3872             TargetTransformInfo::SK_InsertSubvector, SrcVecTy, /*Mask*/ None,
3873             Offset,
3874             FixedVectorType::get(SrcVecTy->getElementType(), NumScalars));
3875       else if (!IsIdentity)
3876         Cost += TTI->getShuffleCost(TTI::SK_PermuteSingleSrc, SrcVecTy,
3877                                     ShuffleMask);
3878 
3879       return Cost;
3880     }
3881     case Instruction::ZExt:
3882     case Instruction::SExt:
3883     case Instruction::FPToUI:
3884     case Instruction::FPToSI:
3885     case Instruction::FPExt:
3886     case Instruction::PtrToInt:
3887     case Instruction::IntToPtr:
3888     case Instruction::SIToFP:
3889     case Instruction::UIToFP:
3890     case Instruction::Trunc:
3891     case Instruction::FPTrunc:
3892     case Instruction::BitCast: {
3893       Type *SrcTy = VL0->getOperand(0)->getType();
3894       InstructionCost ScalarEltCost =
3895           TTI->getCastInstrCost(E->getOpcode(), ScalarTy, SrcTy,
3896                                 TTI::getCastContextHint(VL0), CostKind, VL0);
3897       if (NeedToShuffleReuses) {
3898         ReuseShuffleCost -= (ReuseShuffleNumbers - VL.size()) * ScalarEltCost;
3899       }
3900 
3901       // Calculate the cost of this instruction.
3902       InstructionCost ScalarCost = VL.size() * ScalarEltCost;
3903 
3904       auto *SrcVecTy = FixedVectorType::get(SrcTy, VL.size());
3905       InstructionCost VecCost = 0;
3906       // Check if the values are candidates to demote.
3907       if (!MinBWs.count(VL0) || VecTy != SrcVecTy) {
3908         VecCost =
3909             ReuseShuffleCost +
3910             TTI->getCastInstrCost(E->getOpcode(), VecTy, SrcVecTy,
3911                                   TTI::getCastContextHint(VL0), CostKind, VL0);
3912       }
3913       LLVM_DEBUG(dumpTreeCosts(E, ReuseShuffleCost, VecCost, ScalarCost));
3914       return VecCost - ScalarCost;
3915     }
3916     case Instruction::FCmp:
3917     case Instruction::ICmp:
3918     case Instruction::Select: {
3919       // Calculate the cost of this instruction.
3920       InstructionCost ScalarEltCost =
3921           TTI->getCmpSelInstrCost(E->getOpcode(), ScalarTy, Builder.getInt1Ty(),
3922                                   CmpInst::BAD_ICMP_PREDICATE, CostKind, VL0);
3923       if (NeedToShuffleReuses) {
3924         ReuseShuffleCost -= (ReuseShuffleNumbers - VL.size()) * ScalarEltCost;
3925       }
3926       auto *MaskTy = FixedVectorType::get(Builder.getInt1Ty(), VL.size());
3927       InstructionCost ScalarCost = VecTy->getNumElements() * ScalarEltCost;
3928 
3929       // Check if all entries in VL are either compares or selects with compares
3930       // as condition that have the same predicates.
3931       CmpInst::Predicate VecPred = CmpInst::BAD_ICMP_PREDICATE;
3932       bool First = true;
3933       for (auto *V : VL) {
3934         CmpInst::Predicate CurrentPred;
3935         auto MatchCmp = m_Cmp(CurrentPred, m_Value(), m_Value());
3936         if ((!match(V, m_Select(MatchCmp, m_Value(), m_Value())) &&
3937              !match(V, MatchCmp)) ||
3938             (!First && VecPred != CurrentPred)) {
3939           VecPred = CmpInst::BAD_ICMP_PREDICATE;
3940           break;
3941         }
3942         First = false;
3943         VecPred = CurrentPred;
3944       }
3945 
3946       InstructionCost VecCost = TTI->getCmpSelInstrCost(
3947           E->getOpcode(), VecTy, MaskTy, VecPred, CostKind, VL0);
3948       // Check if it is possible and profitable to use min/max for selects in
3949       // VL.
3950       //
3951       auto IntrinsicAndUse = canConvertToMinOrMaxIntrinsic(VL);
3952       if (IntrinsicAndUse.first != Intrinsic::not_intrinsic) {
3953         IntrinsicCostAttributes CostAttrs(IntrinsicAndUse.first, VecTy,
3954                                           {VecTy, VecTy});
3955         InstructionCost IntrinsicCost =
3956             TTI->getIntrinsicInstrCost(CostAttrs, CostKind);
3957         // If the selects are the only uses of the compares, they will be dead
3958         // and we can adjust the cost by removing their cost.
3959         if (IntrinsicAndUse.second)
3960           IntrinsicCost -=
3961               TTI->getCmpSelInstrCost(Instruction::ICmp, VecTy, MaskTy,
3962                                       CmpInst::BAD_ICMP_PREDICATE, CostKind);
3963         VecCost = std::min(VecCost, IntrinsicCost);
3964       }
3965       LLVM_DEBUG(dumpTreeCosts(E, ReuseShuffleCost, VecCost, ScalarCost));
3966       return ReuseShuffleCost + VecCost - ScalarCost;
3967     }
3968     case Instruction::FNeg:
3969     case Instruction::Add:
3970     case Instruction::FAdd:
3971     case Instruction::Sub:
3972     case Instruction::FSub:
3973     case Instruction::Mul:
3974     case Instruction::FMul:
3975     case Instruction::UDiv:
3976     case Instruction::SDiv:
3977     case Instruction::FDiv:
3978     case Instruction::URem:
3979     case Instruction::SRem:
3980     case Instruction::FRem:
3981     case Instruction::Shl:
3982     case Instruction::LShr:
3983     case Instruction::AShr:
3984     case Instruction::And:
3985     case Instruction::Or:
3986     case Instruction::Xor: {
3987       // Certain instructions can be cheaper to vectorize if they have a
3988       // constant second vector operand.
3989       TargetTransformInfo::OperandValueKind Op1VK =
3990           TargetTransformInfo::OK_AnyValue;
3991       TargetTransformInfo::OperandValueKind Op2VK =
3992           TargetTransformInfo::OK_UniformConstantValue;
3993       TargetTransformInfo::OperandValueProperties Op1VP =
3994           TargetTransformInfo::OP_None;
3995       TargetTransformInfo::OperandValueProperties Op2VP =
3996           TargetTransformInfo::OP_PowerOf2;
3997 
3998       // If all operands are exactly the same ConstantInt then set the
3999       // operand kind to OK_UniformConstantValue.
4000       // If instead not all operands are constants, then set the operand kind
4001       // to OK_AnyValue. If all operands are constants but not the same,
4002       // then set the operand kind to OK_NonUniformConstantValue.
4003       ConstantInt *CInt0 = nullptr;
4004       for (unsigned i = 0, e = VL.size(); i < e; ++i) {
4005         const Instruction *I = cast<Instruction>(VL[i]);
4006         unsigned OpIdx = isa<BinaryOperator>(I) ? 1 : 0;
4007         ConstantInt *CInt = dyn_cast<ConstantInt>(I->getOperand(OpIdx));
4008         if (!CInt) {
4009           Op2VK = TargetTransformInfo::OK_AnyValue;
4010           Op2VP = TargetTransformInfo::OP_None;
4011           break;
4012         }
4013         if (Op2VP == TargetTransformInfo::OP_PowerOf2 &&
4014             !CInt->getValue().isPowerOf2())
4015           Op2VP = TargetTransformInfo::OP_None;
4016         if (i == 0) {
4017           CInt0 = CInt;
4018           continue;
4019         }
4020         if (CInt0 != CInt)
4021           Op2VK = TargetTransformInfo::OK_NonUniformConstantValue;
4022       }
4023 
4024       SmallVector<const Value *, 4> Operands(VL0->operand_values());
4025       InstructionCost ScalarEltCost =
4026           TTI->getArithmeticInstrCost(E->getOpcode(), ScalarTy, CostKind, Op1VK,
4027                                       Op2VK, Op1VP, Op2VP, Operands, VL0);
4028       if (NeedToShuffleReuses) {
4029         ReuseShuffleCost -= (ReuseShuffleNumbers - VL.size()) * ScalarEltCost;
4030       }
4031       InstructionCost ScalarCost = VecTy->getNumElements() * ScalarEltCost;
4032       InstructionCost VecCost =
4033           TTI->getArithmeticInstrCost(E->getOpcode(), VecTy, CostKind, Op1VK,
4034                                       Op2VK, Op1VP, Op2VP, Operands, VL0);
4035       LLVM_DEBUG(dumpTreeCosts(E, ReuseShuffleCost, VecCost, ScalarCost));
4036       return ReuseShuffleCost + VecCost - ScalarCost;
4037     }
4038     case Instruction::GetElementPtr: {
4039       TargetTransformInfo::OperandValueKind Op1VK =
4040           TargetTransformInfo::OK_AnyValue;
4041       TargetTransformInfo::OperandValueKind Op2VK =
4042           TargetTransformInfo::OK_UniformConstantValue;
4043 
4044       InstructionCost ScalarEltCost = TTI->getArithmeticInstrCost(
4045           Instruction::Add, ScalarTy, CostKind, Op1VK, Op2VK);
4046       if (NeedToShuffleReuses) {
4047         ReuseShuffleCost -= (ReuseShuffleNumbers - VL.size()) * ScalarEltCost;
4048       }
4049       InstructionCost ScalarCost = VecTy->getNumElements() * ScalarEltCost;
4050       InstructionCost VecCost = TTI->getArithmeticInstrCost(
4051           Instruction::Add, VecTy, CostKind, Op1VK, Op2VK);
4052       LLVM_DEBUG(dumpTreeCosts(E, ReuseShuffleCost, VecCost, ScalarCost));
4053       return ReuseShuffleCost + VecCost - ScalarCost;
4054     }
4055     case Instruction::Load: {
4056       // Cost of wide load - cost of scalar loads.
4057       Align alignment = cast<LoadInst>(VL0)->getAlign();
4058       InstructionCost ScalarEltCost = TTI->getMemoryOpCost(
4059           Instruction::Load, ScalarTy, alignment, 0, CostKind, VL0);
4060       if (NeedToShuffleReuses) {
4061         ReuseShuffleCost -= (ReuseShuffleNumbers - VL.size()) * ScalarEltCost;
4062       }
4063       InstructionCost ScalarLdCost = VecTy->getNumElements() * ScalarEltCost;
4064       InstructionCost VecLdCost;
4065       if (E->State == TreeEntry::Vectorize) {
4066         VecLdCost = TTI->getMemoryOpCost(Instruction::Load, VecTy, alignment, 0,
4067                                          CostKind, VL0);
4068       } else {
4069         assert(E->State == TreeEntry::ScatterVectorize && "Unknown EntryState");
4070         VecLdCost = TTI->getGatherScatterOpCost(
4071             Instruction::Load, VecTy, cast<LoadInst>(VL0)->getPointerOperand(),
4072             /*VariableMask=*/false, alignment, CostKind, VL0);
4073       }
4074       if (!NeedToShuffleReuses && !E->ReorderIndices.empty()) {
4075         SmallVector<int> NewMask;
4076         inversePermutation(E->ReorderIndices, NewMask);
4077         VecLdCost += TTI->getShuffleCost(
4078             TargetTransformInfo::SK_PermuteSingleSrc, VecTy, NewMask);
4079       }
4080       LLVM_DEBUG(dumpTreeCosts(E, ReuseShuffleCost, VecLdCost, ScalarLdCost));
4081       return ReuseShuffleCost + VecLdCost - ScalarLdCost;
4082     }
4083     case Instruction::Store: {
4084       // We know that we can merge the stores. Calculate the cost.
4085       bool IsReorder = !E->ReorderIndices.empty();
4086       auto *SI =
4087           cast<StoreInst>(IsReorder ? VL[E->ReorderIndices.front()] : VL0);
4088       Align Alignment = SI->getAlign();
4089       InstructionCost ScalarEltCost = TTI->getMemoryOpCost(
4090           Instruction::Store, ScalarTy, Alignment, 0, CostKind, VL0);
4091       InstructionCost ScalarStCost = VecTy->getNumElements() * ScalarEltCost;
4092       InstructionCost VecStCost = TTI->getMemoryOpCost(
4093           Instruction::Store, VecTy, Alignment, 0, CostKind, VL0);
4094       if (IsReorder) {
4095         SmallVector<int> NewMask;
4096         inversePermutation(E->ReorderIndices, NewMask);
4097         VecStCost += TTI->getShuffleCost(
4098             TargetTransformInfo::SK_PermuteSingleSrc, VecTy, NewMask);
4099       }
4100       LLVM_DEBUG(dumpTreeCosts(E, ReuseShuffleCost, VecStCost, ScalarStCost));
4101       return VecStCost - ScalarStCost;
4102     }
4103     case Instruction::Call: {
4104       CallInst *CI = cast<CallInst>(VL0);
4105       Intrinsic::ID ID = getVectorIntrinsicIDForCall(CI, TLI);
4106 
4107       // Calculate the cost of the scalar and vector calls.
4108       IntrinsicCostAttributes CostAttrs(ID, *CI, 1);
4109       InstructionCost ScalarEltCost =
4110           TTI->getIntrinsicInstrCost(CostAttrs, CostKind);
4111       if (NeedToShuffleReuses) {
4112         ReuseShuffleCost -= (ReuseShuffleNumbers - VL.size()) * ScalarEltCost;
4113       }
4114       InstructionCost ScalarCallCost = VecTy->getNumElements() * ScalarEltCost;
4115 
4116       auto VecCallCosts = getVectorCallCosts(CI, VecTy, TTI, TLI);
4117       InstructionCost VecCallCost =
4118           std::min(VecCallCosts.first, VecCallCosts.second);
4119 
4120       LLVM_DEBUG(dbgs() << "SLP: Call cost " << VecCallCost - ScalarCallCost
4121                         << " (" << VecCallCost << "-" << ScalarCallCost << ")"
4122                         << " for " << *CI << "\n");
4123 
4124       return ReuseShuffleCost + VecCallCost - ScalarCallCost;
4125     }
4126     case Instruction::ShuffleVector: {
4127       assert(E->isAltShuffle() &&
4128              ((Instruction::isBinaryOp(E->getOpcode()) &&
4129                Instruction::isBinaryOp(E->getAltOpcode())) ||
4130               (Instruction::isCast(E->getOpcode()) &&
4131                Instruction::isCast(E->getAltOpcode()))) &&
4132              "Invalid Shuffle Vector Operand");
4133       InstructionCost ScalarCost = 0;
4134       if (NeedToShuffleReuses) {
4135         for (unsigned Idx : E->ReuseShuffleIndices) {
4136           Instruction *I = cast<Instruction>(VL[Idx]);
4137           ReuseShuffleCost -= TTI->getInstructionCost(I, CostKind);
4138         }
4139         for (Value *V : VL) {
4140           Instruction *I = cast<Instruction>(V);
4141           ReuseShuffleCost += TTI->getInstructionCost(I, CostKind);
4142         }
4143       }
4144       for (Value *V : VL) {
4145         Instruction *I = cast<Instruction>(V);
4146         assert(E->isOpcodeOrAlt(I) && "Unexpected main/alternate opcode");
4147         ScalarCost += TTI->getInstructionCost(I, CostKind);
4148       }
4149       // VecCost is equal to sum of the cost of creating 2 vectors
4150       // and the cost of creating shuffle.
4151       InstructionCost VecCost = 0;
4152       if (Instruction::isBinaryOp(E->getOpcode())) {
4153         VecCost = TTI->getArithmeticInstrCost(E->getOpcode(), VecTy, CostKind);
4154         VecCost += TTI->getArithmeticInstrCost(E->getAltOpcode(), VecTy,
4155                                                CostKind);
4156       } else {
4157         Type *Src0SclTy = E->getMainOp()->getOperand(0)->getType();
4158         Type *Src1SclTy = E->getAltOp()->getOperand(0)->getType();
4159         auto *Src0Ty = FixedVectorType::get(Src0SclTy, VL.size());
4160         auto *Src1Ty = FixedVectorType::get(Src1SclTy, VL.size());
4161         VecCost = TTI->getCastInstrCost(E->getOpcode(), VecTy, Src0Ty,
4162                                         TTI::CastContextHint::None, CostKind);
4163         VecCost += TTI->getCastInstrCost(E->getAltOpcode(), VecTy, Src1Ty,
4164                                          TTI::CastContextHint::None, CostKind);
4165       }
4166 
4167       SmallVector<int> Mask(E->Scalars.size());
4168       for (unsigned I = 0, End = E->Scalars.size(); I < End; ++I) {
4169         auto *OpInst = cast<Instruction>(E->Scalars[I]);
4170         assert(E->isOpcodeOrAlt(OpInst) && "Unexpected main/alternate opcode");
4171         Mask[I] = I + (OpInst->getOpcode() == E->getAltOpcode() ? End : 0);
4172       }
4173       VecCost +=
4174           TTI->getShuffleCost(TargetTransformInfo::SK_Select, VecTy, Mask, 0);
4175       LLVM_DEBUG(dumpTreeCosts(E, ReuseShuffleCost, VecCost, ScalarCost));
4176       return ReuseShuffleCost + VecCost - ScalarCost;
4177     }
4178     default:
4179       llvm_unreachable("Unknown instruction");
4180   }
4181 }
4182 
4183 bool BoUpSLP::isFullyVectorizableTinyTree() const {
4184   LLVM_DEBUG(dbgs() << "SLP: Check whether the tree with height "
4185                     << VectorizableTree.size() << " is fully vectorizable .\n");
4186 
4187   // We only handle trees of heights 1 and 2.
4188   if (VectorizableTree.size() == 1 &&
4189       VectorizableTree[0]->State == TreeEntry::Vectorize)
4190     return true;
4191 
4192   if (VectorizableTree.size() != 2)
4193     return false;
4194 
4195   // Handle splat and all-constants stores. Also try to vectorize tiny trees
4196   // with the second gather nodes if they have less scalar operands rather than
4197   // the initial tree element (may be profitable to shuffle the second gather)
4198   // or they are extractelements, which form shuffle.
4199   SmallVector<int> Mask;
4200   if (VectorizableTree[0]->State == TreeEntry::Vectorize &&
4201       (allConstant(VectorizableTree[1]->Scalars) ||
4202        isSplat(VectorizableTree[1]->Scalars) ||
4203        (VectorizableTree[1]->State == TreeEntry::NeedToGather &&
4204         VectorizableTree[1]->Scalars.size() <
4205             VectorizableTree[0]->Scalars.size()) ||
4206        (VectorizableTree[1]->State == TreeEntry::NeedToGather &&
4207         VectorizableTree[1]->getOpcode() == Instruction::ExtractElement &&
4208         isShuffle(VectorizableTree[1]->Scalars, Mask))))
4209     return true;
4210 
4211   // Gathering cost would be too much for tiny trees.
4212   if (VectorizableTree[0]->State == TreeEntry::NeedToGather ||
4213       VectorizableTree[1]->State == TreeEntry::NeedToGather)
4214     return false;
4215 
4216   return true;
4217 }
4218 
4219 static bool isLoadCombineCandidateImpl(Value *Root, unsigned NumElts,
4220                                        TargetTransformInfo *TTI,
4221                                        bool MustMatchOrInst) {
4222   // Look past the root to find a source value. Arbitrarily follow the
4223   // path through operand 0 of any 'or'. Also, peek through optional
4224   // shift-left-by-multiple-of-8-bits.
4225   Value *ZextLoad = Root;
4226   const APInt *ShAmtC;
4227   bool FoundOr = false;
4228   while (!isa<ConstantExpr>(ZextLoad) &&
4229          (match(ZextLoad, m_Or(m_Value(), m_Value())) ||
4230           (match(ZextLoad, m_Shl(m_Value(), m_APInt(ShAmtC))) &&
4231            ShAmtC->urem(8) == 0))) {
4232     auto *BinOp = cast<BinaryOperator>(ZextLoad);
4233     ZextLoad = BinOp->getOperand(0);
4234     if (BinOp->getOpcode() == Instruction::Or)
4235       FoundOr = true;
4236   }
4237   // Check if the input is an extended load of the required or/shift expression.
4238   Value *LoadPtr;
4239   if ((MustMatchOrInst && !FoundOr) || ZextLoad == Root ||
4240       !match(ZextLoad, m_ZExt(m_Load(m_Value(LoadPtr)))))
4241     return false;
4242 
4243   // Require that the total load bit width is a legal integer type.
4244   // For example, <8 x i8> --> i64 is a legal integer on a 64-bit target.
4245   // But <16 x i8> --> i128 is not, so the backend probably can't reduce it.
4246   Type *SrcTy = LoadPtr->getType()->getPointerElementType();
4247   unsigned LoadBitWidth = SrcTy->getIntegerBitWidth() * NumElts;
4248   if (!TTI->isTypeLegal(IntegerType::get(Root->getContext(), LoadBitWidth)))
4249     return false;
4250 
4251   // Everything matched - assume that we can fold the whole sequence using
4252   // load combining.
4253   LLVM_DEBUG(dbgs() << "SLP: Assume load combining for tree starting at "
4254              << *(cast<Instruction>(Root)) << "\n");
4255 
4256   return true;
4257 }
4258 
4259 bool BoUpSLP::isLoadCombineReductionCandidate(RecurKind RdxKind) const {
4260   if (RdxKind != RecurKind::Or)
4261     return false;
4262 
4263   unsigned NumElts = VectorizableTree[0]->Scalars.size();
4264   Value *FirstReduced = VectorizableTree[0]->Scalars[0];
4265   return isLoadCombineCandidateImpl(FirstReduced, NumElts, TTI,
4266                                     /* MatchOr */ false);
4267 }
4268 
4269 bool BoUpSLP::isLoadCombineCandidate() const {
4270   // Peek through a final sequence of stores and check if all operations are
4271   // likely to be load-combined.
4272   unsigned NumElts = VectorizableTree[0]->Scalars.size();
4273   for (Value *Scalar : VectorizableTree[0]->Scalars) {
4274     Value *X;
4275     if (!match(Scalar, m_Store(m_Value(X), m_Value())) ||
4276         !isLoadCombineCandidateImpl(X, NumElts, TTI, /* MatchOr */ true))
4277       return false;
4278   }
4279   return true;
4280 }
4281 
4282 bool BoUpSLP::isTreeTinyAndNotFullyVectorizable() const {
4283   // No need to vectorize inserts of gathered values.
4284   if (VectorizableTree.size() == 2 &&
4285       isa<InsertElementInst>(VectorizableTree[0]->Scalars[0]) &&
4286       VectorizableTree[1]->State == TreeEntry::NeedToGather)
4287     return true;
4288 
4289   // We can vectorize the tree if its size is greater than or equal to the
4290   // minimum size specified by the MinTreeSize command line option.
4291   if (VectorizableTree.size() >= MinTreeSize)
4292     return false;
4293 
4294   // If we have a tiny tree (a tree whose size is less than MinTreeSize), we
4295   // can vectorize it if we can prove it fully vectorizable.
4296   if (isFullyVectorizableTinyTree())
4297     return false;
4298 
4299   assert(VectorizableTree.empty()
4300              ? ExternalUses.empty()
4301              : true && "We shouldn't have any external users");
4302 
4303   // Otherwise, we can't vectorize the tree. It is both tiny and not fully
4304   // vectorizable.
4305   return true;
4306 }
4307 
4308 InstructionCost BoUpSLP::getSpillCost() const {
4309   // Walk from the bottom of the tree to the top, tracking which values are
4310   // live. When we see a call instruction that is not part of our tree,
4311   // query TTI to see if there is a cost to keeping values live over it
4312   // (for example, if spills and fills are required).
4313   unsigned BundleWidth = VectorizableTree.front()->Scalars.size();
4314   InstructionCost Cost = 0;
4315 
4316   SmallPtrSet<Instruction*, 4> LiveValues;
4317   Instruction *PrevInst = nullptr;
4318 
4319   // The entries in VectorizableTree are not necessarily ordered by their
4320   // position in basic blocks. Collect them and order them by dominance so later
4321   // instructions are guaranteed to be visited first. For instructions in
4322   // different basic blocks, we only scan to the beginning of the block, so
4323   // their order does not matter, as long as all instructions in a basic block
4324   // are grouped together. Using dominance ensures a deterministic order.
4325   SmallVector<Instruction *, 16> OrderedScalars;
4326   for (const auto &TEPtr : VectorizableTree) {
4327     Instruction *Inst = dyn_cast<Instruction>(TEPtr->Scalars[0]);
4328     if (!Inst)
4329       continue;
4330     OrderedScalars.push_back(Inst);
4331   }
4332   llvm::sort(OrderedScalars, [&](Instruction *A, Instruction *B) {
4333     auto *NodeA = DT->getNode(A->getParent());
4334     auto *NodeB = DT->getNode(B->getParent());
4335     assert(NodeA && "Should only process reachable instructions");
4336     assert(NodeB && "Should only process reachable instructions");
4337     assert((NodeA == NodeB) == (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) &&
4338            "Different nodes should have different DFS numbers");
4339     if (NodeA != NodeB)
4340       return NodeA->getDFSNumIn() < NodeB->getDFSNumIn();
4341     return B->comesBefore(A);
4342   });
4343 
4344   for (Instruction *Inst : OrderedScalars) {
4345     if (!PrevInst) {
4346       PrevInst = Inst;
4347       continue;
4348     }
4349 
4350     // Update LiveValues.
4351     LiveValues.erase(PrevInst);
4352     for (auto &J : PrevInst->operands()) {
4353       if (isa<Instruction>(&*J) && getTreeEntry(&*J))
4354         LiveValues.insert(cast<Instruction>(&*J));
4355     }
4356 
4357     LLVM_DEBUG({
4358       dbgs() << "SLP: #LV: " << LiveValues.size();
4359       for (auto *X : LiveValues)
4360         dbgs() << " " << X->getName();
4361       dbgs() << ", Looking at ";
4362       Inst->dump();
4363     });
4364 
4365     // Now find the sequence of instructions between PrevInst and Inst.
4366     unsigned NumCalls = 0;
4367     BasicBlock::reverse_iterator InstIt = ++Inst->getIterator().getReverse(),
4368                                  PrevInstIt =
4369                                      PrevInst->getIterator().getReverse();
4370     while (InstIt != PrevInstIt) {
4371       if (PrevInstIt == PrevInst->getParent()->rend()) {
4372         PrevInstIt = Inst->getParent()->rbegin();
4373         continue;
4374       }
4375 
4376       // Debug information does not impact spill cost.
4377       if ((isa<CallInst>(&*PrevInstIt) &&
4378            !isa<DbgInfoIntrinsic>(&*PrevInstIt)) &&
4379           &*PrevInstIt != PrevInst)
4380         NumCalls++;
4381 
4382       ++PrevInstIt;
4383     }
4384 
4385     if (NumCalls) {
4386       SmallVector<Type*, 4> V;
4387       for (auto *II : LiveValues) {
4388         auto *ScalarTy = II->getType();
4389         if (auto *VectorTy = dyn_cast<FixedVectorType>(ScalarTy))
4390           ScalarTy = VectorTy->getElementType();
4391         V.push_back(FixedVectorType::get(ScalarTy, BundleWidth));
4392       }
4393       Cost += NumCalls * TTI->getCostOfKeepingLiveOverCall(V);
4394     }
4395 
4396     PrevInst = Inst;
4397   }
4398 
4399   return Cost;
4400 }
4401 
4402 InstructionCost BoUpSLP::getTreeCost(ArrayRef<Value *> VectorizedVals) {
4403   InstructionCost Cost = 0;
4404   LLVM_DEBUG(dbgs() << "SLP: Calculating cost for tree of size "
4405                     << VectorizableTree.size() << ".\n");
4406 
4407   unsigned BundleWidth = VectorizableTree[0]->Scalars.size();
4408 
4409   for (unsigned I = 0, E = VectorizableTree.size(); I < E; ++I) {
4410     TreeEntry &TE = *VectorizableTree[I].get();
4411 
4412     InstructionCost C = getEntryCost(&TE, VectorizedVals);
4413     Cost += C;
4414     LLVM_DEBUG(dbgs() << "SLP: Adding cost " << C
4415                       << " for bundle that starts with " << *TE.Scalars[0]
4416                       << ".\n"
4417                       << "SLP: Current total cost = " << Cost << "\n");
4418   }
4419 
4420   SmallPtrSet<Value *, 16> ExtractCostCalculated;
4421   InstructionCost ExtractCost = 0;
4422   SmallBitVector IsIdentity;
4423   SmallVector<unsigned> VF;
4424   SmallVector<SmallVector<int>> ShuffleMask;
4425   SmallVector<Value *> FirstUsers;
4426   SmallVector<APInt> DemandedElts;
4427   for (ExternalUser &EU : ExternalUses) {
4428     // We only add extract cost once for the same scalar.
4429     if (!ExtractCostCalculated.insert(EU.Scalar).second)
4430       continue;
4431 
4432     // Uses by ephemeral values are free (because the ephemeral value will be
4433     // removed prior to code generation, and so the extraction will be
4434     // removed as well).
4435     if (EphValues.count(EU.User))
4436       continue;
4437 
4438     // No extract cost for vector "scalar"
4439     if (isa<FixedVectorType>(EU.Scalar->getType()))
4440       continue;
4441 
4442     // Already counted the cost for external uses when tried to adjust the cost
4443     // for extractelements, no need to add it again.
4444     if (isa<ExtractElementInst>(EU.Scalar))
4445       continue;
4446 
4447     // If found user is an insertelement, do not calculate extract cost but try
4448     // to detect it as a final shuffled/identity match.
4449     if (EU.User && isa<InsertElementInst>(EU.User)) {
4450       if (auto *FTy = dyn_cast<FixedVectorType>(EU.User->getType())) {
4451         Optional<int> InsertIdx = getInsertIndex(EU.User, 0);
4452         if (!InsertIdx || *InsertIdx == UndefMaskElem)
4453           continue;
4454         Value *VU = EU.User;
4455         auto *It = find_if(FirstUsers, [VU](Value *V) {
4456           // Checks if 2 insertelements are from the same buildvector.
4457           if (VU->getType() != V->getType())
4458             return false;
4459           auto *IE1 = cast<InsertElementInst>(VU);
4460           auto *IE2 = cast<InsertElementInst>(V);
4461           // Go though of insertelement instructions trying to find either VU as
4462           // the original vector for IE2 or V as the original vector for IE1.
4463           do {
4464             if (IE1 == VU || IE2 == V)
4465               return true;
4466             if (IE1)
4467               IE1 = dyn_cast<InsertElementInst>(IE1->getOperand(0));
4468             if (IE2)
4469               IE2 = dyn_cast<InsertElementInst>(IE2->getOperand(0));
4470           } while (IE1 || IE2);
4471           return false;
4472         });
4473         int VecId = -1;
4474         if (It == FirstUsers.end()) {
4475           VF.push_back(FTy->getNumElements());
4476           ShuffleMask.emplace_back(VF.back(), UndefMaskElem);
4477           FirstUsers.push_back(EU.User);
4478           DemandedElts.push_back(APInt::getNullValue(VF.back()));
4479           IsIdentity.push_back(true);
4480           VecId = FirstUsers.size() - 1;
4481         } else {
4482           VecId = std::distance(FirstUsers.begin(), It);
4483         }
4484         int Idx = *InsertIdx;
4485         ShuffleMask[VecId][Idx] = EU.Lane;
4486         IsIdentity.set(IsIdentity.test(VecId) &
4487                        (EU.Lane == Idx || EU.Lane == UndefMaskElem));
4488         DemandedElts[VecId].setBit(Idx);
4489       }
4490     }
4491 
4492     // If we plan to rewrite the tree in a smaller type, we will need to sign
4493     // extend the extracted value back to the original type. Here, we account
4494     // for the extract and the added cost of the sign extend if needed.
4495     auto *VecTy = FixedVectorType::get(EU.Scalar->getType(), BundleWidth);
4496     auto *ScalarRoot = VectorizableTree[0]->Scalars[0];
4497     if (MinBWs.count(ScalarRoot)) {
4498       auto *MinTy = IntegerType::get(F->getContext(), MinBWs[ScalarRoot].first);
4499       auto Extend =
4500           MinBWs[ScalarRoot].second ? Instruction::SExt : Instruction::ZExt;
4501       VecTy = FixedVectorType::get(MinTy, BundleWidth);
4502       ExtractCost += TTI->getExtractWithExtendCost(Extend, EU.Scalar->getType(),
4503                                                    VecTy, EU.Lane);
4504     } else {
4505       ExtractCost +=
4506           TTI->getVectorInstrCost(Instruction::ExtractElement, VecTy, EU.Lane);
4507     }
4508   }
4509 
4510   InstructionCost SpillCost = getSpillCost();
4511   Cost += SpillCost + ExtractCost;
4512   for (int I = 0, E = FirstUsers.size(); I < E; ++I) {
4513     if (!IsIdentity.test(I)) {
4514       InstructionCost C = TTI->getShuffleCost(
4515           TTI::SK_PermuteSingleSrc,
4516           cast<FixedVectorType>(FirstUsers[I]->getType()), ShuffleMask[I]);
4517       LLVM_DEBUG(dbgs() << "SLP: Adding cost " << C
4518                         << " for final shuffle of insertelement external users "
4519                         << *VectorizableTree.front()->Scalars.front() << ".\n"
4520                         << "SLP: Current total cost = " << Cost << "\n");
4521       Cost += C;
4522     }
4523     unsigned VF = ShuffleMask[I].size();
4524     for (int &Mask : ShuffleMask[I])
4525       Mask = (Mask == UndefMaskElem ? 0 : VF) + Mask;
4526     InstructionCost C = TTI->getShuffleCost(
4527         TTI::SK_PermuteTwoSrc, cast<FixedVectorType>(FirstUsers[I]->getType()),
4528         ShuffleMask[I]);
4529     LLVM_DEBUG(
4530         dbgs()
4531         << "SLP: Adding cost " << C
4532         << " for final shuffle of vector node and external insertelement users "
4533         << *VectorizableTree.front()->Scalars.front() << ".\n"
4534         << "SLP: Current total cost = " << Cost << "\n");
4535     Cost += C;
4536     InstructionCost InsertCost = TTI->getScalarizationOverhead(
4537         cast<FixedVectorType>(FirstUsers[I]->getType()), DemandedElts[I],
4538         /*Insert*/ true,
4539         /*Extract*/ false);
4540     Cost -= InsertCost;
4541     LLVM_DEBUG(dbgs() << "SLP: subtracting the cost " << InsertCost
4542                       << " for insertelements gather.\n"
4543                       << "SLP: Current total cost = " << Cost << "\n");
4544   }
4545 
4546 #ifndef NDEBUG
4547   SmallString<256> Str;
4548   {
4549     raw_svector_ostream OS(Str);
4550     OS << "SLP: Spill Cost = " << SpillCost << ".\n"
4551        << "SLP: Extract Cost = " << ExtractCost << ".\n"
4552        << "SLP: Total Cost = " << Cost << ".\n";
4553   }
4554   LLVM_DEBUG(dbgs() << Str);
4555   if (ViewSLPTree)
4556     ViewGraph(this, "SLP" + F->getName(), false, Str);
4557 #endif
4558 
4559   return Cost;
4560 }
4561 
4562 Optional<TargetTransformInfo::ShuffleKind>
4563 BoUpSLP::isGatherShuffledEntry(const TreeEntry *TE, SmallVectorImpl<int> &Mask,
4564                                SmallVectorImpl<const TreeEntry *> &Entries) {
4565   // TODO: currently checking only for Scalars in the tree entry, need to count
4566   // reused elements too for better cost estimation.
4567   Mask.assign(TE->Scalars.size(), UndefMaskElem);
4568   Entries.clear();
4569   // Build a lists of values to tree entries.
4570   DenseMap<Value *, SmallPtrSet<const TreeEntry *, 4>> ValueToTEs;
4571   for (const std::unique_ptr<TreeEntry> &EntryPtr : VectorizableTree) {
4572     if (EntryPtr.get() == TE)
4573       break;
4574     if (EntryPtr->State != TreeEntry::NeedToGather)
4575       continue;
4576     for (Value *V : EntryPtr->Scalars)
4577       ValueToTEs.try_emplace(V).first->getSecond().insert(EntryPtr.get());
4578   }
4579   // Find all tree entries used by the gathered values. If no common entries
4580   // found - not a shuffle.
4581   // Here we build a set of tree nodes for each gathered value and trying to
4582   // find the intersection between these sets. If we have at least one common
4583   // tree node for each gathered value - we have just a permutation of the
4584   // single vector. If we have 2 different sets, we're in situation where we
4585   // have a permutation of 2 input vectors.
4586   SmallVector<SmallPtrSet<const TreeEntry *, 4>> UsedTEs;
4587   DenseMap<Value *, int> UsedValuesEntry;
4588   for (Value *V : TE->Scalars) {
4589     if (isa<UndefValue>(V))
4590       continue;
4591     // Build a list of tree entries where V is used.
4592     SmallPtrSet<const TreeEntry *, 4> VToTEs;
4593     auto It = ValueToTEs.find(V);
4594     if (It != ValueToTEs.end())
4595       VToTEs = It->second;
4596     if (const TreeEntry *VTE = getTreeEntry(V))
4597       VToTEs.insert(VTE);
4598     if (VToTEs.empty())
4599       return None;
4600     if (UsedTEs.empty()) {
4601       // The first iteration, just insert the list of nodes to vector.
4602       UsedTEs.push_back(VToTEs);
4603     } else {
4604       // Need to check if there are any previously used tree nodes which use V.
4605       // If there are no such nodes, consider that we have another one input
4606       // vector.
4607       SmallPtrSet<const TreeEntry *, 4> SavedVToTEs(VToTEs);
4608       unsigned Idx = 0;
4609       for (SmallPtrSet<const TreeEntry *, 4> &Set : UsedTEs) {
4610         // Do we have a non-empty intersection of previously listed tree entries
4611         // and tree entries using current V?
4612         set_intersect(VToTEs, Set);
4613         if (!VToTEs.empty()) {
4614           // Yes, write the new subset and continue analysis for the next
4615           // scalar.
4616           Set.swap(VToTEs);
4617           break;
4618         }
4619         VToTEs = SavedVToTEs;
4620         ++Idx;
4621       }
4622       // No non-empty intersection found - need to add a second set of possible
4623       // source vectors.
4624       if (Idx == UsedTEs.size()) {
4625         // If the number of input vectors is greater than 2 - not a permutation,
4626         // fallback to the regular gather.
4627         if (UsedTEs.size() == 2)
4628           return None;
4629         UsedTEs.push_back(SavedVToTEs);
4630         Idx = UsedTEs.size() - 1;
4631       }
4632       UsedValuesEntry.try_emplace(V, Idx);
4633     }
4634   }
4635 
4636   unsigned VF = 0;
4637   if (UsedTEs.size() == 1) {
4638     // Try to find the perfect match in another gather node at first.
4639     auto It = find_if(UsedTEs.front(), [TE](const TreeEntry *EntryPtr) {
4640       return EntryPtr->isSame(TE->Scalars);
4641     });
4642     if (It != UsedTEs.front().end()) {
4643       Entries.push_back(*It);
4644       std::iota(Mask.begin(), Mask.end(), 0);
4645       return TargetTransformInfo::SK_PermuteSingleSrc;
4646     }
4647     // No perfect match, just shuffle, so choose the first tree node.
4648     Entries.push_back(*UsedTEs.front().begin());
4649   } else {
4650     // Try to find nodes with the same vector factor.
4651     assert(UsedTEs.size() == 2 && "Expected at max 2 permuted entries.");
4652     // FIXME: Shall be replaced by GetVF function once non-power-2 patch is
4653     // landed.
4654     auto &&GetVF = [](const TreeEntry *TE) {
4655       if (!TE->ReuseShuffleIndices.empty())
4656         return TE->ReuseShuffleIndices.size();
4657       return TE->Scalars.size();
4658     };
4659     DenseMap<int, const TreeEntry *> VFToTE;
4660     for (const TreeEntry *TE : UsedTEs.front())
4661       VFToTE.try_emplace(GetVF(TE), TE);
4662     for (const TreeEntry *TE : UsedTEs.back()) {
4663       auto It = VFToTE.find(GetVF(TE));
4664       if (It != VFToTE.end()) {
4665         VF = It->first;
4666         Entries.push_back(It->second);
4667         Entries.push_back(TE);
4668         break;
4669       }
4670     }
4671     // No 2 source vectors with the same vector factor - give up and do regular
4672     // gather.
4673     if (Entries.empty())
4674       return None;
4675   }
4676 
4677   // Build a shuffle mask for better cost estimation and vector emission.
4678   for (int I = 0, E = TE->Scalars.size(); I < E; ++I) {
4679     Value *V = TE->Scalars[I];
4680     if (isa<UndefValue>(V))
4681       continue;
4682     unsigned Idx = UsedValuesEntry.lookup(V);
4683     const TreeEntry *VTE = Entries[Idx];
4684     int FoundLane = findLaneForValue(VTE->Scalars, VTE->ReuseShuffleIndices, V);
4685     Mask[I] = Idx * VF + FoundLane;
4686     // Extra check required by isSingleSourceMaskImpl function (called by
4687     // ShuffleVectorInst::isSingleSourceMask).
4688     if (Mask[I] >= 2 * E)
4689       return None;
4690   }
4691   switch (Entries.size()) {
4692   case 1:
4693     return TargetTransformInfo::SK_PermuteSingleSrc;
4694   case 2:
4695     return TargetTransformInfo::SK_PermuteTwoSrc;
4696   default:
4697     break;
4698   }
4699   return None;
4700 }
4701 
4702 InstructionCost
4703 BoUpSLP::getGatherCost(FixedVectorType *Ty,
4704                        const DenseSet<unsigned> &ShuffledIndices) const {
4705   unsigned NumElts = Ty->getNumElements();
4706   APInt DemandedElts = APInt::getNullValue(NumElts);
4707   for (unsigned I = 0; I < NumElts; ++I)
4708     if (!ShuffledIndices.count(I))
4709       DemandedElts.setBit(I);
4710   InstructionCost Cost =
4711       TTI->getScalarizationOverhead(Ty, DemandedElts, /*Insert*/ true,
4712                                     /*Extract*/ false);
4713   if (!ShuffledIndices.empty())
4714     Cost += TTI->getShuffleCost(TargetTransformInfo::SK_PermuteSingleSrc, Ty);
4715   return Cost;
4716 }
4717 
4718 InstructionCost BoUpSLP::getGatherCost(ArrayRef<Value *> VL) const {
4719   // Find the type of the operands in VL.
4720   Type *ScalarTy = VL[0]->getType();
4721   if (StoreInst *SI = dyn_cast<StoreInst>(VL[0]))
4722     ScalarTy = SI->getValueOperand()->getType();
4723   auto *VecTy = FixedVectorType::get(ScalarTy, VL.size());
4724   // Find the cost of inserting/extracting values from the vector.
4725   // Check if the same elements are inserted several times and count them as
4726   // shuffle candidates.
4727   DenseSet<unsigned> ShuffledElements;
4728   DenseSet<Value *> UniqueElements;
4729   // Iterate in reverse order to consider insert elements with the high cost.
4730   for (unsigned I = VL.size(); I > 0; --I) {
4731     unsigned Idx = I - 1;
4732     if (isConstant(VL[Idx]))
4733       continue;
4734     if (!UniqueElements.insert(VL[Idx]).second)
4735       ShuffledElements.insert(Idx);
4736   }
4737   return getGatherCost(VecTy, ShuffledElements);
4738 }
4739 
4740 // Perform operand reordering on the instructions in VL and return the reordered
4741 // operands in Left and Right.
4742 void BoUpSLP::reorderInputsAccordingToOpcode(ArrayRef<Value *> VL,
4743                                              SmallVectorImpl<Value *> &Left,
4744                                              SmallVectorImpl<Value *> &Right,
4745                                              const DataLayout &DL,
4746                                              ScalarEvolution &SE,
4747                                              const BoUpSLP &R) {
4748   if (VL.empty())
4749     return;
4750   VLOperands Ops(VL, DL, SE, R);
4751   // Reorder the operands in place.
4752   Ops.reorder();
4753   Left = Ops.getVL(0);
4754   Right = Ops.getVL(1);
4755 }
4756 
4757 void BoUpSLP::setInsertPointAfterBundle(const TreeEntry *E) {
4758   // Get the basic block this bundle is in. All instructions in the bundle
4759   // should be in this block.
4760   auto *Front = E->getMainOp();
4761   auto *BB = Front->getParent();
4762   assert(llvm::all_of(E->Scalars, [=](Value *V) -> bool {
4763     auto *I = cast<Instruction>(V);
4764     return !E->isOpcodeOrAlt(I) || I->getParent() == BB;
4765   }));
4766 
4767   // The last instruction in the bundle in program order.
4768   Instruction *LastInst = nullptr;
4769 
4770   // Find the last instruction. The common case should be that BB has been
4771   // scheduled, and the last instruction is VL.back(). So we start with
4772   // VL.back() and iterate over schedule data until we reach the end of the
4773   // bundle. The end of the bundle is marked by null ScheduleData.
4774   if (BlocksSchedules.count(BB)) {
4775     auto *Bundle =
4776         BlocksSchedules[BB]->getScheduleData(E->isOneOf(E->Scalars.back()));
4777     if (Bundle && Bundle->isPartOfBundle())
4778       for (; Bundle; Bundle = Bundle->NextInBundle)
4779         if (Bundle->OpValue == Bundle->Inst)
4780           LastInst = Bundle->Inst;
4781   }
4782 
4783   // LastInst can still be null at this point if there's either not an entry
4784   // for BB in BlocksSchedules or there's no ScheduleData available for
4785   // VL.back(). This can be the case if buildTree_rec aborts for various
4786   // reasons (e.g., the maximum recursion depth is reached, the maximum region
4787   // size is reached, etc.). ScheduleData is initialized in the scheduling
4788   // "dry-run".
4789   //
4790   // If this happens, we can still find the last instruction by brute force. We
4791   // iterate forwards from Front (inclusive) until we either see all
4792   // instructions in the bundle or reach the end of the block. If Front is the
4793   // last instruction in program order, LastInst will be set to Front, and we
4794   // will visit all the remaining instructions in the block.
4795   //
4796   // One of the reasons we exit early from buildTree_rec is to place an upper
4797   // bound on compile-time. Thus, taking an additional compile-time hit here is
4798   // not ideal. However, this should be exceedingly rare since it requires that
4799   // we both exit early from buildTree_rec and that the bundle be out-of-order
4800   // (causing us to iterate all the way to the end of the block).
4801   if (!LastInst) {
4802     SmallPtrSet<Value *, 16> Bundle(E->Scalars.begin(), E->Scalars.end());
4803     for (auto &I : make_range(BasicBlock::iterator(Front), BB->end())) {
4804       if (Bundle.erase(&I) && E->isOpcodeOrAlt(&I))
4805         LastInst = &I;
4806       if (Bundle.empty())
4807         break;
4808     }
4809   }
4810   assert(LastInst && "Failed to find last instruction in bundle");
4811 
4812   // Set the insertion point after the last instruction in the bundle. Set the
4813   // debug location to Front.
4814   Builder.SetInsertPoint(BB, ++LastInst->getIterator());
4815   Builder.SetCurrentDebugLocation(Front->getDebugLoc());
4816 }
4817 
4818 Value *BoUpSLP::gather(ArrayRef<Value *> VL) {
4819   // List of instructions/lanes from current block and/or the blocks which are
4820   // part of the current loop. These instructions will be inserted at the end to
4821   // make it possible to optimize loops and hoist invariant instructions out of
4822   // the loops body with better chances for success.
4823   SmallVector<std::pair<Value *, unsigned>, 4> PostponedInsts;
4824   SmallSet<int, 4> PostponedIndices;
4825   Loop *L = LI->getLoopFor(Builder.GetInsertBlock());
4826   auto &&CheckPredecessor = [](BasicBlock *InstBB, BasicBlock *InsertBB) {
4827     SmallPtrSet<BasicBlock *, 4> Visited;
4828     while (InsertBB && InsertBB != InstBB && Visited.insert(InsertBB).second)
4829       InsertBB = InsertBB->getSinglePredecessor();
4830     return InsertBB && InsertBB == InstBB;
4831   };
4832   for (int I = 0, E = VL.size(); I < E; ++I) {
4833     if (auto *Inst = dyn_cast<Instruction>(VL[I]))
4834       if ((CheckPredecessor(Inst->getParent(), Builder.GetInsertBlock()) ||
4835            getTreeEntry(Inst) || (L && (L->contains(Inst)))) &&
4836           PostponedIndices.insert(I).second)
4837         PostponedInsts.emplace_back(Inst, I);
4838   }
4839 
4840   auto &&CreateInsertElement = [this](Value *Vec, Value *V, unsigned Pos) {
4841     // No need to insert undefs elements - exit.
4842     if (isa<UndefValue>(V))
4843       return Vec;
4844     Vec = Builder.CreateInsertElement(Vec, V, Builder.getInt32(Pos));
4845     auto *InsElt = dyn_cast<InsertElementInst>(Vec);
4846     if (!InsElt)
4847       return Vec;
4848     GatherSeq.insert(InsElt);
4849     CSEBlocks.insert(InsElt->getParent());
4850     // Add to our 'need-to-extract' list.
4851     if (TreeEntry *Entry = getTreeEntry(V)) {
4852       // Find which lane we need to extract.
4853       unsigned FoundLane =
4854           std::distance(Entry->Scalars.begin(), find(Entry->Scalars, V));
4855       assert(FoundLane < Entry->Scalars.size() && "Couldn't find extract lane");
4856       if (!Entry->ReuseShuffleIndices.empty()) {
4857         FoundLane = std::distance(Entry->ReuseShuffleIndices.begin(),
4858                                   find(Entry->ReuseShuffleIndices, FoundLane));
4859       }
4860       ExternalUses.emplace_back(V, InsElt, FoundLane);
4861     }
4862     return Vec;
4863   };
4864   Value *Val0 =
4865       isa<StoreInst>(VL[0]) ? cast<StoreInst>(VL[0])->getValueOperand() : VL[0];
4866   FixedVectorType *VecTy = FixedVectorType::get(Val0->getType(), VL.size());
4867   Value *Vec = PoisonValue::get(VecTy);
4868   for (int I = 0, E = VL.size(); I < E; ++I) {
4869     if (PostponedIndices.contains(I))
4870       continue;
4871     Vec = CreateInsertElement(Vec, VL[I], I);
4872   }
4873   // Append instructions, which are/may be part of the loop, in the end to make
4874   // it possible to hoist non-loop-based instructions.
4875   for (const std::pair<Value *, unsigned> &Pair : PostponedInsts)
4876     Vec = CreateInsertElement(Vec, Pair.first, Pair.second);
4877 
4878   return Vec;
4879 }
4880 
4881 namespace {
4882 /// Merges shuffle masks and emits final shuffle instruction, if required.
4883 class ShuffleInstructionBuilder {
4884   IRBuilderBase &Builder;
4885   const unsigned VF = 0;
4886   bool IsFinalized = false;
4887   SmallVector<int, 4> Mask;
4888 
4889 public:
4890   ShuffleInstructionBuilder(IRBuilderBase &Builder, unsigned VF)
4891       : Builder(Builder), VF(VF) {}
4892 
4893   /// Adds a mask, inverting it before applying.
4894   void addInversedMask(ArrayRef<unsigned> SubMask) {
4895     if (SubMask.empty())
4896       return;
4897     SmallVector<int, 4> NewMask;
4898     inversePermutation(SubMask, NewMask);
4899     addMask(NewMask);
4900   }
4901 
4902   /// Functions adds masks, merging them into  single one.
4903   void addMask(ArrayRef<unsigned> SubMask) {
4904     SmallVector<int, 4> NewMask(SubMask.begin(), SubMask.end());
4905     addMask(NewMask);
4906   }
4907 
4908   void addMask(ArrayRef<int> SubMask) {
4909     if (SubMask.empty())
4910       return;
4911     if (Mask.empty()) {
4912       Mask.append(SubMask.begin(), SubMask.end());
4913       return;
4914     }
4915     SmallVector<int, 4> NewMask(SubMask.size(), SubMask.size());
4916     int TermValue = std::min(Mask.size(), SubMask.size());
4917     for (int I = 0, E = SubMask.size(); I < E; ++I) {
4918       if (SubMask[I] >= TermValue || SubMask[I] == UndefMaskElem ||
4919           Mask[SubMask[I]] >= TermValue) {
4920         NewMask[I] = UndefMaskElem;
4921         continue;
4922       }
4923       NewMask[I] = Mask[SubMask[I]];
4924     }
4925     Mask.swap(NewMask);
4926   }
4927 
4928   Value *finalize(Value *V) {
4929     IsFinalized = true;
4930     unsigned ValueVF = cast<FixedVectorType>(V->getType())->getNumElements();
4931     if (VF == ValueVF && Mask.empty())
4932       return V;
4933     SmallVector<int, 4> NormalizedMask(VF, UndefMaskElem);
4934     std::iota(NormalizedMask.begin(), NormalizedMask.end(), 0);
4935     addMask(NormalizedMask);
4936 
4937     if (VF == ValueVF && ShuffleVectorInst::isIdentityMask(Mask))
4938       return V;
4939     return Builder.CreateShuffleVector(V, Mask, "shuffle");
4940   }
4941 
4942   ~ShuffleInstructionBuilder() {
4943     assert((IsFinalized || Mask.empty()) &&
4944            "Shuffle construction must be finalized.");
4945   }
4946 };
4947 } // namespace
4948 
4949 Value *BoUpSLP::vectorizeTree(ArrayRef<Value *> VL) {
4950   unsigned VF = VL.size();
4951   InstructionsState S = getSameOpcode(VL);
4952   if (S.getOpcode()) {
4953     if (TreeEntry *E = getTreeEntry(S.OpValue))
4954       if (E->isSame(VL)) {
4955         Value *V = vectorizeTree(E);
4956         if (VF != cast<FixedVectorType>(V->getType())->getNumElements()) {
4957           if (!E->ReuseShuffleIndices.empty()) {
4958             // Reshuffle to get only unique values.
4959             // If some of the scalars are duplicated in the vectorization tree
4960             // entry, we do not vectorize them but instead generate a mask for
4961             // the reuses. But if there are several users of the same entry,
4962             // they may have different vectorization factors. This is especially
4963             // important for PHI nodes. In this case, we need to adapt the
4964             // resulting instruction for the user vectorization factor and have
4965             // to reshuffle it again to take only unique elements of the vector.
4966             // Without this code the function incorrectly returns reduced vector
4967             // instruction with the same elements, not with the unique ones.
4968 
4969             // block:
4970             // %phi = phi <2 x > { .., %entry} {%shuffle, %block}
4971             // %2 = shuffle <2 x > %phi, %poison, <4 x > <0, 0, 1, 1>
4972             // ... (use %2)
4973             // %shuffle = shuffle <2 x> %2, poison, <2 x> {0, 2}
4974             // br %block
4975             SmallVector<int> UniqueIdxs;
4976             SmallSet<int, 4> UsedIdxs;
4977             int Pos = 0;
4978             int Sz = VL.size();
4979             for (int Idx : E->ReuseShuffleIndices) {
4980               if (Idx != Sz && UsedIdxs.insert(Idx).second)
4981                 UniqueIdxs.emplace_back(Pos);
4982               ++Pos;
4983             }
4984             assert(VF >= UsedIdxs.size() && "Expected vectorization factor "
4985                                             "less than original vector size.");
4986             UniqueIdxs.append(VF - UsedIdxs.size(), UndefMaskElem);
4987             V = Builder.CreateShuffleVector(V, UniqueIdxs, "shrink.shuffle");
4988           } else {
4989             assert(VF < cast<FixedVectorType>(V->getType())->getNumElements() &&
4990                    "Expected vectorization factor less "
4991                    "than original vector size.");
4992             SmallVector<int> UniformMask(VF, 0);
4993             std::iota(UniformMask.begin(), UniformMask.end(), 0);
4994             V = Builder.CreateShuffleVector(V, UniformMask, "shrink.shuffle");
4995           }
4996         }
4997         return V;
4998       }
4999   }
5000 
5001   // Check that every instruction appears once in this bundle.
5002   SmallVector<int> ReuseShuffleIndicies;
5003   SmallVector<Value *> UniqueValues;
5004   if (VL.size() > 2) {
5005     DenseMap<Value *, unsigned> UniquePositions;
5006     unsigned NumValues =
5007         std::distance(VL.begin(), find_if(reverse(VL), [](Value *V) {
5008                                     return !isa<UndefValue>(V);
5009                                   }).base());
5010     VF = std::max<unsigned>(VF, PowerOf2Ceil(NumValues));
5011     int UniqueVals = 0;
5012     bool HasUndefs = false;
5013     for (Value *V : VL.drop_back(VL.size() - VF)) {
5014       if (isa<UndefValue>(V)) {
5015         ReuseShuffleIndicies.emplace_back(UndefMaskElem);
5016         HasUndefs = true;
5017         continue;
5018       }
5019       if (isConstant(V)) {
5020         ReuseShuffleIndicies.emplace_back(UniqueValues.size());
5021         UniqueValues.emplace_back(V);
5022         continue;
5023       }
5024       auto Res = UniquePositions.try_emplace(V, UniqueValues.size());
5025       ReuseShuffleIndicies.emplace_back(Res.first->second);
5026       if (Res.second) {
5027         UniqueValues.emplace_back(V);
5028         ++UniqueVals;
5029       }
5030     }
5031     if (HasUndefs && UniqueVals == 1 && UniqueValues.size() == 1) {
5032       // Emit pure splat vector.
5033       // FIXME: why it is not identified as an identity.
5034       unsigned NumUndefs = count(ReuseShuffleIndicies, UndefMaskElem);
5035       if (NumUndefs == ReuseShuffleIndicies.size() - 1)
5036         ReuseShuffleIndicies.append(VF - ReuseShuffleIndicies.size(),
5037                                     UndefMaskElem);
5038       else
5039         ReuseShuffleIndicies.assign(VF, 0);
5040     } else if (UniqueValues.size() >= VF - 1 || UniqueValues.size() <= 1) {
5041       ReuseShuffleIndicies.clear();
5042       UniqueValues.clear();
5043       UniqueValues.append(VL.begin(), std::next(VL.begin(), NumValues));
5044     }
5045     UniqueValues.append(VF - UniqueValues.size(),
5046                         UndefValue::get(VL[0]->getType()));
5047     VL = UniqueValues;
5048   }
5049 
5050   ShuffleInstructionBuilder ShuffleBuilder(Builder, VF);
5051   Value *Vec = gather(VL);
5052   if (!ReuseShuffleIndicies.empty()) {
5053     ShuffleBuilder.addMask(ReuseShuffleIndicies);
5054     Vec = ShuffleBuilder.finalize(Vec);
5055     if (auto *I = dyn_cast<Instruction>(Vec)) {
5056       GatherSeq.insert(I);
5057       CSEBlocks.insert(I->getParent());
5058     }
5059   }
5060   return Vec;
5061 }
5062 
5063 Value *BoUpSLP::vectorizeTree(TreeEntry *E) {
5064   IRBuilder<>::InsertPointGuard Guard(Builder);
5065 
5066   if (E->VectorizedValue) {
5067     LLVM_DEBUG(dbgs() << "SLP: Diamond merged for " << *E->Scalars[0] << ".\n");
5068     return E->VectorizedValue;
5069   }
5070 
5071   bool NeedToShuffleReuses = !E->ReuseShuffleIndices.empty();
5072   unsigned VF = E->Scalars.size();
5073   if (NeedToShuffleReuses)
5074     VF = E->ReuseShuffleIndices.size();
5075   ShuffleInstructionBuilder ShuffleBuilder(Builder, VF);
5076   if (E->State == TreeEntry::NeedToGather) {
5077     setInsertPointAfterBundle(E);
5078     Value *Vec;
5079     SmallVector<int> Mask;
5080     SmallVector<const TreeEntry *> Entries;
5081     Optional<TargetTransformInfo::ShuffleKind> Shuffle =
5082         isGatherShuffledEntry(E, Mask, Entries);
5083     if (Shuffle.hasValue()) {
5084       assert((Entries.size() == 1 || Entries.size() == 2) &&
5085              "Expected shuffle of 1 or 2 entries.");
5086       Vec = Builder.CreateShuffleVector(Entries.front()->VectorizedValue,
5087                                         Entries.back()->VectorizedValue, Mask);
5088     } else {
5089       Vec = gather(E->Scalars);
5090     }
5091     if (NeedToShuffleReuses) {
5092       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5093       Vec = ShuffleBuilder.finalize(Vec);
5094       if (auto *I = dyn_cast<Instruction>(Vec)) {
5095         GatherSeq.insert(I);
5096         CSEBlocks.insert(I->getParent());
5097       }
5098     }
5099     E->VectorizedValue = Vec;
5100     return Vec;
5101   }
5102 
5103   assert((E->State == TreeEntry::Vectorize ||
5104           E->State == TreeEntry::ScatterVectorize) &&
5105          "Unhandled state");
5106   unsigned ShuffleOrOp =
5107       E->isAltShuffle() ? (unsigned)Instruction::ShuffleVector : E->getOpcode();
5108   Instruction *VL0 = E->getMainOp();
5109   Type *ScalarTy = VL0->getType();
5110   if (auto *Store = dyn_cast<StoreInst>(VL0))
5111     ScalarTy = Store->getValueOperand()->getType();
5112   else if (auto *IE = dyn_cast<InsertElementInst>(VL0))
5113     ScalarTy = IE->getOperand(1)->getType();
5114   auto *VecTy = FixedVectorType::get(ScalarTy, E->Scalars.size());
5115   switch (ShuffleOrOp) {
5116     case Instruction::PHI: {
5117       auto *PH = cast<PHINode>(VL0);
5118       Builder.SetInsertPoint(PH->getParent()->getFirstNonPHI());
5119       Builder.SetCurrentDebugLocation(PH->getDebugLoc());
5120       PHINode *NewPhi = Builder.CreatePHI(VecTy, PH->getNumIncomingValues());
5121       Value *V = NewPhi;
5122       if (NeedToShuffleReuses)
5123         V = Builder.CreateShuffleVector(V, E->ReuseShuffleIndices, "shuffle");
5124 
5125       E->VectorizedValue = V;
5126 
5127       // PHINodes may have multiple entries from the same block. We want to
5128       // visit every block once.
5129       SmallPtrSet<BasicBlock*, 4> VisitedBBs;
5130 
5131       for (unsigned i = 0, e = PH->getNumIncomingValues(); i < e; ++i) {
5132         ValueList Operands;
5133         BasicBlock *IBB = PH->getIncomingBlock(i);
5134 
5135         if (!VisitedBBs.insert(IBB).second) {
5136           NewPhi->addIncoming(NewPhi->getIncomingValueForBlock(IBB), IBB);
5137           continue;
5138         }
5139 
5140         Builder.SetInsertPoint(IBB->getTerminator());
5141         Builder.SetCurrentDebugLocation(PH->getDebugLoc());
5142         Value *Vec = vectorizeTree(E->getOperand(i));
5143         NewPhi->addIncoming(Vec, IBB);
5144       }
5145 
5146       assert(NewPhi->getNumIncomingValues() == PH->getNumIncomingValues() &&
5147              "Invalid number of incoming values");
5148       return V;
5149     }
5150 
5151     case Instruction::ExtractElement: {
5152       Value *V = E->getSingleOperand(0);
5153       Builder.SetInsertPoint(VL0);
5154       ShuffleBuilder.addInversedMask(E->ReorderIndices);
5155       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5156       V = ShuffleBuilder.finalize(V);
5157       E->VectorizedValue = V;
5158       return V;
5159     }
5160     case Instruction::ExtractValue: {
5161       auto *LI = cast<LoadInst>(E->getSingleOperand(0));
5162       Builder.SetInsertPoint(LI);
5163       auto *PtrTy = PointerType::get(VecTy, LI->getPointerAddressSpace());
5164       Value *Ptr = Builder.CreateBitCast(LI->getOperand(0), PtrTy);
5165       LoadInst *V = Builder.CreateAlignedLoad(VecTy, Ptr, LI->getAlign());
5166       Value *NewV = propagateMetadata(V, E->Scalars);
5167       ShuffleBuilder.addInversedMask(E->ReorderIndices);
5168       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5169       NewV = ShuffleBuilder.finalize(NewV);
5170       E->VectorizedValue = NewV;
5171       return NewV;
5172     }
5173     case Instruction::InsertElement: {
5174       Builder.SetInsertPoint(VL0);
5175       Value *V = vectorizeTree(E->getOperand(1));
5176 
5177       const unsigned NumElts =
5178           cast<FixedVectorType>(VL0->getType())->getNumElements();
5179       const unsigned NumScalars = E->Scalars.size();
5180 
5181       // Create InsertVector shuffle if necessary
5182       Instruction *FirstInsert = nullptr;
5183       bool IsIdentity = true;
5184       unsigned Offset = UINT_MAX;
5185       for (unsigned I = 0; I < NumScalars; ++I) {
5186         Value *Scalar = E->Scalars[I];
5187         if (!FirstInsert &&
5188             !is_contained(E->Scalars, cast<Instruction>(Scalar)->getOperand(0)))
5189           FirstInsert = cast<Instruction>(Scalar);
5190         Optional<int> InsertIdx = getInsertIndex(Scalar, 0);
5191         if (!InsertIdx || *InsertIdx == UndefMaskElem)
5192           continue;
5193         unsigned Idx = *InsertIdx;
5194         if (Idx < Offset) {
5195           Offset = Idx;
5196           IsIdentity &= I == 0;
5197         } else {
5198           assert(Idx >= Offset && "Failed to find vector index offset");
5199           IsIdentity &= Idx - Offset == I;
5200         }
5201       }
5202       assert(Offset < NumElts && "Failed to find vector index offset");
5203 
5204       // Create shuffle to resize vector
5205       SmallVector<int> Mask(NumElts, UndefMaskElem);
5206       if (!IsIdentity) {
5207         for (unsigned I = 0; I < NumScalars; ++I) {
5208           Value *Scalar = E->Scalars[I];
5209           Optional<int> InsertIdx = getInsertIndex(Scalar, 0);
5210           if (!InsertIdx || *InsertIdx == UndefMaskElem)
5211             continue;
5212           Mask[*InsertIdx - Offset] = I;
5213         }
5214       } else {
5215         std::iota(Mask.begin(), std::next(Mask.begin(), NumScalars), 0);
5216       }
5217       if (!IsIdentity || NumElts != NumScalars)
5218         V = Builder.CreateShuffleVector(V, Mask);
5219 
5220       if (NumElts != NumScalars) {
5221         SmallVector<int> InsertMask(NumElts);
5222         std::iota(InsertMask.begin(), InsertMask.end(), 0);
5223         for (unsigned I = 0; I < NumElts; I++) {
5224           if (Mask[I] != UndefMaskElem)
5225             InsertMask[Offset + I] = NumElts + I;
5226         }
5227 
5228         V = Builder.CreateShuffleVector(
5229             FirstInsert->getOperand(0), V, InsertMask,
5230             cast<Instruction>(E->Scalars.back())->getName());
5231       }
5232 
5233       ++NumVectorInstructions;
5234       E->VectorizedValue = V;
5235       return V;
5236     }
5237     case Instruction::ZExt:
5238     case Instruction::SExt:
5239     case Instruction::FPToUI:
5240     case Instruction::FPToSI:
5241     case Instruction::FPExt:
5242     case Instruction::PtrToInt:
5243     case Instruction::IntToPtr:
5244     case Instruction::SIToFP:
5245     case Instruction::UIToFP:
5246     case Instruction::Trunc:
5247     case Instruction::FPTrunc:
5248     case Instruction::BitCast: {
5249       setInsertPointAfterBundle(E);
5250 
5251       Value *InVec = vectorizeTree(E->getOperand(0));
5252 
5253       if (E->VectorizedValue) {
5254         LLVM_DEBUG(dbgs() << "SLP: Diamond merged for " << *VL0 << ".\n");
5255         return E->VectorizedValue;
5256       }
5257 
5258       auto *CI = cast<CastInst>(VL0);
5259       Value *V = Builder.CreateCast(CI->getOpcode(), InVec, VecTy);
5260       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5261       V = ShuffleBuilder.finalize(V);
5262 
5263       E->VectorizedValue = V;
5264       ++NumVectorInstructions;
5265       return V;
5266     }
5267     case Instruction::FCmp:
5268     case Instruction::ICmp: {
5269       setInsertPointAfterBundle(E);
5270 
5271       Value *L = vectorizeTree(E->getOperand(0));
5272       Value *R = vectorizeTree(E->getOperand(1));
5273 
5274       if (E->VectorizedValue) {
5275         LLVM_DEBUG(dbgs() << "SLP: Diamond merged for " << *VL0 << ".\n");
5276         return E->VectorizedValue;
5277       }
5278 
5279       CmpInst::Predicate P0 = cast<CmpInst>(VL0)->getPredicate();
5280       Value *V = Builder.CreateCmp(P0, L, R);
5281       propagateIRFlags(V, E->Scalars, VL0);
5282       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5283       V = ShuffleBuilder.finalize(V);
5284 
5285       E->VectorizedValue = V;
5286       ++NumVectorInstructions;
5287       return V;
5288     }
5289     case Instruction::Select: {
5290       setInsertPointAfterBundle(E);
5291 
5292       Value *Cond = vectorizeTree(E->getOperand(0));
5293       Value *True = vectorizeTree(E->getOperand(1));
5294       Value *False = vectorizeTree(E->getOperand(2));
5295 
5296       if (E->VectorizedValue) {
5297         LLVM_DEBUG(dbgs() << "SLP: Diamond merged for " << *VL0 << ".\n");
5298         return E->VectorizedValue;
5299       }
5300 
5301       Value *V = Builder.CreateSelect(Cond, True, False);
5302       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5303       V = ShuffleBuilder.finalize(V);
5304 
5305       E->VectorizedValue = V;
5306       ++NumVectorInstructions;
5307       return V;
5308     }
5309     case Instruction::FNeg: {
5310       setInsertPointAfterBundle(E);
5311 
5312       Value *Op = vectorizeTree(E->getOperand(0));
5313 
5314       if (E->VectorizedValue) {
5315         LLVM_DEBUG(dbgs() << "SLP: Diamond merged for " << *VL0 << ".\n");
5316         return E->VectorizedValue;
5317       }
5318 
5319       Value *V = Builder.CreateUnOp(
5320           static_cast<Instruction::UnaryOps>(E->getOpcode()), Op);
5321       propagateIRFlags(V, E->Scalars, VL0);
5322       if (auto *I = dyn_cast<Instruction>(V))
5323         V = propagateMetadata(I, E->Scalars);
5324 
5325       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5326       V = ShuffleBuilder.finalize(V);
5327 
5328       E->VectorizedValue = V;
5329       ++NumVectorInstructions;
5330 
5331       return V;
5332     }
5333     case Instruction::Add:
5334     case Instruction::FAdd:
5335     case Instruction::Sub:
5336     case Instruction::FSub:
5337     case Instruction::Mul:
5338     case Instruction::FMul:
5339     case Instruction::UDiv:
5340     case Instruction::SDiv:
5341     case Instruction::FDiv:
5342     case Instruction::URem:
5343     case Instruction::SRem:
5344     case Instruction::FRem:
5345     case Instruction::Shl:
5346     case Instruction::LShr:
5347     case Instruction::AShr:
5348     case Instruction::And:
5349     case Instruction::Or:
5350     case Instruction::Xor: {
5351       setInsertPointAfterBundle(E);
5352 
5353       Value *LHS = vectorizeTree(E->getOperand(0));
5354       Value *RHS = vectorizeTree(E->getOperand(1));
5355 
5356       if (E->VectorizedValue) {
5357         LLVM_DEBUG(dbgs() << "SLP: Diamond merged for " << *VL0 << ".\n");
5358         return E->VectorizedValue;
5359       }
5360 
5361       Value *V = Builder.CreateBinOp(
5362           static_cast<Instruction::BinaryOps>(E->getOpcode()), LHS,
5363           RHS);
5364       propagateIRFlags(V, E->Scalars, VL0);
5365       if (auto *I = dyn_cast<Instruction>(V))
5366         V = propagateMetadata(I, E->Scalars);
5367 
5368       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5369       V = ShuffleBuilder.finalize(V);
5370 
5371       E->VectorizedValue = V;
5372       ++NumVectorInstructions;
5373 
5374       return V;
5375     }
5376     case Instruction::Load: {
5377       // Loads are inserted at the head of the tree because we don't want to
5378       // sink them all the way down past store instructions.
5379       bool IsReorder = E->updateStateIfReorder();
5380       if (IsReorder)
5381         VL0 = E->getMainOp();
5382       setInsertPointAfterBundle(E);
5383 
5384       LoadInst *LI = cast<LoadInst>(VL0);
5385       Instruction *NewLI;
5386       unsigned AS = LI->getPointerAddressSpace();
5387       Value *PO = LI->getPointerOperand();
5388       if (E->State == TreeEntry::Vectorize) {
5389 
5390         Value *VecPtr = Builder.CreateBitCast(PO, VecTy->getPointerTo(AS));
5391 
5392         // The pointer operand uses an in-tree scalar so we add the new BitCast
5393         // to ExternalUses list to make sure that an extract will be generated
5394         // in the future.
5395         if (getTreeEntry(PO))
5396           ExternalUses.emplace_back(PO, cast<User>(VecPtr), 0);
5397 
5398         NewLI = Builder.CreateAlignedLoad(VecTy, VecPtr, LI->getAlign());
5399       } else {
5400         assert(E->State == TreeEntry::ScatterVectorize && "Unhandled state");
5401         Value *VecPtr = vectorizeTree(E->getOperand(0));
5402         // Use the minimum alignment of the gathered loads.
5403         Align CommonAlignment = LI->getAlign();
5404         for (Value *V : E->Scalars)
5405           CommonAlignment =
5406               commonAlignment(CommonAlignment, cast<LoadInst>(V)->getAlign());
5407         NewLI = Builder.CreateMaskedGather(VecPtr, CommonAlignment);
5408       }
5409       Value *V = propagateMetadata(NewLI, E->Scalars);
5410 
5411       ShuffleBuilder.addInversedMask(E->ReorderIndices);
5412       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5413       V = ShuffleBuilder.finalize(V);
5414       E->VectorizedValue = V;
5415       ++NumVectorInstructions;
5416       return V;
5417     }
5418     case Instruction::Store: {
5419       bool IsReorder = !E->ReorderIndices.empty();
5420       auto *SI = cast<StoreInst>(
5421           IsReorder ? E->Scalars[E->ReorderIndices.front()] : VL0);
5422       unsigned AS = SI->getPointerAddressSpace();
5423 
5424       setInsertPointAfterBundle(E);
5425 
5426       Value *VecValue = vectorizeTree(E->getOperand(0));
5427       ShuffleBuilder.addMask(E->ReorderIndices);
5428       VecValue = ShuffleBuilder.finalize(VecValue);
5429 
5430       Value *ScalarPtr = SI->getPointerOperand();
5431       Value *VecPtr = Builder.CreateBitCast(
5432           ScalarPtr, VecValue->getType()->getPointerTo(AS));
5433       StoreInst *ST = Builder.CreateAlignedStore(VecValue, VecPtr,
5434                                                  SI->getAlign());
5435 
5436       // The pointer operand uses an in-tree scalar, so add the new BitCast to
5437       // ExternalUses to make sure that an extract will be generated in the
5438       // future.
5439       if (getTreeEntry(ScalarPtr))
5440         ExternalUses.push_back(ExternalUser(ScalarPtr, cast<User>(VecPtr), 0));
5441 
5442       Value *V = propagateMetadata(ST, E->Scalars);
5443 
5444       E->VectorizedValue = V;
5445       ++NumVectorInstructions;
5446       return V;
5447     }
5448     case Instruction::GetElementPtr: {
5449       setInsertPointAfterBundle(E);
5450 
5451       Value *Op0 = vectorizeTree(E->getOperand(0));
5452 
5453       std::vector<Value *> OpVecs;
5454       for (int j = 1, e = cast<GetElementPtrInst>(VL0)->getNumOperands(); j < e;
5455            ++j) {
5456         ValueList &VL = E->getOperand(j);
5457         // Need to cast all elements to the same type before vectorization to
5458         // avoid crash.
5459         Type *VL0Ty = VL0->getOperand(j)->getType();
5460         Type *Ty = llvm::all_of(
5461                        VL, [VL0Ty](Value *V) { return VL0Ty == V->getType(); })
5462                        ? VL0Ty
5463                        : DL->getIndexType(cast<GetElementPtrInst>(VL0)
5464                                               ->getPointerOperandType()
5465                                               ->getScalarType());
5466         for (Value *&V : VL) {
5467           auto *CI = cast<ConstantInt>(V);
5468           V = ConstantExpr::getIntegerCast(CI, Ty,
5469                                            CI->getValue().isSignBitSet());
5470         }
5471         Value *OpVec = vectorizeTree(VL);
5472         OpVecs.push_back(OpVec);
5473       }
5474 
5475       Value *V = Builder.CreateGEP(
5476           cast<GetElementPtrInst>(VL0)->getSourceElementType(), Op0, OpVecs);
5477       if (Instruction *I = dyn_cast<Instruction>(V))
5478         V = propagateMetadata(I, E->Scalars);
5479 
5480       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5481       V = ShuffleBuilder.finalize(V);
5482 
5483       E->VectorizedValue = V;
5484       ++NumVectorInstructions;
5485 
5486       return V;
5487     }
5488     case Instruction::Call: {
5489       CallInst *CI = cast<CallInst>(VL0);
5490       setInsertPointAfterBundle(E);
5491 
5492       Intrinsic::ID IID  = Intrinsic::not_intrinsic;
5493       if (Function *FI = CI->getCalledFunction())
5494         IID = FI->getIntrinsicID();
5495 
5496       Intrinsic::ID ID = getVectorIntrinsicIDForCall(CI, TLI);
5497 
5498       auto VecCallCosts = getVectorCallCosts(CI, VecTy, TTI, TLI);
5499       bool UseIntrinsic = ID != Intrinsic::not_intrinsic &&
5500                           VecCallCosts.first <= VecCallCosts.second;
5501 
5502       Value *ScalarArg = nullptr;
5503       std::vector<Value *> OpVecs;
5504       SmallVector<Type *, 2> TysForDecl =
5505           {FixedVectorType::get(CI->getType(), E->Scalars.size())};
5506       for (int j = 0, e = CI->getNumArgOperands(); j < e; ++j) {
5507         ValueList OpVL;
5508         // Some intrinsics have scalar arguments. This argument should not be
5509         // vectorized.
5510         if (UseIntrinsic && hasVectorInstrinsicScalarOpd(IID, j)) {
5511           CallInst *CEI = cast<CallInst>(VL0);
5512           ScalarArg = CEI->getArgOperand(j);
5513           OpVecs.push_back(CEI->getArgOperand(j));
5514           if (hasVectorInstrinsicOverloadedScalarOpd(IID, j))
5515             TysForDecl.push_back(ScalarArg->getType());
5516           continue;
5517         }
5518 
5519         Value *OpVec = vectorizeTree(E->getOperand(j));
5520         LLVM_DEBUG(dbgs() << "SLP: OpVec[" << j << "]: " << *OpVec << "\n");
5521         OpVecs.push_back(OpVec);
5522       }
5523 
5524       Function *CF;
5525       if (!UseIntrinsic) {
5526         VFShape Shape =
5527             VFShape::get(*CI, ElementCount::getFixed(static_cast<unsigned>(
5528                                   VecTy->getNumElements())),
5529                          false /*HasGlobalPred*/);
5530         CF = VFDatabase(*CI).getVectorizedFunction(Shape);
5531       } else {
5532         CF = Intrinsic::getDeclaration(F->getParent(), ID, TysForDecl);
5533       }
5534 
5535       SmallVector<OperandBundleDef, 1> OpBundles;
5536       CI->getOperandBundlesAsDefs(OpBundles);
5537       Value *V = Builder.CreateCall(CF, OpVecs, OpBundles);
5538 
5539       // The scalar argument uses an in-tree scalar so we add the new vectorized
5540       // call to ExternalUses list to make sure that an extract will be
5541       // generated in the future.
5542       if (ScalarArg && getTreeEntry(ScalarArg))
5543         ExternalUses.push_back(ExternalUser(ScalarArg, cast<User>(V), 0));
5544 
5545       propagateIRFlags(V, E->Scalars, VL0);
5546       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5547       V = ShuffleBuilder.finalize(V);
5548 
5549       E->VectorizedValue = V;
5550       ++NumVectorInstructions;
5551       return V;
5552     }
5553     case Instruction::ShuffleVector: {
5554       assert(E->isAltShuffle() &&
5555              ((Instruction::isBinaryOp(E->getOpcode()) &&
5556                Instruction::isBinaryOp(E->getAltOpcode())) ||
5557               (Instruction::isCast(E->getOpcode()) &&
5558                Instruction::isCast(E->getAltOpcode()))) &&
5559              "Invalid Shuffle Vector Operand");
5560 
5561       Value *LHS = nullptr, *RHS = nullptr;
5562       if (Instruction::isBinaryOp(E->getOpcode())) {
5563         setInsertPointAfterBundle(E);
5564         LHS = vectorizeTree(E->getOperand(0));
5565         RHS = vectorizeTree(E->getOperand(1));
5566       } else {
5567         setInsertPointAfterBundle(E);
5568         LHS = vectorizeTree(E->getOperand(0));
5569       }
5570 
5571       if (E->VectorizedValue) {
5572         LLVM_DEBUG(dbgs() << "SLP: Diamond merged for " << *VL0 << ".\n");
5573         return E->VectorizedValue;
5574       }
5575 
5576       Value *V0, *V1;
5577       if (Instruction::isBinaryOp(E->getOpcode())) {
5578         V0 = Builder.CreateBinOp(
5579             static_cast<Instruction::BinaryOps>(E->getOpcode()), LHS, RHS);
5580         V1 = Builder.CreateBinOp(
5581             static_cast<Instruction::BinaryOps>(E->getAltOpcode()), LHS, RHS);
5582       } else {
5583         V0 = Builder.CreateCast(
5584             static_cast<Instruction::CastOps>(E->getOpcode()), LHS, VecTy);
5585         V1 = Builder.CreateCast(
5586             static_cast<Instruction::CastOps>(E->getAltOpcode()), LHS, VecTy);
5587       }
5588 
5589       // Create shuffle to take alternate operations from the vector.
5590       // Also, gather up main and alt scalar ops to propagate IR flags to
5591       // each vector operation.
5592       ValueList OpScalars, AltScalars;
5593       unsigned e = E->Scalars.size();
5594       SmallVector<int, 8> Mask(e);
5595       for (unsigned i = 0; i < e; ++i) {
5596         auto *OpInst = cast<Instruction>(E->Scalars[i]);
5597         assert(E->isOpcodeOrAlt(OpInst) && "Unexpected main/alternate opcode");
5598         if (OpInst->getOpcode() == E->getAltOpcode()) {
5599           Mask[i] = e + i;
5600           AltScalars.push_back(E->Scalars[i]);
5601         } else {
5602           Mask[i] = i;
5603           OpScalars.push_back(E->Scalars[i]);
5604         }
5605       }
5606 
5607       propagateIRFlags(V0, OpScalars);
5608       propagateIRFlags(V1, AltScalars);
5609 
5610       Value *V = Builder.CreateShuffleVector(V0, V1, Mask);
5611       if (Instruction *I = dyn_cast<Instruction>(V))
5612         V = propagateMetadata(I, E->Scalars);
5613       ShuffleBuilder.addMask(E->ReuseShuffleIndices);
5614       V = ShuffleBuilder.finalize(V);
5615 
5616       E->VectorizedValue = V;
5617       ++NumVectorInstructions;
5618 
5619       return V;
5620     }
5621     default:
5622     llvm_unreachable("unknown inst");
5623   }
5624   return nullptr;
5625 }
5626 
5627 Value *BoUpSLP::vectorizeTree() {
5628   ExtraValueToDebugLocsMap ExternallyUsedValues;
5629   return vectorizeTree(ExternallyUsedValues);
5630 }
5631 
5632 Value *
5633 BoUpSLP::vectorizeTree(ExtraValueToDebugLocsMap &ExternallyUsedValues) {
5634   // All blocks must be scheduled before any instructions are inserted.
5635   for (auto &BSIter : BlocksSchedules) {
5636     scheduleBlock(BSIter.second.get());
5637   }
5638 
5639   Builder.SetInsertPoint(&F->getEntryBlock().front());
5640   auto *VectorRoot = vectorizeTree(VectorizableTree[0].get());
5641 
5642   // If the vectorized tree can be rewritten in a smaller type, we truncate the
5643   // vectorized root. InstCombine will then rewrite the entire expression. We
5644   // sign extend the extracted values below.
5645   auto *ScalarRoot = VectorizableTree[0]->Scalars[0];
5646   if (MinBWs.count(ScalarRoot)) {
5647     if (auto *I = dyn_cast<Instruction>(VectorRoot)) {
5648       // If current instr is a phi and not the last phi, insert it after the
5649       // last phi node.
5650       if (isa<PHINode>(I))
5651         Builder.SetInsertPoint(&*I->getParent()->getFirstInsertionPt());
5652       else
5653         Builder.SetInsertPoint(&*++BasicBlock::iterator(I));
5654     }
5655     auto BundleWidth = VectorizableTree[0]->Scalars.size();
5656     auto *MinTy = IntegerType::get(F->getContext(), MinBWs[ScalarRoot].first);
5657     auto *VecTy = FixedVectorType::get(MinTy, BundleWidth);
5658     auto *Trunc = Builder.CreateTrunc(VectorRoot, VecTy);
5659     VectorizableTree[0]->VectorizedValue = Trunc;
5660   }
5661 
5662   LLVM_DEBUG(dbgs() << "SLP: Extracting " << ExternalUses.size()
5663                     << " values .\n");
5664 
5665   // Extract all of the elements with the external uses.
5666   for (const auto &ExternalUse : ExternalUses) {
5667     Value *Scalar = ExternalUse.Scalar;
5668     llvm::User *User = ExternalUse.User;
5669 
5670     // Skip users that we already RAUW. This happens when one instruction
5671     // has multiple uses of the same value.
5672     if (User && !is_contained(Scalar->users(), User))
5673       continue;
5674     TreeEntry *E = getTreeEntry(Scalar);
5675     assert(E && "Invalid scalar");
5676     assert(E->State != TreeEntry::NeedToGather &&
5677            "Extracting from a gather list");
5678 
5679     Value *Vec = E->VectorizedValue;
5680     assert(Vec && "Can't find vectorizable value");
5681 
5682     Value *Lane = Builder.getInt32(ExternalUse.Lane);
5683     auto ExtractAndExtendIfNeeded = [&](Value *Vec) {
5684       if (Scalar->getType() != Vec->getType()) {
5685         Value *Ex;
5686         // "Reuse" the existing extract to improve final codegen.
5687         if (auto *ES = dyn_cast<ExtractElementInst>(Scalar)) {
5688           Ex = Builder.CreateExtractElement(ES->getOperand(0),
5689                                             ES->getOperand(1));
5690         } else {
5691           Ex = Builder.CreateExtractElement(Vec, Lane);
5692         }
5693         // If necessary, sign-extend or zero-extend ScalarRoot
5694         // to the larger type.
5695         if (!MinBWs.count(ScalarRoot))
5696           return Ex;
5697         if (MinBWs[ScalarRoot].second)
5698           return Builder.CreateSExt(Ex, Scalar->getType());
5699         return Builder.CreateZExt(Ex, Scalar->getType());
5700       }
5701       assert(isa<FixedVectorType>(Scalar->getType()) &&
5702              isa<InsertElementInst>(Scalar) &&
5703              "In-tree scalar of vector type is not insertelement?");
5704       return Vec;
5705     };
5706     // If User == nullptr, the Scalar is used as extra arg. Generate
5707     // ExtractElement instruction and update the record for this scalar in
5708     // ExternallyUsedValues.
5709     if (!User) {
5710       assert(ExternallyUsedValues.count(Scalar) &&
5711              "Scalar with nullptr as an external user must be registered in "
5712              "ExternallyUsedValues map");
5713       if (auto *VecI = dyn_cast<Instruction>(Vec)) {
5714         Builder.SetInsertPoint(VecI->getParent(),
5715                                std::next(VecI->getIterator()));
5716       } else {
5717         Builder.SetInsertPoint(&F->getEntryBlock().front());
5718       }
5719       Value *NewInst = ExtractAndExtendIfNeeded(Vec);
5720       CSEBlocks.insert(cast<Instruction>(Scalar)->getParent());
5721       auto &NewInstLocs = ExternallyUsedValues[NewInst];
5722       auto It = ExternallyUsedValues.find(Scalar);
5723       assert(It != ExternallyUsedValues.end() &&
5724              "Externally used scalar is not found in ExternallyUsedValues");
5725       NewInstLocs.append(It->second);
5726       ExternallyUsedValues.erase(Scalar);
5727       // Required to update internally referenced instructions.
5728       Scalar->replaceAllUsesWith(NewInst);
5729       continue;
5730     }
5731 
5732     // Generate extracts for out-of-tree users.
5733     // Find the insertion point for the extractelement lane.
5734     if (auto *VecI = dyn_cast<Instruction>(Vec)) {
5735       if (PHINode *PH = dyn_cast<PHINode>(User)) {
5736         for (int i = 0, e = PH->getNumIncomingValues(); i != e; ++i) {
5737           if (PH->getIncomingValue(i) == Scalar) {
5738             Instruction *IncomingTerminator =
5739                 PH->getIncomingBlock(i)->getTerminator();
5740             if (isa<CatchSwitchInst>(IncomingTerminator)) {
5741               Builder.SetInsertPoint(VecI->getParent(),
5742                                      std::next(VecI->getIterator()));
5743             } else {
5744               Builder.SetInsertPoint(PH->getIncomingBlock(i)->getTerminator());
5745             }
5746             Value *NewInst = ExtractAndExtendIfNeeded(Vec);
5747             CSEBlocks.insert(PH->getIncomingBlock(i));
5748             PH->setOperand(i, NewInst);
5749           }
5750         }
5751       } else {
5752         Builder.SetInsertPoint(cast<Instruction>(User));
5753         Value *NewInst = ExtractAndExtendIfNeeded(Vec);
5754         CSEBlocks.insert(cast<Instruction>(User)->getParent());
5755         User->replaceUsesOfWith(Scalar, NewInst);
5756       }
5757     } else {
5758       Builder.SetInsertPoint(&F->getEntryBlock().front());
5759       Value *NewInst = ExtractAndExtendIfNeeded(Vec);
5760       CSEBlocks.insert(&F->getEntryBlock());
5761       User->replaceUsesOfWith(Scalar, NewInst);
5762     }
5763 
5764     LLVM_DEBUG(dbgs() << "SLP: Replaced:" << *User << ".\n");
5765   }
5766 
5767   // For each vectorized value:
5768   for (auto &TEPtr : VectorizableTree) {
5769     TreeEntry *Entry = TEPtr.get();
5770 
5771     // No need to handle users of gathered values.
5772     if (Entry->State == TreeEntry::NeedToGather)
5773       continue;
5774 
5775     assert(Entry->VectorizedValue && "Can't find vectorizable value");
5776 
5777     // For each lane:
5778     for (int Lane = 0, LE = Entry->Scalars.size(); Lane != LE; ++Lane) {
5779       Value *Scalar = Entry->Scalars[Lane];
5780 
5781 #ifndef NDEBUG
5782       Type *Ty = Scalar->getType();
5783       if (!Ty->isVoidTy()) {
5784         for (User *U : Scalar->users()) {
5785           LLVM_DEBUG(dbgs() << "SLP: \tvalidating user:" << *U << ".\n");
5786 
5787           // It is legal to delete users in the ignorelist.
5788           assert((getTreeEntry(U) || is_contained(UserIgnoreList, U)) &&
5789                  "Deleting out-of-tree value");
5790         }
5791       }
5792 #endif
5793       LLVM_DEBUG(dbgs() << "SLP: \tErasing scalar:" << *Scalar << ".\n");
5794       eraseInstruction(cast<Instruction>(Scalar));
5795     }
5796   }
5797 
5798   Builder.ClearInsertionPoint();
5799   InstrElementSize.clear();
5800 
5801   return VectorizableTree[0]->VectorizedValue;
5802 }
5803 
5804 void BoUpSLP::optimizeGatherSequence() {
5805   LLVM_DEBUG(dbgs() << "SLP: Optimizing " << GatherSeq.size()
5806                     << " gather sequences instructions.\n");
5807   // LICM InsertElementInst sequences.
5808   for (Instruction *I : GatherSeq) {
5809     if (isDeleted(I))
5810       continue;
5811 
5812     // Check if this block is inside a loop.
5813     Loop *L = LI->getLoopFor(I->getParent());
5814     if (!L)
5815       continue;
5816 
5817     // Check if it has a preheader.
5818     BasicBlock *PreHeader = L->getLoopPreheader();
5819     if (!PreHeader)
5820       continue;
5821 
5822     // If the vector or the element that we insert into it are
5823     // instructions that are defined in this basic block then we can't
5824     // hoist this instruction.
5825     auto *Op0 = dyn_cast<Instruction>(I->getOperand(0));
5826     auto *Op1 = dyn_cast<Instruction>(I->getOperand(1));
5827     if (Op0 && L->contains(Op0))
5828       continue;
5829     if (Op1 && L->contains(Op1))
5830       continue;
5831 
5832     // We can hoist this instruction. Move it to the pre-header.
5833     I->moveBefore(PreHeader->getTerminator());
5834   }
5835 
5836   // Make a list of all reachable blocks in our CSE queue.
5837   SmallVector<const DomTreeNode *, 8> CSEWorkList;
5838   CSEWorkList.reserve(CSEBlocks.size());
5839   for (BasicBlock *BB : CSEBlocks)
5840     if (DomTreeNode *N = DT->getNode(BB)) {
5841       assert(DT->isReachableFromEntry(N));
5842       CSEWorkList.push_back(N);
5843     }
5844 
5845   // Sort blocks by domination. This ensures we visit a block after all blocks
5846   // dominating it are visited.
5847   llvm::sort(CSEWorkList, [](const DomTreeNode *A, const DomTreeNode *B) {
5848     assert((A == B) == (A->getDFSNumIn() == B->getDFSNumIn()) &&
5849            "Different nodes should have different DFS numbers");
5850     return A->getDFSNumIn() < B->getDFSNumIn();
5851   });
5852 
5853   // Perform O(N^2) search over the gather sequences and merge identical
5854   // instructions. TODO: We can further optimize this scan if we split the
5855   // instructions into different buckets based on the insert lane.
5856   SmallVector<Instruction *, 16> Visited;
5857   for (auto I = CSEWorkList.begin(), E = CSEWorkList.end(); I != E; ++I) {
5858     assert(*I &&
5859            (I == CSEWorkList.begin() || !DT->dominates(*I, *std::prev(I))) &&
5860            "Worklist not sorted properly!");
5861     BasicBlock *BB = (*I)->getBlock();
5862     // For all instructions in blocks containing gather sequences:
5863     for (BasicBlock::iterator it = BB->begin(), e = BB->end(); it != e;) {
5864       Instruction *In = &*it++;
5865       if (isDeleted(In))
5866         continue;
5867       if (!isa<InsertElementInst>(In) && !isa<ExtractElementInst>(In))
5868         continue;
5869 
5870       // Check if we can replace this instruction with any of the
5871       // visited instructions.
5872       for (Instruction *v : Visited) {
5873         if (In->isIdenticalTo(v) &&
5874             DT->dominates(v->getParent(), In->getParent())) {
5875           In->replaceAllUsesWith(v);
5876           eraseInstruction(In);
5877           In = nullptr;
5878           break;
5879         }
5880       }
5881       if (In) {
5882         assert(!is_contained(Visited, In));
5883         Visited.push_back(In);
5884       }
5885     }
5886   }
5887   CSEBlocks.clear();
5888   GatherSeq.clear();
5889 }
5890 
5891 // Groups the instructions to a bundle (which is then a single scheduling entity)
5892 // and schedules instructions until the bundle gets ready.
5893 Optional<BoUpSLP::ScheduleData *>
5894 BoUpSLP::BlockScheduling::tryScheduleBundle(ArrayRef<Value *> VL, BoUpSLP *SLP,
5895                                             const InstructionsState &S) {
5896   if (isa<PHINode>(S.OpValue) || isa<InsertElementInst>(S.OpValue))
5897     return nullptr;
5898 
5899   // Initialize the instruction bundle.
5900   Instruction *OldScheduleEnd = ScheduleEnd;
5901   ScheduleData *PrevInBundle = nullptr;
5902   ScheduleData *Bundle = nullptr;
5903   bool ReSchedule = false;
5904   LLVM_DEBUG(dbgs() << "SLP:  bundle: " << *S.OpValue << "\n");
5905 
5906   auto &&TryScheduleBundle = [this, OldScheduleEnd, SLP](bool ReSchedule,
5907                                                          ScheduleData *Bundle) {
5908     // The scheduling region got new instructions at the lower end (or it is a
5909     // new region for the first bundle). This makes it necessary to
5910     // recalculate all dependencies.
5911     // It is seldom that this needs to be done a second time after adding the
5912     // initial bundle to the region.
5913     if (ScheduleEnd != OldScheduleEnd) {
5914       for (auto *I = ScheduleStart; I != ScheduleEnd; I = I->getNextNode())
5915         doForAllOpcodes(I, [](ScheduleData *SD) { SD->clearDependencies(); });
5916       ReSchedule = true;
5917     }
5918     if (ReSchedule) {
5919       resetSchedule();
5920       initialFillReadyList(ReadyInsts);
5921     }
5922     if (Bundle) {
5923       LLVM_DEBUG(dbgs() << "SLP: try schedule bundle " << *Bundle
5924                         << " in block " << BB->getName() << "\n");
5925       calculateDependencies(Bundle, /*InsertInReadyList=*/true, SLP);
5926     }
5927 
5928     // Now try to schedule the new bundle or (if no bundle) just calculate
5929     // dependencies. As soon as the bundle is "ready" it means that there are no
5930     // cyclic dependencies and we can schedule it. Note that's important that we
5931     // don't "schedule" the bundle yet (see cancelScheduling).
5932     while (((!Bundle && ReSchedule) || (Bundle && !Bundle->isReady())) &&
5933            !ReadyInsts.empty()) {
5934       ScheduleData *Picked = ReadyInsts.pop_back_val();
5935       if (Picked->isSchedulingEntity() && Picked->isReady())
5936         schedule(Picked, ReadyInsts);
5937     }
5938   };
5939 
5940   // Make sure that the scheduling region contains all
5941   // instructions of the bundle.
5942   for (Value *V : VL) {
5943     if (!extendSchedulingRegion(V, S)) {
5944       // If the scheduling region got new instructions at the lower end (or it
5945       // is a new region for the first bundle). This makes it necessary to
5946       // recalculate all dependencies.
5947       // Otherwise the compiler may crash trying to incorrectly calculate
5948       // dependencies and emit instruction in the wrong order at the actual
5949       // scheduling.
5950       TryScheduleBundle(/*ReSchedule=*/false, nullptr);
5951       return None;
5952     }
5953   }
5954 
5955   for (Value *V : VL) {
5956     ScheduleData *BundleMember = getScheduleData(V);
5957     assert(BundleMember &&
5958            "no ScheduleData for bundle member (maybe not in same basic block)");
5959     if (BundleMember->IsScheduled) {
5960       // A bundle member was scheduled as single instruction before and now
5961       // needs to be scheduled as part of the bundle. We just get rid of the
5962       // existing schedule.
5963       LLVM_DEBUG(dbgs() << "SLP:  reset schedule because " << *BundleMember
5964                         << " was already scheduled\n");
5965       ReSchedule = true;
5966     }
5967     assert(BundleMember->isSchedulingEntity() &&
5968            "bundle member already part of other bundle");
5969     if (PrevInBundle) {
5970       PrevInBundle->NextInBundle = BundleMember;
5971     } else {
5972       Bundle = BundleMember;
5973     }
5974     BundleMember->UnscheduledDepsInBundle = 0;
5975     Bundle->UnscheduledDepsInBundle += BundleMember->UnscheduledDeps;
5976 
5977     // Group the instructions to a bundle.
5978     BundleMember->FirstInBundle = Bundle;
5979     PrevInBundle = BundleMember;
5980   }
5981   assert(Bundle && "Failed to find schedule bundle");
5982   TryScheduleBundle(ReSchedule, Bundle);
5983   if (!Bundle->isReady()) {
5984     cancelScheduling(VL, S.OpValue);
5985     return None;
5986   }
5987   return Bundle;
5988 }
5989 
5990 void BoUpSLP::BlockScheduling::cancelScheduling(ArrayRef<Value *> VL,
5991                                                 Value *OpValue) {
5992   if (isa<PHINode>(OpValue) || isa<InsertElementInst>(OpValue))
5993     return;
5994 
5995   ScheduleData *Bundle = getScheduleData(OpValue);
5996   LLVM_DEBUG(dbgs() << "SLP:  cancel scheduling of " << *Bundle << "\n");
5997   assert(!Bundle->IsScheduled &&
5998          "Can't cancel bundle which is already scheduled");
5999   assert(Bundle->isSchedulingEntity() && Bundle->isPartOfBundle() &&
6000          "tried to unbundle something which is not a bundle");
6001 
6002   // Un-bundle: make single instructions out of the bundle.
6003   ScheduleData *BundleMember = Bundle;
6004   while (BundleMember) {
6005     assert(BundleMember->FirstInBundle == Bundle && "corrupt bundle links");
6006     BundleMember->FirstInBundle = BundleMember;
6007     ScheduleData *Next = BundleMember->NextInBundle;
6008     BundleMember->NextInBundle = nullptr;
6009     BundleMember->UnscheduledDepsInBundle = BundleMember->UnscheduledDeps;
6010     if (BundleMember->UnscheduledDepsInBundle == 0) {
6011       ReadyInsts.insert(BundleMember);
6012     }
6013     BundleMember = Next;
6014   }
6015 }
6016 
6017 BoUpSLP::ScheduleData *BoUpSLP::BlockScheduling::allocateScheduleDataChunks() {
6018   // Allocate a new ScheduleData for the instruction.
6019   if (ChunkPos >= ChunkSize) {
6020     ScheduleDataChunks.push_back(std::make_unique<ScheduleData[]>(ChunkSize));
6021     ChunkPos = 0;
6022   }
6023   return &(ScheduleDataChunks.back()[ChunkPos++]);
6024 }
6025 
6026 bool BoUpSLP::BlockScheduling::extendSchedulingRegion(Value *V,
6027                                                       const InstructionsState &S) {
6028   if (getScheduleData(V, isOneOf(S, V)))
6029     return true;
6030   Instruction *I = dyn_cast<Instruction>(V);
6031   assert(I && "bundle member must be an instruction");
6032   assert(!isa<PHINode>(I) && !isa<InsertElementInst>(I) &&
6033          "phi nodes/insertelements don't need to be scheduled");
6034   auto &&CheckSheduleForI = [this, &S](Instruction *I) -> bool {
6035     ScheduleData *ISD = getScheduleData(I);
6036     if (!ISD)
6037       return false;
6038     assert(isInSchedulingRegion(ISD) &&
6039            "ScheduleData not in scheduling region");
6040     ScheduleData *SD = allocateScheduleDataChunks();
6041     SD->Inst = I;
6042     SD->init(SchedulingRegionID, S.OpValue);
6043     ExtraScheduleDataMap[I][S.OpValue] = SD;
6044     return true;
6045   };
6046   if (CheckSheduleForI(I))
6047     return true;
6048   if (!ScheduleStart) {
6049     // It's the first instruction in the new region.
6050     initScheduleData(I, I->getNextNode(), nullptr, nullptr);
6051     ScheduleStart = I;
6052     ScheduleEnd = I->getNextNode();
6053     if (isOneOf(S, I) != I)
6054       CheckSheduleForI(I);
6055     assert(ScheduleEnd && "tried to vectorize a terminator?");
6056     LLVM_DEBUG(dbgs() << "SLP:  initialize schedule region to " << *I << "\n");
6057     return true;
6058   }
6059   // Search up and down at the same time, because we don't know if the new
6060   // instruction is above or below the existing scheduling region.
6061   BasicBlock::reverse_iterator UpIter =
6062       ++ScheduleStart->getIterator().getReverse();
6063   BasicBlock::reverse_iterator UpperEnd = BB->rend();
6064   BasicBlock::iterator DownIter = ScheduleEnd->getIterator();
6065   BasicBlock::iterator LowerEnd = BB->end();
6066   while (UpIter != UpperEnd && DownIter != LowerEnd && &*UpIter != I &&
6067          &*DownIter != I) {
6068     if (++ScheduleRegionSize > ScheduleRegionSizeLimit) {
6069       LLVM_DEBUG(dbgs() << "SLP:  exceeded schedule region size limit\n");
6070       return false;
6071     }
6072 
6073     ++UpIter;
6074     ++DownIter;
6075   }
6076   if (DownIter == LowerEnd || (UpIter != UpperEnd && &*UpIter == I)) {
6077     assert(I->getParent() == ScheduleStart->getParent() &&
6078            "Instruction is in wrong basic block.");
6079     initScheduleData(I, ScheduleStart, nullptr, FirstLoadStoreInRegion);
6080     ScheduleStart = I;
6081     if (isOneOf(S, I) != I)
6082       CheckSheduleForI(I);
6083     LLVM_DEBUG(dbgs() << "SLP:  extend schedule region start to " << *I
6084                       << "\n");
6085     return true;
6086   }
6087   assert((UpIter == UpperEnd || (DownIter != LowerEnd && &*DownIter == I)) &&
6088          "Expected to reach top of the basic block or instruction down the "
6089          "lower end.");
6090   assert(I->getParent() == ScheduleEnd->getParent() &&
6091          "Instruction is in wrong basic block.");
6092   initScheduleData(ScheduleEnd, I->getNextNode(), LastLoadStoreInRegion,
6093                    nullptr);
6094   ScheduleEnd = I->getNextNode();
6095   if (isOneOf(S, I) != I)
6096     CheckSheduleForI(I);
6097   assert(ScheduleEnd && "tried to vectorize a terminator?");
6098   LLVM_DEBUG(dbgs() << "SLP:  extend schedule region end to " << *I << "\n");
6099   return true;
6100 }
6101 
6102 void BoUpSLP::BlockScheduling::initScheduleData(Instruction *FromI,
6103                                                 Instruction *ToI,
6104                                                 ScheduleData *PrevLoadStore,
6105                                                 ScheduleData *NextLoadStore) {
6106   ScheduleData *CurrentLoadStore = PrevLoadStore;
6107   for (Instruction *I = FromI; I != ToI; I = I->getNextNode()) {
6108     ScheduleData *SD = ScheduleDataMap[I];
6109     if (!SD) {
6110       SD = allocateScheduleDataChunks();
6111       ScheduleDataMap[I] = SD;
6112       SD->Inst = I;
6113     }
6114     assert(!isInSchedulingRegion(SD) &&
6115            "new ScheduleData already in scheduling region");
6116     SD->init(SchedulingRegionID, I);
6117 
6118     if (I->mayReadOrWriteMemory() &&
6119         (!isa<IntrinsicInst>(I) ||
6120          (cast<IntrinsicInst>(I)->getIntrinsicID() != Intrinsic::sideeffect &&
6121           cast<IntrinsicInst>(I)->getIntrinsicID() !=
6122               Intrinsic::pseudoprobe))) {
6123       // Update the linked list of memory accessing instructions.
6124       if (CurrentLoadStore) {
6125         CurrentLoadStore->NextLoadStore = SD;
6126       } else {
6127         FirstLoadStoreInRegion = SD;
6128       }
6129       CurrentLoadStore = SD;
6130     }
6131   }
6132   if (NextLoadStore) {
6133     if (CurrentLoadStore)
6134       CurrentLoadStore->NextLoadStore = NextLoadStore;
6135   } else {
6136     LastLoadStoreInRegion = CurrentLoadStore;
6137   }
6138 }
6139 
6140 void BoUpSLP::BlockScheduling::calculateDependencies(ScheduleData *SD,
6141                                                      bool InsertInReadyList,
6142                                                      BoUpSLP *SLP) {
6143   assert(SD->isSchedulingEntity());
6144 
6145   SmallVector<ScheduleData *, 10> WorkList;
6146   WorkList.push_back(SD);
6147 
6148   while (!WorkList.empty()) {
6149     ScheduleData *SD = WorkList.pop_back_val();
6150 
6151     ScheduleData *BundleMember = SD;
6152     while (BundleMember) {
6153       assert(isInSchedulingRegion(BundleMember));
6154       if (!BundleMember->hasValidDependencies()) {
6155 
6156         LLVM_DEBUG(dbgs() << "SLP:       update deps of " << *BundleMember
6157                           << "\n");
6158         BundleMember->Dependencies = 0;
6159         BundleMember->resetUnscheduledDeps();
6160 
6161         // Handle def-use chain dependencies.
6162         if (BundleMember->OpValue != BundleMember->Inst) {
6163           ScheduleData *UseSD = getScheduleData(BundleMember->Inst);
6164           if (UseSD && isInSchedulingRegion(UseSD->FirstInBundle)) {
6165             BundleMember->Dependencies++;
6166             ScheduleData *DestBundle = UseSD->FirstInBundle;
6167             if (!DestBundle->IsScheduled)
6168               BundleMember->incrementUnscheduledDeps(1);
6169             if (!DestBundle->hasValidDependencies())
6170               WorkList.push_back(DestBundle);
6171           }
6172         } else {
6173           for (User *U : BundleMember->Inst->users()) {
6174             if (isa<Instruction>(U)) {
6175               ScheduleData *UseSD = getScheduleData(U);
6176               if (UseSD && isInSchedulingRegion(UseSD->FirstInBundle)) {
6177                 BundleMember->Dependencies++;
6178                 ScheduleData *DestBundle = UseSD->FirstInBundle;
6179                 if (!DestBundle->IsScheduled)
6180                   BundleMember->incrementUnscheduledDeps(1);
6181                 if (!DestBundle->hasValidDependencies())
6182                   WorkList.push_back(DestBundle);
6183               }
6184             } else {
6185               // I'm not sure if this can ever happen. But we need to be safe.
6186               // This lets the instruction/bundle never be scheduled and
6187               // eventually disable vectorization.
6188               BundleMember->Dependencies++;
6189               BundleMember->incrementUnscheduledDeps(1);
6190             }
6191           }
6192         }
6193 
6194         // Handle the memory dependencies.
6195         ScheduleData *DepDest = BundleMember->NextLoadStore;
6196         if (DepDest) {
6197           Instruction *SrcInst = BundleMember->Inst;
6198           MemoryLocation SrcLoc = getLocation(SrcInst, SLP->AA);
6199           bool SrcMayWrite = BundleMember->Inst->mayWriteToMemory();
6200           unsigned numAliased = 0;
6201           unsigned DistToSrc = 1;
6202 
6203           while (DepDest) {
6204             assert(isInSchedulingRegion(DepDest));
6205 
6206             // We have two limits to reduce the complexity:
6207             // 1) AliasedCheckLimit: It's a small limit to reduce calls to
6208             //    SLP->isAliased (which is the expensive part in this loop).
6209             // 2) MaxMemDepDistance: It's for very large blocks and it aborts
6210             //    the whole loop (even if the loop is fast, it's quadratic).
6211             //    It's important for the loop break condition (see below) to
6212             //    check this limit even between two read-only instructions.
6213             if (DistToSrc >= MaxMemDepDistance ||
6214                     ((SrcMayWrite || DepDest->Inst->mayWriteToMemory()) &&
6215                      (numAliased >= AliasedCheckLimit ||
6216                       SLP->isAliased(SrcLoc, SrcInst, DepDest->Inst)))) {
6217 
6218               // We increment the counter only if the locations are aliased
6219               // (instead of counting all alias checks). This gives a better
6220               // balance between reduced runtime and accurate dependencies.
6221               numAliased++;
6222 
6223               DepDest->MemoryDependencies.push_back(BundleMember);
6224               BundleMember->Dependencies++;
6225               ScheduleData *DestBundle = DepDest->FirstInBundle;
6226               if (!DestBundle->IsScheduled) {
6227                 BundleMember->incrementUnscheduledDeps(1);
6228               }
6229               if (!DestBundle->hasValidDependencies()) {
6230                 WorkList.push_back(DestBundle);
6231               }
6232             }
6233             DepDest = DepDest->NextLoadStore;
6234 
6235             // Example, explaining the loop break condition: Let's assume our
6236             // starting instruction is i0 and MaxMemDepDistance = 3.
6237             //
6238             //                      +--------v--v--v
6239             //             i0,i1,i2,i3,i4,i5,i6,i7,i8
6240             //             +--------^--^--^
6241             //
6242             // MaxMemDepDistance let us stop alias-checking at i3 and we add
6243             // dependencies from i0 to i3,i4,.. (even if they are not aliased).
6244             // Previously we already added dependencies from i3 to i6,i7,i8
6245             // (because of MaxMemDepDistance). As we added a dependency from
6246             // i0 to i3, we have transitive dependencies from i0 to i6,i7,i8
6247             // and we can abort this loop at i6.
6248             if (DistToSrc >= 2 * MaxMemDepDistance)
6249               break;
6250             DistToSrc++;
6251           }
6252         }
6253       }
6254       BundleMember = BundleMember->NextInBundle;
6255     }
6256     if (InsertInReadyList && SD->isReady()) {
6257       ReadyInsts.push_back(SD);
6258       LLVM_DEBUG(dbgs() << "SLP:     gets ready on update: " << *SD->Inst
6259                         << "\n");
6260     }
6261   }
6262 }
6263 
6264 void BoUpSLP::BlockScheduling::resetSchedule() {
6265   assert(ScheduleStart &&
6266          "tried to reset schedule on block which has not been scheduled");
6267   for (Instruction *I = ScheduleStart; I != ScheduleEnd; I = I->getNextNode()) {
6268     doForAllOpcodes(I, [&](ScheduleData *SD) {
6269       assert(isInSchedulingRegion(SD) &&
6270              "ScheduleData not in scheduling region");
6271       SD->IsScheduled = false;
6272       SD->resetUnscheduledDeps();
6273     });
6274   }
6275   ReadyInsts.clear();
6276 }
6277 
6278 void BoUpSLP::scheduleBlock(BlockScheduling *BS) {
6279   if (!BS->ScheduleStart)
6280     return;
6281 
6282   LLVM_DEBUG(dbgs() << "SLP: schedule block " << BS->BB->getName() << "\n");
6283 
6284   BS->resetSchedule();
6285 
6286   // For the real scheduling we use a more sophisticated ready-list: it is
6287   // sorted by the original instruction location. This lets the final schedule
6288   // be as  close as possible to the original instruction order.
6289   struct ScheduleDataCompare {
6290     bool operator()(ScheduleData *SD1, ScheduleData *SD2) const {
6291       return SD2->SchedulingPriority < SD1->SchedulingPriority;
6292     }
6293   };
6294   std::set<ScheduleData *, ScheduleDataCompare> ReadyInsts;
6295 
6296   // Ensure that all dependency data is updated and fill the ready-list with
6297   // initial instructions.
6298   int Idx = 0;
6299   int NumToSchedule = 0;
6300   for (auto *I = BS->ScheduleStart; I != BS->ScheduleEnd;
6301        I = I->getNextNode()) {
6302     BS->doForAllOpcodes(I, [this, &Idx, &NumToSchedule, BS](ScheduleData *SD) {
6303       assert((isa<InsertElementInst>(SD->Inst) ||
6304               SD->isPartOfBundle() == (getTreeEntry(SD->Inst) != nullptr)) &&
6305              "scheduler and vectorizer bundle mismatch");
6306       SD->FirstInBundle->SchedulingPriority = Idx++;
6307       if (SD->isSchedulingEntity()) {
6308         BS->calculateDependencies(SD, false, this);
6309         NumToSchedule++;
6310       }
6311     });
6312   }
6313   BS->initialFillReadyList(ReadyInsts);
6314 
6315   Instruction *LastScheduledInst = BS->ScheduleEnd;
6316 
6317   // Do the "real" scheduling.
6318   while (!ReadyInsts.empty()) {
6319     ScheduleData *picked = *ReadyInsts.begin();
6320     ReadyInsts.erase(ReadyInsts.begin());
6321 
6322     // Move the scheduled instruction(s) to their dedicated places, if not
6323     // there yet.
6324     ScheduleData *BundleMember = picked;
6325     while (BundleMember) {
6326       Instruction *pickedInst = BundleMember->Inst;
6327       if (pickedInst->getNextNode() != LastScheduledInst) {
6328         BS->BB->getInstList().remove(pickedInst);
6329         BS->BB->getInstList().insert(LastScheduledInst->getIterator(),
6330                                      pickedInst);
6331       }
6332       LastScheduledInst = pickedInst;
6333       BundleMember = BundleMember->NextInBundle;
6334     }
6335 
6336     BS->schedule(picked, ReadyInsts);
6337     NumToSchedule--;
6338   }
6339   assert(NumToSchedule == 0 && "could not schedule all instructions");
6340 
6341   // Avoid duplicate scheduling of the block.
6342   BS->ScheduleStart = nullptr;
6343 }
6344 
6345 unsigned BoUpSLP::getVectorElementSize(Value *V) {
6346   // If V is a store, just return the width of the stored value (or value
6347   // truncated just before storing) without traversing the expression tree.
6348   // This is the common case.
6349   if (auto *Store = dyn_cast<StoreInst>(V)) {
6350     if (auto *Trunc = dyn_cast<TruncInst>(Store->getValueOperand()))
6351       return DL->getTypeSizeInBits(Trunc->getSrcTy());
6352     return DL->getTypeSizeInBits(Store->getValueOperand()->getType());
6353   }
6354 
6355   if (auto *IEI = dyn_cast<InsertElementInst>(V))
6356     return getVectorElementSize(IEI->getOperand(1));
6357 
6358   auto E = InstrElementSize.find(V);
6359   if (E != InstrElementSize.end())
6360     return E->second;
6361 
6362   // If V is not a store, we can traverse the expression tree to find loads
6363   // that feed it. The type of the loaded value may indicate a more suitable
6364   // width than V's type. We want to base the vector element size on the width
6365   // of memory operations where possible.
6366   SmallVector<std::pair<Instruction *, BasicBlock *>, 16> Worklist;
6367   SmallPtrSet<Instruction *, 16> Visited;
6368   if (auto *I = dyn_cast<Instruction>(V)) {
6369     Worklist.emplace_back(I, I->getParent());
6370     Visited.insert(I);
6371   }
6372 
6373   // Traverse the expression tree in bottom-up order looking for loads. If we
6374   // encounter an instruction we don't yet handle, we give up.
6375   auto Width = 0u;
6376   while (!Worklist.empty()) {
6377     Instruction *I;
6378     BasicBlock *Parent;
6379     std::tie(I, Parent) = Worklist.pop_back_val();
6380 
6381     // We should only be looking at scalar instructions here. If the current
6382     // instruction has a vector type, skip.
6383     auto *Ty = I->getType();
6384     if (isa<VectorType>(Ty))
6385       continue;
6386 
6387     // If the current instruction is a load, update MaxWidth to reflect the
6388     // width of the loaded value.
6389     if (isa<LoadInst>(I) || isa<ExtractElementInst>(I) ||
6390         isa<ExtractValueInst>(I))
6391       Width = std::max<unsigned>(Width, DL->getTypeSizeInBits(Ty));
6392 
6393     // Otherwise, we need to visit the operands of the instruction. We only
6394     // handle the interesting cases from buildTree here. If an operand is an
6395     // instruction we haven't yet visited and from the same basic block as the
6396     // user or the use is a PHI node, we add it to the worklist.
6397     else if (isa<PHINode>(I) || isa<CastInst>(I) || isa<GetElementPtrInst>(I) ||
6398              isa<CmpInst>(I) || isa<SelectInst>(I) || isa<BinaryOperator>(I) ||
6399              isa<UnaryOperator>(I)) {
6400       for (Use &U : I->operands())
6401         if (auto *J = dyn_cast<Instruction>(U.get()))
6402           if (Visited.insert(J).second &&
6403               (isa<PHINode>(I) || J->getParent() == Parent))
6404             Worklist.emplace_back(J, J->getParent());
6405     } else {
6406       break;
6407     }
6408   }
6409 
6410   // If we didn't encounter a memory access in the expression tree, or if we
6411   // gave up for some reason, just return the width of V. Otherwise, return the
6412   // maximum width we found.
6413   if (!Width) {
6414     if (auto *CI = dyn_cast<CmpInst>(V))
6415       V = CI->getOperand(0);
6416     Width = DL->getTypeSizeInBits(V->getType());
6417   }
6418 
6419   for (Instruction *I : Visited)
6420     InstrElementSize[I] = Width;
6421 
6422   return Width;
6423 }
6424 
6425 // Determine if a value V in a vectorizable expression Expr can be demoted to a
6426 // smaller type with a truncation. We collect the values that will be demoted
6427 // in ToDemote and additional roots that require investigating in Roots.
6428 static bool collectValuesToDemote(Value *V, SmallPtrSetImpl<Value *> &Expr,
6429                                   SmallVectorImpl<Value *> &ToDemote,
6430                                   SmallVectorImpl<Value *> &Roots) {
6431   // We can always demote constants.
6432   if (isa<Constant>(V)) {
6433     ToDemote.push_back(V);
6434     return true;
6435   }
6436 
6437   // If the value is not an instruction in the expression with only one use, it
6438   // cannot be demoted.
6439   auto *I = dyn_cast<Instruction>(V);
6440   if (!I || !I->hasOneUse() || !Expr.count(I))
6441     return false;
6442 
6443   switch (I->getOpcode()) {
6444 
6445   // We can always demote truncations and extensions. Since truncations can
6446   // seed additional demotion, we save the truncated value.
6447   case Instruction::Trunc:
6448     Roots.push_back(I->getOperand(0));
6449     break;
6450   case Instruction::ZExt:
6451   case Instruction::SExt:
6452     if (isa<ExtractElementInst>(I->getOperand(0)) ||
6453         isa<InsertElementInst>(I->getOperand(0)))
6454       return false;
6455     break;
6456 
6457   // We can demote certain binary operations if we can demote both of their
6458   // operands.
6459   case Instruction::Add:
6460   case Instruction::Sub:
6461   case Instruction::Mul:
6462   case Instruction::And:
6463   case Instruction::Or:
6464   case Instruction::Xor:
6465     if (!collectValuesToDemote(I->getOperand(0), Expr, ToDemote, Roots) ||
6466         !collectValuesToDemote(I->getOperand(1), Expr, ToDemote, Roots))
6467       return false;
6468     break;
6469 
6470   // We can demote selects if we can demote their true and false values.
6471   case Instruction::Select: {
6472     SelectInst *SI = cast<SelectInst>(I);
6473     if (!collectValuesToDemote(SI->getTrueValue(), Expr, ToDemote, Roots) ||
6474         !collectValuesToDemote(SI->getFalseValue(), Expr, ToDemote, Roots))
6475       return false;
6476     break;
6477   }
6478 
6479   // We can demote phis if we can demote all their incoming operands. Note that
6480   // we don't need to worry about cycles since we ensure single use above.
6481   case Instruction::PHI: {
6482     PHINode *PN = cast<PHINode>(I);
6483     for (Value *IncValue : PN->incoming_values())
6484       if (!collectValuesToDemote(IncValue, Expr, ToDemote, Roots))
6485         return false;
6486     break;
6487   }
6488 
6489   // Otherwise, conservatively give up.
6490   default:
6491     return false;
6492   }
6493 
6494   // Record the value that we can demote.
6495   ToDemote.push_back(V);
6496   return true;
6497 }
6498 
6499 void BoUpSLP::computeMinimumValueSizes() {
6500   // If there are no external uses, the expression tree must be rooted by a
6501   // store. We can't demote in-memory values, so there is nothing to do here.
6502   if (ExternalUses.empty())
6503     return;
6504 
6505   // We only attempt to truncate integer expressions.
6506   auto &TreeRoot = VectorizableTree[0]->Scalars;
6507   auto *TreeRootIT = dyn_cast<IntegerType>(TreeRoot[0]->getType());
6508   if (!TreeRootIT)
6509     return;
6510 
6511   // If the expression is not rooted by a store, these roots should have
6512   // external uses. We will rely on InstCombine to rewrite the expression in
6513   // the narrower type. However, InstCombine only rewrites single-use values.
6514   // This means that if a tree entry other than a root is used externally, it
6515   // must have multiple uses and InstCombine will not rewrite it. The code
6516   // below ensures that only the roots are used externally.
6517   SmallPtrSet<Value *, 32> Expr(TreeRoot.begin(), TreeRoot.end());
6518   for (auto &EU : ExternalUses)
6519     if (!Expr.erase(EU.Scalar))
6520       return;
6521   if (!Expr.empty())
6522     return;
6523 
6524   // Collect the scalar values of the vectorizable expression. We will use this
6525   // context to determine which values can be demoted. If we see a truncation,
6526   // we mark it as seeding another demotion.
6527   for (auto &EntryPtr : VectorizableTree)
6528     Expr.insert(EntryPtr->Scalars.begin(), EntryPtr->Scalars.end());
6529 
6530   // Ensure the roots of the vectorizable tree don't form a cycle. They must
6531   // have a single external user that is not in the vectorizable tree.
6532   for (auto *Root : TreeRoot)
6533     if (!Root->hasOneUse() || Expr.count(*Root->user_begin()))
6534       return;
6535 
6536   // Conservatively determine if we can actually truncate the roots of the
6537   // expression. Collect the values that can be demoted in ToDemote and
6538   // additional roots that require investigating in Roots.
6539   SmallVector<Value *, 32> ToDemote;
6540   SmallVector<Value *, 4> Roots;
6541   for (auto *Root : TreeRoot)
6542     if (!collectValuesToDemote(Root, Expr, ToDemote, Roots))
6543       return;
6544 
6545   // The maximum bit width required to represent all the values that can be
6546   // demoted without loss of precision. It would be safe to truncate the roots
6547   // of the expression to this width.
6548   auto MaxBitWidth = 8u;
6549 
6550   // We first check if all the bits of the roots are demanded. If they're not,
6551   // we can truncate the roots to this narrower type.
6552   for (auto *Root : TreeRoot) {
6553     auto Mask = DB->getDemandedBits(cast<Instruction>(Root));
6554     MaxBitWidth = std::max<unsigned>(
6555         Mask.getBitWidth() - Mask.countLeadingZeros(), MaxBitWidth);
6556   }
6557 
6558   // True if the roots can be zero-extended back to their original type, rather
6559   // than sign-extended. We know that if the leading bits are not demanded, we
6560   // can safely zero-extend. So we initialize IsKnownPositive to True.
6561   bool IsKnownPositive = true;
6562 
6563   // If all the bits of the roots are demanded, we can try a little harder to
6564   // compute a narrower type. This can happen, for example, if the roots are
6565   // getelementptr indices. InstCombine promotes these indices to the pointer
6566   // width. Thus, all their bits are technically demanded even though the
6567   // address computation might be vectorized in a smaller type.
6568   //
6569   // We start by looking at each entry that can be demoted. We compute the
6570   // maximum bit width required to store the scalar by using ValueTracking to
6571   // compute the number of high-order bits we can truncate.
6572   if (MaxBitWidth == DL->getTypeSizeInBits(TreeRoot[0]->getType()) &&
6573       llvm::all_of(TreeRoot, [](Value *R) {
6574         assert(R->hasOneUse() && "Root should have only one use!");
6575         return isa<GetElementPtrInst>(R->user_back());
6576       })) {
6577     MaxBitWidth = 8u;
6578 
6579     // Determine if the sign bit of all the roots is known to be zero. If not,
6580     // IsKnownPositive is set to False.
6581     IsKnownPositive = llvm::all_of(TreeRoot, [&](Value *R) {
6582       KnownBits Known = computeKnownBits(R, *DL);
6583       return Known.isNonNegative();
6584     });
6585 
6586     // Determine the maximum number of bits required to store the scalar
6587     // values.
6588     for (auto *Scalar : ToDemote) {
6589       auto NumSignBits = ComputeNumSignBits(Scalar, *DL, 0, AC, nullptr, DT);
6590       auto NumTypeBits = DL->getTypeSizeInBits(Scalar->getType());
6591       MaxBitWidth = std::max<unsigned>(NumTypeBits - NumSignBits, MaxBitWidth);
6592     }
6593 
6594     // If we can't prove that the sign bit is zero, we must add one to the
6595     // maximum bit width to account for the unknown sign bit. This preserves
6596     // the existing sign bit so we can safely sign-extend the root back to the
6597     // original type. Otherwise, if we know the sign bit is zero, we will
6598     // zero-extend the root instead.
6599     //
6600     // FIXME: This is somewhat suboptimal, as there will be cases where adding
6601     //        one to the maximum bit width will yield a larger-than-necessary
6602     //        type. In general, we need to add an extra bit only if we can't
6603     //        prove that the upper bit of the original type is equal to the
6604     //        upper bit of the proposed smaller type. If these two bits are the
6605     //        same (either zero or one) we know that sign-extending from the
6606     //        smaller type will result in the same value. Here, since we can't
6607     //        yet prove this, we are just making the proposed smaller type
6608     //        larger to ensure correctness.
6609     if (!IsKnownPositive)
6610       ++MaxBitWidth;
6611   }
6612 
6613   // Round MaxBitWidth up to the next power-of-two.
6614   if (!isPowerOf2_64(MaxBitWidth))
6615     MaxBitWidth = NextPowerOf2(MaxBitWidth);
6616 
6617   // If the maximum bit width we compute is less than the with of the roots'
6618   // type, we can proceed with the narrowing. Otherwise, do nothing.
6619   if (MaxBitWidth >= TreeRootIT->getBitWidth())
6620     return;
6621 
6622   // If we can truncate the root, we must collect additional values that might
6623   // be demoted as a result. That is, those seeded by truncations we will
6624   // modify.
6625   while (!Roots.empty())
6626     collectValuesToDemote(Roots.pop_back_val(), Expr, ToDemote, Roots);
6627 
6628   // Finally, map the values we can demote to the maximum bit with we computed.
6629   for (auto *Scalar : ToDemote)
6630     MinBWs[Scalar] = std::make_pair(MaxBitWidth, !IsKnownPositive);
6631 }
6632 
6633 namespace {
6634 
6635 /// The SLPVectorizer Pass.
6636 struct SLPVectorizer : public FunctionPass {
6637   SLPVectorizerPass Impl;
6638 
6639   /// Pass identification, replacement for typeid
6640   static char ID;
6641 
6642   explicit SLPVectorizer() : FunctionPass(ID) {
6643     initializeSLPVectorizerPass(*PassRegistry::getPassRegistry());
6644   }
6645 
6646   bool doInitialization(Module &M) override {
6647     return false;
6648   }
6649 
6650   bool runOnFunction(Function &F) override {
6651     if (skipFunction(F))
6652       return false;
6653 
6654     auto *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
6655     auto *TTI = &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
6656     auto *TLIP = getAnalysisIfAvailable<TargetLibraryInfoWrapperPass>();
6657     auto *TLI = TLIP ? &TLIP->getTLI(F) : nullptr;
6658     auto *AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
6659     auto *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
6660     auto *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
6661     auto *AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
6662     auto *DB = &getAnalysis<DemandedBitsWrapperPass>().getDemandedBits();
6663     auto *ORE = &getAnalysis<OptimizationRemarkEmitterWrapperPass>().getORE();
6664 
6665     return Impl.runImpl(F, SE, TTI, TLI, AA, LI, DT, AC, DB, ORE);
6666   }
6667 
6668   void getAnalysisUsage(AnalysisUsage &AU) const override {
6669     FunctionPass::getAnalysisUsage(AU);
6670     AU.addRequired<AssumptionCacheTracker>();
6671     AU.addRequired<ScalarEvolutionWrapperPass>();
6672     AU.addRequired<AAResultsWrapperPass>();
6673     AU.addRequired<TargetTransformInfoWrapperPass>();
6674     AU.addRequired<LoopInfoWrapperPass>();
6675     AU.addRequired<DominatorTreeWrapperPass>();
6676     AU.addRequired<DemandedBitsWrapperPass>();
6677     AU.addRequired<OptimizationRemarkEmitterWrapperPass>();
6678     AU.addRequired<InjectTLIMappingsLegacy>();
6679     AU.addPreserved<LoopInfoWrapperPass>();
6680     AU.addPreserved<DominatorTreeWrapperPass>();
6681     AU.addPreserved<AAResultsWrapperPass>();
6682     AU.addPreserved<GlobalsAAWrapperPass>();
6683     AU.setPreservesCFG();
6684   }
6685 };
6686 
6687 } // end anonymous namespace
6688 
6689 PreservedAnalyses SLPVectorizerPass::run(Function &F, FunctionAnalysisManager &AM) {
6690   auto *SE = &AM.getResult<ScalarEvolutionAnalysis>(F);
6691   auto *TTI = &AM.getResult<TargetIRAnalysis>(F);
6692   auto *TLI = AM.getCachedResult<TargetLibraryAnalysis>(F);
6693   auto *AA = &AM.getResult<AAManager>(F);
6694   auto *LI = &AM.getResult<LoopAnalysis>(F);
6695   auto *DT = &AM.getResult<DominatorTreeAnalysis>(F);
6696   auto *AC = &AM.getResult<AssumptionAnalysis>(F);
6697   auto *DB = &AM.getResult<DemandedBitsAnalysis>(F);
6698   auto *ORE = &AM.getResult<OptimizationRemarkEmitterAnalysis>(F);
6699 
6700   bool Changed = runImpl(F, SE, TTI, TLI, AA, LI, DT, AC, DB, ORE);
6701   if (!Changed)
6702     return PreservedAnalyses::all();
6703 
6704   PreservedAnalyses PA;
6705   PA.preserveSet<CFGAnalyses>();
6706   return PA;
6707 }
6708 
6709 bool SLPVectorizerPass::runImpl(Function &F, ScalarEvolution *SE_,
6710                                 TargetTransformInfo *TTI_,
6711                                 TargetLibraryInfo *TLI_, AAResults *AA_,
6712                                 LoopInfo *LI_, DominatorTree *DT_,
6713                                 AssumptionCache *AC_, DemandedBits *DB_,
6714                                 OptimizationRemarkEmitter *ORE_) {
6715   if (!RunSLPVectorization)
6716     return false;
6717   SE = SE_;
6718   TTI = TTI_;
6719   TLI = TLI_;
6720   AA = AA_;
6721   LI = LI_;
6722   DT = DT_;
6723   AC = AC_;
6724   DB = DB_;
6725   DL = &F.getParent()->getDataLayout();
6726 
6727   Stores.clear();
6728   GEPs.clear();
6729   bool Changed = false;
6730 
6731   // If the target claims to have no vector registers don't attempt
6732   // vectorization.
6733   if (!TTI->getNumberOfRegisters(TTI->getRegisterClassForType(true)))
6734     return false;
6735 
6736   // Don't vectorize when the attribute NoImplicitFloat is used.
6737   if (F.hasFnAttribute(Attribute::NoImplicitFloat))
6738     return false;
6739 
6740   LLVM_DEBUG(dbgs() << "SLP: Analyzing blocks in " << F.getName() << ".\n");
6741 
6742   // Use the bottom up slp vectorizer to construct chains that start with
6743   // store instructions.
6744   BoUpSLP R(&F, SE, TTI, TLI, AA, LI, DT, AC, DB, DL, ORE_);
6745 
6746   // A general note: the vectorizer must use BoUpSLP::eraseInstruction() to
6747   // delete instructions.
6748 
6749   // Update DFS numbers now so that we can use them for ordering.
6750   DT->updateDFSNumbers();
6751 
6752   // Scan the blocks in the function in post order.
6753   for (auto BB : post_order(&F.getEntryBlock())) {
6754     collectSeedInstructions(BB);
6755 
6756     // Vectorize trees that end at stores.
6757     if (!Stores.empty()) {
6758       LLVM_DEBUG(dbgs() << "SLP: Found stores for " << Stores.size()
6759                         << " underlying objects.\n");
6760       Changed |= vectorizeStoreChains(R);
6761     }
6762 
6763     // Vectorize trees that end at reductions.
6764     Changed |= vectorizeChainsInBlock(BB, R);
6765 
6766     // Vectorize the index computations of getelementptr instructions. This
6767     // is primarily intended to catch gather-like idioms ending at
6768     // non-consecutive loads.
6769     if (!GEPs.empty()) {
6770       LLVM_DEBUG(dbgs() << "SLP: Found GEPs for " << GEPs.size()
6771                         << " underlying objects.\n");
6772       Changed |= vectorizeGEPIndices(BB, R);
6773     }
6774   }
6775 
6776   if (Changed) {
6777     R.optimizeGatherSequence();
6778     LLVM_DEBUG(dbgs() << "SLP: vectorized \"" << F.getName() << "\"\n");
6779   }
6780   return Changed;
6781 }
6782 
6783 /// Order may have elements assigned special value (size) which is out of
6784 /// bounds. Such indices only appear on places which correspond to undef values
6785 /// (see canReuseExtract for details) and used in order to avoid undef values
6786 /// have effect on operands ordering.
6787 /// The first loop below simply finds all unused indices and then the next loop
6788 /// nest assigns these indices for undef values positions.
6789 /// As an example below Order has two undef positions and they have assigned
6790 /// values 3 and 7 respectively:
6791 /// before:  6 9 5 4 9 2 1 0
6792 /// after:   6 3 5 4 7 2 1 0
6793 /// \returns Fixed ordering.
6794 static BoUpSLP::OrdersType fixupOrderingIndices(ArrayRef<unsigned> Order) {
6795   BoUpSLP::OrdersType NewOrder(Order.begin(), Order.end());
6796   const unsigned Sz = NewOrder.size();
6797   SmallBitVector UsedIndices(Sz);
6798   SmallVector<int> MaskedIndices;
6799   for (int I = 0, E = NewOrder.size(); I < E; ++I) {
6800     if (NewOrder[I] < Sz)
6801       UsedIndices.set(NewOrder[I]);
6802     else
6803       MaskedIndices.push_back(I);
6804   }
6805   if (MaskedIndices.empty())
6806     return NewOrder;
6807   SmallVector<int> AvailableIndices(MaskedIndices.size());
6808   unsigned Cnt = 0;
6809   int Idx = UsedIndices.find_first();
6810   do {
6811     AvailableIndices[Cnt] = Idx;
6812     Idx = UsedIndices.find_next(Idx);
6813     ++Cnt;
6814   } while (Idx > 0);
6815   assert(Cnt == MaskedIndices.size() && "Non-synced masked/available indices.");
6816   for (int I = 0, E = MaskedIndices.size(); I < E; ++I)
6817     NewOrder[MaskedIndices[I]] = AvailableIndices[I];
6818   return NewOrder;
6819 }
6820 
6821 bool SLPVectorizerPass::vectorizeStoreChain(ArrayRef<Value *> Chain, BoUpSLP &R,
6822                                             unsigned Idx) {
6823   LLVM_DEBUG(dbgs() << "SLP: Analyzing a store chain of length " << Chain.size()
6824                     << "\n");
6825   const unsigned Sz = R.getVectorElementSize(Chain[0]);
6826   const unsigned MinVF = R.getMinVecRegSize() / Sz;
6827   unsigned VF = Chain.size();
6828 
6829   if (!isPowerOf2_32(Sz) || !isPowerOf2_32(VF) || VF < 2 || VF < MinVF)
6830     return false;
6831 
6832   LLVM_DEBUG(dbgs() << "SLP: Analyzing " << VF << " stores at offset " << Idx
6833                     << "\n");
6834 
6835   R.buildTree(Chain);
6836   Optional<ArrayRef<unsigned>> Order = R.bestOrder();
6837   // TODO: Handle orders of size less than number of elements in the vector.
6838   if (Order && Order->size() == Chain.size()) {
6839     // TODO: reorder tree nodes without tree rebuilding.
6840     SmallVector<Value *, 4> ReorderedOps(Chain.size());
6841     transform(fixupOrderingIndices(*Order), ReorderedOps.begin(),
6842               [Chain](const unsigned Idx) { return Chain[Idx]; });
6843     R.buildTree(ReorderedOps);
6844   }
6845   if (R.isTreeTinyAndNotFullyVectorizable())
6846     return false;
6847   if (R.isLoadCombineCandidate())
6848     return false;
6849 
6850   R.computeMinimumValueSizes();
6851 
6852   InstructionCost Cost = R.getTreeCost();
6853 
6854   LLVM_DEBUG(dbgs() << "SLP: Found cost = " << Cost << " for VF =" << VF << "\n");
6855   if (Cost < -SLPCostThreshold) {
6856     LLVM_DEBUG(dbgs() << "SLP: Decided to vectorize cost = " << Cost << "\n");
6857 
6858     using namespace ore;
6859 
6860     R.getORE()->emit(OptimizationRemark(SV_NAME, "StoresVectorized",
6861                                         cast<StoreInst>(Chain[0]))
6862                      << "Stores SLP vectorized with cost " << NV("Cost", Cost)
6863                      << " and with tree size "
6864                      << NV("TreeSize", R.getTreeSize()));
6865 
6866     R.vectorizeTree();
6867     return true;
6868   }
6869 
6870   return false;
6871 }
6872 
6873 bool SLPVectorizerPass::vectorizeStores(ArrayRef<StoreInst *> Stores,
6874                                         BoUpSLP &R) {
6875   // We may run into multiple chains that merge into a single chain. We mark the
6876   // stores that we vectorized so that we don't visit the same store twice.
6877   BoUpSLP::ValueSet VectorizedStores;
6878   bool Changed = false;
6879 
6880   int E = Stores.size();
6881   SmallBitVector Tails(E, false);
6882   int MaxIter = MaxStoreLookup.getValue();
6883   SmallVector<std::pair<int, int>, 16> ConsecutiveChain(
6884       E, std::make_pair(E, INT_MAX));
6885   SmallVector<SmallBitVector, 4> CheckedPairs(E, SmallBitVector(E, false));
6886   int IterCnt;
6887   auto &&FindConsecutiveAccess = [this, &Stores, &Tails, &IterCnt, MaxIter,
6888                                   &CheckedPairs,
6889                                   &ConsecutiveChain](int K, int Idx) {
6890     if (IterCnt >= MaxIter)
6891       return true;
6892     if (CheckedPairs[Idx].test(K))
6893       return ConsecutiveChain[K].second == 1 &&
6894              ConsecutiveChain[K].first == Idx;
6895     ++IterCnt;
6896     CheckedPairs[Idx].set(K);
6897     CheckedPairs[K].set(Idx);
6898     Optional<int> Diff = getPointersDiff(
6899         Stores[K]->getValueOperand()->getType(), Stores[K]->getPointerOperand(),
6900         Stores[Idx]->getValueOperand()->getType(),
6901         Stores[Idx]->getPointerOperand(), *DL, *SE, /*StrictCheck=*/true);
6902     if (!Diff || *Diff == 0)
6903       return false;
6904     int Val = *Diff;
6905     if (Val < 0) {
6906       if (ConsecutiveChain[Idx].second > -Val) {
6907         Tails.set(K);
6908         ConsecutiveChain[Idx] = std::make_pair(K, -Val);
6909       }
6910       return false;
6911     }
6912     if (ConsecutiveChain[K].second <= Val)
6913       return false;
6914 
6915     Tails.set(Idx);
6916     ConsecutiveChain[K] = std::make_pair(Idx, Val);
6917     return Val == 1;
6918   };
6919   // Do a quadratic search on all of the given stores in reverse order and find
6920   // all of the pairs of stores that follow each other.
6921   for (int Idx = E - 1; Idx >= 0; --Idx) {
6922     // If a store has multiple consecutive store candidates, search according
6923     // to the sequence: Idx-1, Idx+1, Idx-2, Idx+2, ...
6924     // This is because usually pairing with immediate succeeding or preceding
6925     // candidate create the best chance to find slp vectorization opportunity.
6926     const int MaxLookDepth = std::max(E - Idx, Idx + 1);
6927     IterCnt = 0;
6928     for (int Offset = 1, F = MaxLookDepth; Offset < F; ++Offset)
6929       if ((Idx >= Offset && FindConsecutiveAccess(Idx - Offset, Idx)) ||
6930           (Idx + Offset < E && FindConsecutiveAccess(Idx + Offset, Idx)))
6931         break;
6932   }
6933 
6934   // Tracks if we tried to vectorize stores starting from the given tail
6935   // already.
6936   SmallBitVector TriedTails(E, false);
6937   // For stores that start but don't end a link in the chain:
6938   for (int Cnt = E; Cnt > 0; --Cnt) {
6939     int I = Cnt - 1;
6940     if (ConsecutiveChain[I].first == E || Tails.test(I))
6941       continue;
6942     // We found a store instr that starts a chain. Now follow the chain and try
6943     // to vectorize it.
6944     BoUpSLP::ValueList Operands;
6945     // Collect the chain into a list.
6946     while (I != E && !VectorizedStores.count(Stores[I])) {
6947       Operands.push_back(Stores[I]);
6948       Tails.set(I);
6949       if (ConsecutiveChain[I].second != 1) {
6950         // Mark the new end in the chain and go back, if required. It might be
6951         // required if the original stores come in reversed order, for example.
6952         if (ConsecutiveChain[I].first != E &&
6953             Tails.test(ConsecutiveChain[I].first) && !TriedTails.test(I) &&
6954             !VectorizedStores.count(Stores[ConsecutiveChain[I].first])) {
6955           TriedTails.set(I);
6956           Tails.reset(ConsecutiveChain[I].first);
6957           if (Cnt < ConsecutiveChain[I].first + 2)
6958             Cnt = ConsecutiveChain[I].first + 2;
6959         }
6960         break;
6961       }
6962       // Move to the next value in the chain.
6963       I = ConsecutiveChain[I].first;
6964     }
6965     assert(!Operands.empty() && "Expected non-empty list of stores.");
6966 
6967     unsigned MaxVecRegSize = R.getMaxVecRegSize();
6968     unsigned EltSize = R.getVectorElementSize(Operands[0]);
6969     unsigned MaxElts = llvm::PowerOf2Floor(MaxVecRegSize / EltSize);
6970 
6971     unsigned MinVF = std::max(2U, R.getMinVecRegSize() / EltSize);
6972     unsigned MaxVF = std::min(R.getMaximumVF(EltSize, Instruction::Store),
6973                               MaxElts);
6974 
6975     // FIXME: Is division-by-2 the correct step? Should we assert that the
6976     // register size is a power-of-2?
6977     unsigned StartIdx = 0;
6978     for (unsigned Size = MaxVF; Size >= MinVF; Size /= 2) {
6979       for (unsigned Cnt = StartIdx, E = Operands.size(); Cnt + Size <= E;) {
6980         ArrayRef<Value *> Slice = makeArrayRef(Operands).slice(Cnt, Size);
6981         if (!VectorizedStores.count(Slice.front()) &&
6982             !VectorizedStores.count(Slice.back()) &&
6983             vectorizeStoreChain(Slice, R, Cnt)) {
6984           // Mark the vectorized stores so that we don't vectorize them again.
6985           VectorizedStores.insert(Slice.begin(), Slice.end());
6986           Changed = true;
6987           // If we vectorized initial block, no need to try to vectorize it
6988           // again.
6989           if (Cnt == StartIdx)
6990             StartIdx += Size;
6991           Cnt += Size;
6992           continue;
6993         }
6994         ++Cnt;
6995       }
6996       // Check if the whole array was vectorized already - exit.
6997       if (StartIdx >= Operands.size())
6998         break;
6999     }
7000   }
7001 
7002   return Changed;
7003 }
7004 
7005 void SLPVectorizerPass::collectSeedInstructions(BasicBlock *BB) {
7006   // Initialize the collections. We will make a single pass over the block.
7007   Stores.clear();
7008   GEPs.clear();
7009 
7010   // Visit the store and getelementptr instructions in BB and organize them in
7011   // Stores and GEPs according to the underlying objects of their pointer
7012   // operands.
7013   for (Instruction &I : *BB) {
7014     // Ignore store instructions that are volatile or have a pointer operand
7015     // that doesn't point to a scalar type.
7016     if (auto *SI = dyn_cast<StoreInst>(&I)) {
7017       if (!SI->isSimple())
7018         continue;
7019       if (!isValidElementType(SI->getValueOperand()->getType()))
7020         continue;
7021       Stores[getUnderlyingObject(SI->getPointerOperand())].push_back(SI);
7022     }
7023 
7024     // Ignore getelementptr instructions that have more than one index, a
7025     // constant index, or a pointer operand that doesn't point to a scalar
7026     // type.
7027     else if (auto *GEP = dyn_cast<GetElementPtrInst>(&I)) {
7028       auto Idx = GEP->idx_begin()->get();
7029       if (GEP->getNumIndices() > 1 || isa<Constant>(Idx))
7030         continue;
7031       if (!isValidElementType(Idx->getType()))
7032         continue;
7033       if (GEP->getType()->isVectorTy())
7034         continue;
7035       GEPs[GEP->getPointerOperand()].push_back(GEP);
7036     }
7037   }
7038 }
7039 
7040 bool SLPVectorizerPass::tryToVectorizePair(Value *A, Value *B, BoUpSLP &R) {
7041   if (!A || !B)
7042     return false;
7043   Value *VL[] = {A, B};
7044   return tryToVectorizeList(VL, R, /*AllowReorder=*/true);
7045 }
7046 
7047 bool SLPVectorizerPass::tryToVectorizeList(ArrayRef<Value *> VL, BoUpSLP &R,
7048                                            bool AllowReorder) {
7049   if (VL.size() < 2)
7050     return false;
7051 
7052   LLVM_DEBUG(dbgs() << "SLP: Trying to vectorize a list of length = "
7053                     << VL.size() << ".\n");
7054 
7055   // Check that all of the parts are instructions of the same type,
7056   // we permit an alternate opcode via InstructionsState.
7057   InstructionsState S = getSameOpcode(VL);
7058   if (!S.getOpcode())
7059     return false;
7060 
7061   Instruction *I0 = cast<Instruction>(S.OpValue);
7062   // Make sure invalid types (including vector type) are rejected before
7063   // determining vectorization factor for scalar instructions.
7064   for (Value *V : VL) {
7065     Type *Ty = V->getType();
7066     if (!isa<InsertElementInst>(V) && !isValidElementType(Ty)) {
7067       // NOTE: the following will give user internal llvm type name, which may
7068       // not be useful.
7069       R.getORE()->emit([&]() {
7070         std::string type_str;
7071         llvm::raw_string_ostream rso(type_str);
7072         Ty->print(rso);
7073         return OptimizationRemarkMissed(SV_NAME, "UnsupportedType", I0)
7074                << "Cannot SLP vectorize list: type "
7075                << rso.str() + " is unsupported by vectorizer";
7076       });
7077       return false;
7078     }
7079   }
7080 
7081   unsigned Sz = R.getVectorElementSize(I0);
7082   unsigned MinVF = std::max(2U, R.getMinVecRegSize() / Sz);
7083   unsigned MaxVF = std::max<unsigned>(PowerOf2Floor(VL.size()), MinVF);
7084   MaxVF = std::min(R.getMaximumVF(Sz, S.getOpcode()), MaxVF);
7085   if (MaxVF < 2) {
7086     R.getORE()->emit([&]() {
7087       return OptimizationRemarkMissed(SV_NAME, "SmallVF", I0)
7088              << "Cannot SLP vectorize list: vectorization factor "
7089              << "less than 2 is not supported";
7090     });
7091     return false;
7092   }
7093 
7094   bool Changed = false;
7095   bool CandidateFound = false;
7096   InstructionCost MinCost = SLPCostThreshold.getValue();
7097   Type *ScalarTy = VL[0]->getType();
7098   if (auto *IE = dyn_cast<InsertElementInst>(VL[0]))
7099     ScalarTy = IE->getOperand(1)->getType();
7100 
7101   unsigned NextInst = 0, MaxInst = VL.size();
7102   for (unsigned VF = MaxVF; NextInst + 1 < MaxInst && VF >= MinVF; VF /= 2) {
7103     // No actual vectorization should happen, if number of parts is the same as
7104     // provided vectorization factor (i.e. the scalar type is used for vector
7105     // code during codegen).
7106     auto *VecTy = FixedVectorType::get(ScalarTy, VF);
7107     if (TTI->getNumberOfParts(VecTy) == VF)
7108       continue;
7109     for (unsigned I = NextInst; I < MaxInst; ++I) {
7110       unsigned OpsWidth = 0;
7111 
7112       if (I + VF > MaxInst)
7113         OpsWidth = MaxInst - I;
7114       else
7115         OpsWidth = VF;
7116 
7117       if (!isPowerOf2_32(OpsWidth))
7118         continue;
7119 
7120       if ((VF > MinVF && OpsWidth <= VF / 2) || (VF == MinVF && OpsWidth < 2))
7121         break;
7122 
7123       ArrayRef<Value *> Ops = VL.slice(I, OpsWidth);
7124       // Check that a previous iteration of this loop did not delete the Value.
7125       if (llvm::any_of(Ops, [&R](Value *V) {
7126             auto *I = dyn_cast<Instruction>(V);
7127             return I && R.isDeleted(I);
7128           }))
7129         continue;
7130 
7131       LLVM_DEBUG(dbgs() << "SLP: Analyzing " << OpsWidth << " operations "
7132                         << "\n");
7133 
7134       R.buildTree(Ops);
7135       if (AllowReorder) {
7136         Optional<ArrayRef<unsigned>> Order = R.bestOrder();
7137         if (Order) {
7138           // TODO: reorder tree nodes without tree rebuilding.
7139           SmallVector<Value *, 4> ReorderedOps(Ops.size());
7140           transform(fixupOrderingIndices(*Order), ReorderedOps.begin(),
7141                     [Ops](const unsigned Idx) { return Ops[Idx]; });
7142           R.buildTree(ReorderedOps);
7143         }
7144       }
7145       if (R.isTreeTinyAndNotFullyVectorizable())
7146         continue;
7147 
7148       R.computeMinimumValueSizes();
7149       InstructionCost Cost = R.getTreeCost();
7150       CandidateFound = true;
7151       MinCost = std::min(MinCost, Cost);
7152 
7153       if (Cost < -SLPCostThreshold) {
7154         LLVM_DEBUG(dbgs() << "SLP: Vectorizing list at cost:" << Cost << ".\n");
7155         R.getORE()->emit(OptimizationRemark(SV_NAME, "VectorizedList",
7156                                                     cast<Instruction>(Ops[0]))
7157                                  << "SLP vectorized with cost " << ore::NV("Cost", Cost)
7158                                  << " and with tree size "
7159                                  << ore::NV("TreeSize", R.getTreeSize()));
7160 
7161         R.vectorizeTree();
7162         // Move to the next bundle.
7163         I += VF - 1;
7164         NextInst = I + 1;
7165         Changed = true;
7166       }
7167     }
7168   }
7169 
7170   if (!Changed && CandidateFound) {
7171     R.getORE()->emit([&]() {
7172       return OptimizationRemarkMissed(SV_NAME, "NotBeneficial", I0)
7173              << "List vectorization was possible but not beneficial with cost "
7174              << ore::NV("Cost", MinCost) << " >= "
7175              << ore::NV("Treshold", -SLPCostThreshold);
7176     });
7177   } else if (!Changed) {
7178     R.getORE()->emit([&]() {
7179       return OptimizationRemarkMissed(SV_NAME, "NotPossible", I0)
7180              << "Cannot SLP vectorize list: vectorization was impossible"
7181              << " with available vectorization factors";
7182     });
7183   }
7184   return Changed;
7185 }
7186 
7187 bool SLPVectorizerPass::tryToVectorize(Instruction *I, BoUpSLP &R) {
7188   if (!I)
7189     return false;
7190 
7191   if (!isa<BinaryOperator>(I) && !isa<CmpInst>(I))
7192     return false;
7193 
7194   Value *P = I->getParent();
7195 
7196   // Vectorize in current basic block only.
7197   auto *Op0 = dyn_cast<Instruction>(I->getOperand(0));
7198   auto *Op1 = dyn_cast<Instruction>(I->getOperand(1));
7199   if (!Op0 || !Op1 || Op0->getParent() != P || Op1->getParent() != P)
7200     return false;
7201 
7202   // Try to vectorize V.
7203   if (tryToVectorizePair(Op0, Op1, R))
7204     return true;
7205 
7206   auto *A = dyn_cast<BinaryOperator>(Op0);
7207   auto *B = dyn_cast<BinaryOperator>(Op1);
7208   // Try to skip B.
7209   if (B && B->hasOneUse()) {
7210     auto *B0 = dyn_cast<BinaryOperator>(B->getOperand(0));
7211     auto *B1 = dyn_cast<BinaryOperator>(B->getOperand(1));
7212     if (B0 && B0->getParent() == P && tryToVectorizePair(A, B0, R))
7213       return true;
7214     if (B1 && B1->getParent() == P && tryToVectorizePair(A, B1, R))
7215       return true;
7216   }
7217 
7218   // Try to skip A.
7219   if (A && A->hasOneUse()) {
7220     auto *A0 = dyn_cast<BinaryOperator>(A->getOperand(0));
7221     auto *A1 = dyn_cast<BinaryOperator>(A->getOperand(1));
7222     if (A0 && A0->getParent() == P && tryToVectorizePair(A0, B, R))
7223       return true;
7224     if (A1 && A1->getParent() == P && tryToVectorizePair(A1, B, R))
7225       return true;
7226   }
7227   return false;
7228 }
7229 
7230 namespace {
7231 
7232 /// Model horizontal reductions.
7233 ///
7234 /// A horizontal reduction is a tree of reduction instructions that has values
7235 /// that can be put into a vector as its leaves. For example:
7236 ///
7237 /// mul mul mul mul
7238 ///  \  /    \  /
7239 ///   +       +
7240 ///    \     /
7241 ///       +
7242 /// This tree has "mul" as its leaf values and "+" as its reduction
7243 /// instructions. A reduction can feed into a store or a binary operation
7244 /// feeding a phi.
7245 ///    ...
7246 ///    \  /
7247 ///     +
7248 ///     |
7249 ///  phi +=
7250 ///
7251 ///  Or:
7252 ///    ...
7253 ///    \  /
7254 ///     +
7255 ///     |
7256 ///   *p =
7257 ///
7258 class HorizontalReduction {
7259   using ReductionOpsType = SmallVector<Value *, 16>;
7260   using ReductionOpsListType = SmallVector<ReductionOpsType, 2>;
7261   ReductionOpsListType ReductionOps;
7262   SmallVector<Value *, 32> ReducedVals;
7263   // Use map vector to make stable output.
7264   MapVector<Instruction *, Value *> ExtraArgs;
7265   WeakTrackingVH ReductionRoot;
7266   /// The type of reduction operation.
7267   RecurKind RdxKind;
7268 
7269   /// Checks if instruction is associative and can be vectorized.
7270   static bool isVectorizable(RecurKind Kind, Instruction *I) {
7271     if (Kind == RecurKind::None)
7272       return false;
7273     if (RecurrenceDescriptor::isIntMinMaxRecurrenceKind(Kind))
7274       return true;
7275 
7276     if (Kind == RecurKind::FMax || Kind == RecurKind::FMin) {
7277       // FP min/max are associative except for NaN and -0.0. We do not
7278       // have to rule out -0.0 here because the intrinsic semantics do not
7279       // specify a fixed result for it.
7280       return I->getFastMathFlags().noNaNs();
7281     }
7282 
7283     return I->isAssociative();
7284   }
7285 
7286   /// Checks if the ParentStackElem.first should be marked as a reduction
7287   /// operation with an extra argument or as extra argument itself.
7288   void markExtraArg(std::pair<Instruction *, unsigned> &ParentStackElem,
7289                     Value *ExtraArg) {
7290     if (ExtraArgs.count(ParentStackElem.first)) {
7291       ExtraArgs[ParentStackElem.first] = nullptr;
7292       // We ran into something like:
7293       // ParentStackElem.first = ExtraArgs[ParentStackElem.first] + ExtraArg.
7294       // The whole ParentStackElem.first should be considered as an extra value
7295       // in this case.
7296       // Do not perform analysis of remaining operands of ParentStackElem.first
7297       // instruction, this whole instruction is an extra argument.
7298       ParentStackElem.second = getNumberOfOperands(ParentStackElem.first);
7299     } else {
7300       // We ran into something like:
7301       // ParentStackElem.first += ... + ExtraArg + ...
7302       ExtraArgs[ParentStackElem.first] = ExtraArg;
7303     }
7304   }
7305 
7306   /// Creates reduction operation with the current opcode.
7307   static Value *createOp(IRBuilder<> &Builder, RecurKind Kind, Value *LHS,
7308                          Value *RHS, const Twine &Name, bool UseSelect) {
7309     unsigned RdxOpcode = RecurrenceDescriptor::getOpcode(Kind);
7310     switch (Kind) {
7311     case RecurKind::Add:
7312     case RecurKind::Mul:
7313     case RecurKind::Or:
7314     case RecurKind::And:
7315     case RecurKind::Xor:
7316     case RecurKind::FAdd:
7317     case RecurKind::FMul:
7318       return Builder.CreateBinOp((Instruction::BinaryOps)RdxOpcode, LHS, RHS,
7319                                  Name);
7320     case RecurKind::FMax:
7321       return Builder.CreateBinaryIntrinsic(Intrinsic::maxnum, LHS, RHS);
7322     case RecurKind::FMin:
7323       return Builder.CreateBinaryIntrinsic(Intrinsic::minnum, LHS, RHS);
7324     case RecurKind::SMax:
7325       if (UseSelect) {
7326         Value *Cmp = Builder.CreateICmpSGT(LHS, RHS, Name);
7327         return Builder.CreateSelect(Cmp, LHS, RHS, Name);
7328       }
7329       return Builder.CreateBinaryIntrinsic(Intrinsic::smax, LHS, RHS);
7330     case RecurKind::SMin:
7331       if (UseSelect) {
7332         Value *Cmp = Builder.CreateICmpSLT(LHS, RHS, Name);
7333         return Builder.CreateSelect(Cmp, LHS, RHS, Name);
7334       }
7335       return Builder.CreateBinaryIntrinsic(Intrinsic::smin, LHS, RHS);
7336     case RecurKind::UMax:
7337       if (UseSelect) {
7338         Value *Cmp = Builder.CreateICmpUGT(LHS, RHS, Name);
7339         return Builder.CreateSelect(Cmp, LHS, RHS, Name);
7340       }
7341       return Builder.CreateBinaryIntrinsic(Intrinsic::umax, LHS, RHS);
7342     case RecurKind::UMin:
7343       if (UseSelect) {
7344         Value *Cmp = Builder.CreateICmpULT(LHS, RHS, Name);
7345         return Builder.CreateSelect(Cmp, LHS, RHS, Name);
7346       }
7347       return Builder.CreateBinaryIntrinsic(Intrinsic::umin, LHS, RHS);
7348     default:
7349       llvm_unreachable("Unknown reduction operation.");
7350     }
7351   }
7352 
7353   /// Creates reduction operation with the current opcode with the IR flags
7354   /// from \p ReductionOps.
7355   static Value *createOp(IRBuilder<> &Builder, RecurKind RdxKind, Value *LHS,
7356                          Value *RHS, const Twine &Name,
7357                          const ReductionOpsListType &ReductionOps) {
7358     bool UseSelect = ReductionOps.size() == 2;
7359     assert((!UseSelect || isa<SelectInst>(ReductionOps[1][0])) &&
7360            "Expected cmp + select pairs for reduction");
7361     Value *Op = createOp(Builder, RdxKind, LHS, RHS, Name, UseSelect);
7362     if (RecurrenceDescriptor::isIntMinMaxRecurrenceKind(RdxKind)) {
7363       if (auto *Sel = dyn_cast<SelectInst>(Op)) {
7364         propagateIRFlags(Sel->getCondition(), ReductionOps[0]);
7365         propagateIRFlags(Op, ReductionOps[1]);
7366         return Op;
7367       }
7368     }
7369     propagateIRFlags(Op, ReductionOps[0]);
7370     return Op;
7371   }
7372 
7373   /// Creates reduction operation with the current opcode with the IR flags
7374   /// from \p I.
7375   static Value *createOp(IRBuilder<> &Builder, RecurKind RdxKind, Value *LHS,
7376                          Value *RHS, const Twine &Name, Instruction *I) {
7377     auto *SelI = dyn_cast<SelectInst>(I);
7378     Value *Op = createOp(Builder, RdxKind, LHS, RHS, Name, SelI != nullptr);
7379     if (SelI && RecurrenceDescriptor::isIntMinMaxRecurrenceKind(RdxKind)) {
7380       if (auto *Sel = dyn_cast<SelectInst>(Op))
7381         propagateIRFlags(Sel->getCondition(), SelI->getCondition());
7382     }
7383     propagateIRFlags(Op, I);
7384     return Op;
7385   }
7386 
7387   static RecurKind getRdxKind(Instruction *I) {
7388     assert(I && "Expected instruction for reduction matching");
7389     TargetTransformInfo::ReductionFlags RdxFlags;
7390     if (match(I, m_Add(m_Value(), m_Value())))
7391       return RecurKind::Add;
7392     if (match(I, m_Mul(m_Value(), m_Value())))
7393       return RecurKind::Mul;
7394     if (match(I, m_And(m_Value(), m_Value())))
7395       return RecurKind::And;
7396     if (match(I, m_Or(m_Value(), m_Value())))
7397       return RecurKind::Or;
7398     if (match(I, m_Xor(m_Value(), m_Value())))
7399       return RecurKind::Xor;
7400     if (match(I, m_FAdd(m_Value(), m_Value())))
7401       return RecurKind::FAdd;
7402     if (match(I, m_FMul(m_Value(), m_Value())))
7403       return RecurKind::FMul;
7404 
7405     if (match(I, m_Intrinsic<Intrinsic::maxnum>(m_Value(), m_Value())))
7406       return RecurKind::FMax;
7407     if (match(I, m_Intrinsic<Intrinsic::minnum>(m_Value(), m_Value())))
7408       return RecurKind::FMin;
7409 
7410     // This matches either cmp+select or intrinsics. SLP is expected to handle
7411     // either form.
7412     // TODO: If we are canonicalizing to intrinsics, we can remove several
7413     //       special-case paths that deal with selects.
7414     if (match(I, m_SMax(m_Value(), m_Value())))
7415       return RecurKind::SMax;
7416     if (match(I, m_SMin(m_Value(), m_Value())))
7417       return RecurKind::SMin;
7418     if (match(I, m_UMax(m_Value(), m_Value())))
7419       return RecurKind::UMax;
7420     if (match(I, m_UMin(m_Value(), m_Value())))
7421       return RecurKind::UMin;
7422 
7423     if (auto *Select = dyn_cast<SelectInst>(I)) {
7424       // Try harder: look for min/max pattern based on instructions producing
7425       // same values such as: select ((cmp Inst1, Inst2), Inst1, Inst2).
7426       // During the intermediate stages of SLP, it's very common to have
7427       // pattern like this (since optimizeGatherSequence is run only once
7428       // at the end):
7429       // %1 = extractelement <2 x i32> %a, i32 0
7430       // %2 = extractelement <2 x i32> %a, i32 1
7431       // %cond = icmp sgt i32 %1, %2
7432       // %3 = extractelement <2 x i32> %a, i32 0
7433       // %4 = extractelement <2 x i32> %a, i32 1
7434       // %select = select i1 %cond, i32 %3, i32 %4
7435       CmpInst::Predicate Pred;
7436       Instruction *L1;
7437       Instruction *L2;
7438 
7439       Value *LHS = Select->getTrueValue();
7440       Value *RHS = Select->getFalseValue();
7441       Value *Cond = Select->getCondition();
7442 
7443       // TODO: Support inverse predicates.
7444       if (match(Cond, m_Cmp(Pred, m_Specific(LHS), m_Instruction(L2)))) {
7445         if (!isa<ExtractElementInst>(RHS) ||
7446             !L2->isIdenticalTo(cast<Instruction>(RHS)))
7447           return RecurKind::None;
7448       } else if (match(Cond, m_Cmp(Pred, m_Instruction(L1), m_Specific(RHS)))) {
7449         if (!isa<ExtractElementInst>(LHS) ||
7450             !L1->isIdenticalTo(cast<Instruction>(LHS)))
7451           return RecurKind::None;
7452       } else {
7453         if (!isa<ExtractElementInst>(LHS) || !isa<ExtractElementInst>(RHS))
7454           return RecurKind::None;
7455         if (!match(Cond, m_Cmp(Pred, m_Instruction(L1), m_Instruction(L2))) ||
7456             !L1->isIdenticalTo(cast<Instruction>(LHS)) ||
7457             !L2->isIdenticalTo(cast<Instruction>(RHS)))
7458           return RecurKind::None;
7459       }
7460 
7461       TargetTransformInfo::ReductionFlags RdxFlags;
7462       switch (Pred) {
7463       default:
7464         return RecurKind::None;
7465       case CmpInst::ICMP_SGT:
7466       case CmpInst::ICMP_SGE:
7467         return RecurKind::SMax;
7468       case CmpInst::ICMP_SLT:
7469       case CmpInst::ICMP_SLE:
7470         return RecurKind::SMin;
7471       case CmpInst::ICMP_UGT:
7472       case CmpInst::ICMP_UGE:
7473         return RecurKind::UMax;
7474       case CmpInst::ICMP_ULT:
7475       case CmpInst::ICMP_ULE:
7476         return RecurKind::UMin;
7477       }
7478     }
7479     return RecurKind::None;
7480   }
7481 
7482   /// Get the index of the first operand.
7483   static unsigned getFirstOperandIndex(Instruction *I) {
7484     return isa<SelectInst>(I) ? 1 : 0;
7485   }
7486 
7487   /// Total number of operands in the reduction operation.
7488   static unsigned getNumberOfOperands(Instruction *I) {
7489     return isa<SelectInst>(I) ? 3 : 2;
7490   }
7491 
7492   /// Checks if the instruction is in basic block \p BB.
7493   /// For a min/max reduction check that both compare and select are in \p BB.
7494   static bool hasSameParent(Instruction *I, BasicBlock *BB, bool IsRedOp) {
7495     auto *Sel = dyn_cast<SelectInst>(I);
7496     if (IsRedOp && Sel) {
7497       auto *Cmp = cast<Instruction>(Sel->getCondition());
7498       return Sel->getParent() == BB && Cmp->getParent() == BB;
7499     }
7500     return I->getParent() == BB;
7501   }
7502 
7503   /// Expected number of uses for reduction operations/reduced values.
7504   static bool hasRequiredNumberOfUses(bool MatchCmpSel, Instruction *I) {
7505     // SelectInst must be used twice while the condition op must have single
7506     // use only.
7507     if (MatchCmpSel) {
7508       if (auto *Sel = dyn_cast<SelectInst>(I))
7509         return Sel->hasNUses(2) && Sel->getCondition()->hasOneUse();
7510       return I->hasNUses(2);
7511     }
7512 
7513     // Arithmetic reduction operation must be used once only.
7514     return I->hasOneUse();
7515   }
7516 
7517   /// Initializes the list of reduction operations.
7518   void initReductionOps(Instruction *I) {
7519     if (isa<SelectInst>(I))
7520       ReductionOps.assign(2, ReductionOpsType());
7521     else
7522       ReductionOps.assign(1, ReductionOpsType());
7523   }
7524 
7525   /// Add all reduction operations for the reduction instruction \p I.
7526   void addReductionOps(Instruction *I) {
7527     if (auto *Sel = dyn_cast<SelectInst>(I)) {
7528       ReductionOps[0].emplace_back(Sel->getCondition());
7529       ReductionOps[1].emplace_back(Sel);
7530     } else {
7531       ReductionOps[0].emplace_back(I);
7532     }
7533   }
7534 
7535   static Value *getLHS(RecurKind Kind, Instruction *I) {
7536     if (Kind == RecurKind::None)
7537       return nullptr;
7538     return I->getOperand(getFirstOperandIndex(I));
7539   }
7540   static Value *getRHS(RecurKind Kind, Instruction *I) {
7541     if (Kind == RecurKind::None)
7542       return nullptr;
7543     return I->getOperand(getFirstOperandIndex(I) + 1);
7544   }
7545 
7546 public:
7547   HorizontalReduction() = default;
7548 
7549   /// Try to find a reduction tree.
7550   bool matchAssociativeReduction(PHINode *Phi, Instruction *B) {
7551     assert((!Phi || is_contained(Phi->operands(), B)) &&
7552            "Phi needs to use the binary operator");
7553 
7554     RdxKind = getRdxKind(B);
7555 
7556     // We could have a initial reductions that is not an add.
7557     //  r *= v1 + v2 + v3 + v4
7558     // In such a case start looking for a tree rooted in the first '+'.
7559     if (Phi) {
7560       if (getLHS(RdxKind, B) == Phi) {
7561         Phi = nullptr;
7562         B = dyn_cast<Instruction>(getRHS(RdxKind, B));
7563         if (!B)
7564           return false;
7565         RdxKind = getRdxKind(B);
7566       } else if (getRHS(RdxKind, B) == Phi) {
7567         Phi = nullptr;
7568         B = dyn_cast<Instruction>(getLHS(RdxKind, B));
7569         if (!B)
7570           return false;
7571         RdxKind = getRdxKind(B);
7572       }
7573     }
7574 
7575     if (!isVectorizable(RdxKind, B))
7576       return false;
7577 
7578     // Analyze "regular" integer/FP types for reductions - no target-specific
7579     // types or pointers.
7580     Type *Ty = B->getType();
7581     if (!isValidElementType(Ty) || Ty->isPointerTy())
7582       return false;
7583 
7584     // Though the ultimate reduction may have multiple uses, its condition must
7585     // have only single use.
7586     if (auto *SI = dyn_cast<SelectInst>(B))
7587       if (!SI->getCondition()->hasOneUse())
7588         return false;
7589 
7590     ReductionRoot = B;
7591 
7592     // The opcode for leaf values that we perform a reduction on.
7593     // For example: load(x) + load(y) + load(z) + fptoui(w)
7594     // The leaf opcode for 'w' does not match, so we don't include it as a
7595     // potential candidate for the reduction.
7596     unsigned LeafOpcode = 0;
7597 
7598     // Post order traverse the reduction tree starting at B. We only handle true
7599     // trees containing only binary operators.
7600     SmallVector<std::pair<Instruction *, unsigned>, 32> Stack;
7601     Stack.push_back(std::make_pair(B, getFirstOperandIndex(B)));
7602     initReductionOps(B);
7603     while (!Stack.empty()) {
7604       Instruction *TreeN = Stack.back().first;
7605       unsigned EdgeToVisit = Stack.back().second++;
7606       const RecurKind TreeRdxKind = getRdxKind(TreeN);
7607       bool IsReducedValue = TreeRdxKind != RdxKind;
7608 
7609       // Postorder visit.
7610       if (IsReducedValue || EdgeToVisit == getNumberOfOperands(TreeN)) {
7611         if (IsReducedValue)
7612           ReducedVals.push_back(TreeN);
7613         else {
7614           auto ExtraArgsIter = ExtraArgs.find(TreeN);
7615           if (ExtraArgsIter != ExtraArgs.end() && !ExtraArgsIter->second) {
7616             // Check if TreeN is an extra argument of its parent operation.
7617             if (Stack.size() <= 1) {
7618               // TreeN can't be an extra argument as it is a root reduction
7619               // operation.
7620               return false;
7621             }
7622             // Yes, TreeN is an extra argument, do not add it to a list of
7623             // reduction operations.
7624             // Stack[Stack.size() - 2] always points to the parent operation.
7625             markExtraArg(Stack[Stack.size() - 2], TreeN);
7626             ExtraArgs.erase(TreeN);
7627           } else
7628             addReductionOps(TreeN);
7629         }
7630         // Retract.
7631         Stack.pop_back();
7632         continue;
7633       }
7634 
7635       // Visit left or right.
7636       Value *EdgeVal = TreeN->getOperand(EdgeToVisit);
7637       auto *EdgeInst = dyn_cast<Instruction>(EdgeVal);
7638       if (!EdgeInst) {
7639         // Edge value is not a reduction instruction or a leaf instruction.
7640         // (It may be a constant, function argument, or something else.)
7641         markExtraArg(Stack.back(), EdgeVal);
7642         continue;
7643       }
7644       RecurKind EdgeRdxKind = getRdxKind(EdgeInst);
7645       // Continue analysis if the next operand is a reduction operation or
7646       // (possibly) a leaf value. If the leaf value opcode is not set,
7647       // the first met operation != reduction operation is considered as the
7648       // leaf opcode.
7649       // Only handle trees in the current basic block.
7650       // Each tree node needs to have minimal number of users except for the
7651       // ultimate reduction.
7652       const bool IsRdxInst = EdgeRdxKind == RdxKind;
7653       if (EdgeInst != Phi && EdgeInst != B &&
7654           hasSameParent(EdgeInst, B->getParent(), IsRdxInst) &&
7655           hasRequiredNumberOfUses(isa<SelectInst>(B), EdgeInst) &&
7656           (!LeafOpcode || LeafOpcode == EdgeInst->getOpcode() || IsRdxInst)) {
7657         if (IsRdxInst) {
7658           // We need to be able to reassociate the reduction operations.
7659           if (!isVectorizable(EdgeRdxKind, EdgeInst)) {
7660             // I is an extra argument for TreeN (its parent operation).
7661             markExtraArg(Stack.back(), EdgeInst);
7662             continue;
7663           }
7664         } else if (!LeafOpcode) {
7665           LeafOpcode = EdgeInst->getOpcode();
7666         }
7667         Stack.push_back(
7668             std::make_pair(EdgeInst, getFirstOperandIndex(EdgeInst)));
7669         continue;
7670       }
7671       // I is an extra argument for TreeN (its parent operation).
7672       markExtraArg(Stack.back(), EdgeInst);
7673     }
7674     return true;
7675   }
7676 
7677   /// Attempt to vectorize the tree found by matchAssociativeReduction.
7678   bool tryToReduce(BoUpSLP &V, TargetTransformInfo *TTI) {
7679     // If there are a sufficient number of reduction values, reduce
7680     // to a nearby power-of-2. We can safely generate oversized
7681     // vectors and rely on the backend to split them to legal sizes.
7682     unsigned NumReducedVals = ReducedVals.size();
7683     if (NumReducedVals < 4)
7684       return false;
7685 
7686     // Intersect the fast-math-flags from all reduction operations.
7687     FastMathFlags RdxFMF;
7688     RdxFMF.set();
7689     for (ReductionOpsType &RdxOp : ReductionOps) {
7690       for (Value *RdxVal : RdxOp) {
7691         if (auto *FPMO = dyn_cast<FPMathOperator>(RdxVal))
7692           RdxFMF &= FPMO->getFastMathFlags();
7693       }
7694     }
7695 
7696     IRBuilder<> Builder(cast<Instruction>(ReductionRoot));
7697     Builder.setFastMathFlags(RdxFMF);
7698 
7699     BoUpSLP::ExtraValueToDebugLocsMap ExternallyUsedValues;
7700     // The same extra argument may be used several times, so log each attempt
7701     // to use it.
7702     for (const std::pair<Instruction *, Value *> &Pair : ExtraArgs) {
7703       assert(Pair.first && "DebugLoc must be set.");
7704       ExternallyUsedValues[Pair.second].push_back(Pair.first);
7705     }
7706 
7707     // The compare instruction of a min/max is the insertion point for new
7708     // instructions and may be replaced with a new compare instruction.
7709     auto getCmpForMinMaxReduction = [](Instruction *RdxRootInst) {
7710       assert(isa<SelectInst>(RdxRootInst) &&
7711              "Expected min/max reduction to have select root instruction");
7712       Value *ScalarCond = cast<SelectInst>(RdxRootInst)->getCondition();
7713       assert(isa<Instruction>(ScalarCond) &&
7714              "Expected min/max reduction to have compare condition");
7715       return cast<Instruction>(ScalarCond);
7716     };
7717 
7718     // The reduction root is used as the insertion point for new instructions,
7719     // so set it as externally used to prevent it from being deleted.
7720     ExternallyUsedValues[ReductionRoot];
7721     SmallVector<Value *, 16> IgnoreList;
7722     for (ReductionOpsType &RdxOp : ReductionOps)
7723       IgnoreList.append(RdxOp.begin(), RdxOp.end());
7724 
7725     unsigned ReduxWidth = PowerOf2Floor(NumReducedVals);
7726     if (NumReducedVals > ReduxWidth) {
7727       // In the loop below, we are building a tree based on a window of
7728       // 'ReduxWidth' values.
7729       // If the operands of those values have common traits (compare predicate,
7730       // constant operand, etc), then we want to group those together to
7731       // minimize the cost of the reduction.
7732 
7733       // TODO: This should be extended to count common operands for
7734       //       compares and binops.
7735 
7736       // Step 1: Count the number of times each compare predicate occurs.
7737       SmallDenseMap<unsigned, unsigned> PredCountMap;
7738       for (Value *RdxVal : ReducedVals) {
7739         CmpInst::Predicate Pred;
7740         if (match(RdxVal, m_Cmp(Pred, m_Value(), m_Value())))
7741           ++PredCountMap[Pred];
7742       }
7743       // Step 2: Sort the values so the most common predicates come first.
7744       stable_sort(ReducedVals, [&PredCountMap](Value *A, Value *B) {
7745         CmpInst::Predicate PredA, PredB;
7746         if (match(A, m_Cmp(PredA, m_Value(), m_Value())) &&
7747             match(B, m_Cmp(PredB, m_Value(), m_Value()))) {
7748           return PredCountMap[PredA] > PredCountMap[PredB];
7749         }
7750         return false;
7751       });
7752     }
7753 
7754     Value *VectorizedTree = nullptr;
7755     unsigned i = 0;
7756     while (i < NumReducedVals - ReduxWidth + 1 && ReduxWidth > 2) {
7757       ArrayRef<Value *> VL(&ReducedVals[i], ReduxWidth);
7758       V.buildTree(VL, ExternallyUsedValues, IgnoreList);
7759       Optional<ArrayRef<unsigned>> Order = V.bestOrder();
7760       if (Order) {
7761         assert(Order->size() == VL.size() &&
7762                "Order size must be the same as number of vectorized "
7763                "instructions.");
7764         // TODO: reorder tree nodes without tree rebuilding.
7765         SmallVector<Value *, 4> ReorderedOps(VL.size());
7766         transform(fixupOrderingIndices(*Order), ReorderedOps.begin(),
7767                   [VL](const unsigned Idx) { return VL[Idx]; });
7768         V.buildTree(ReorderedOps, ExternallyUsedValues, IgnoreList);
7769       }
7770       if (V.isTreeTinyAndNotFullyVectorizable())
7771         break;
7772       if (V.isLoadCombineReductionCandidate(RdxKind))
7773         break;
7774 
7775       V.computeMinimumValueSizes();
7776 
7777       // Estimate cost.
7778       InstructionCost TreeCost =
7779           V.getTreeCost(makeArrayRef(&ReducedVals[i], ReduxWidth));
7780       InstructionCost ReductionCost =
7781           getReductionCost(TTI, ReducedVals[i], ReduxWidth);
7782       InstructionCost Cost = TreeCost + ReductionCost;
7783       if (!Cost.isValid()) {
7784         LLVM_DEBUG(dbgs() << "Encountered invalid baseline cost.\n");
7785         return false;
7786       }
7787       if (Cost >= -SLPCostThreshold) {
7788         V.getORE()->emit([&]() {
7789           return OptimizationRemarkMissed(SV_NAME, "HorSLPNotBeneficial",
7790                                           cast<Instruction>(VL[0]))
7791                  << "Vectorizing horizontal reduction is possible"
7792                  << "but not beneficial with cost " << ore::NV("Cost", Cost)
7793                  << " and threshold "
7794                  << ore::NV("Threshold", -SLPCostThreshold);
7795         });
7796         break;
7797       }
7798 
7799       LLVM_DEBUG(dbgs() << "SLP: Vectorizing horizontal reduction at cost:"
7800                         << Cost << ". (HorRdx)\n");
7801       V.getORE()->emit([&]() {
7802         return OptimizationRemark(SV_NAME, "VectorizedHorizontalReduction",
7803                                   cast<Instruction>(VL[0]))
7804                << "Vectorized horizontal reduction with cost "
7805                << ore::NV("Cost", Cost) << " and with tree size "
7806                << ore::NV("TreeSize", V.getTreeSize());
7807       });
7808 
7809       // Vectorize a tree.
7810       DebugLoc Loc = cast<Instruction>(ReducedVals[i])->getDebugLoc();
7811       Value *VectorizedRoot = V.vectorizeTree(ExternallyUsedValues);
7812 
7813       // Emit a reduction. If the root is a select (min/max idiom), the insert
7814       // point is the compare condition of that select.
7815       Instruction *RdxRootInst = cast<Instruction>(ReductionRoot);
7816       if (isa<SelectInst>(RdxRootInst))
7817         Builder.SetInsertPoint(getCmpForMinMaxReduction(RdxRootInst));
7818       else
7819         Builder.SetInsertPoint(RdxRootInst);
7820 
7821       Value *ReducedSubTree =
7822           emitReduction(VectorizedRoot, Builder, ReduxWidth, TTI);
7823 
7824       if (!VectorizedTree) {
7825         // Initialize the final value in the reduction.
7826         VectorizedTree = ReducedSubTree;
7827       } else {
7828         // Update the final value in the reduction.
7829         Builder.SetCurrentDebugLocation(Loc);
7830         VectorizedTree = createOp(Builder, RdxKind, VectorizedTree,
7831                                   ReducedSubTree, "op.rdx", ReductionOps);
7832       }
7833       i += ReduxWidth;
7834       ReduxWidth = PowerOf2Floor(NumReducedVals - i);
7835     }
7836 
7837     if (VectorizedTree) {
7838       // Finish the reduction.
7839       for (; i < NumReducedVals; ++i) {
7840         auto *I = cast<Instruction>(ReducedVals[i]);
7841         Builder.SetCurrentDebugLocation(I->getDebugLoc());
7842         VectorizedTree =
7843             createOp(Builder, RdxKind, VectorizedTree, I, "", ReductionOps);
7844       }
7845       for (auto &Pair : ExternallyUsedValues) {
7846         // Add each externally used value to the final reduction.
7847         for (auto *I : Pair.second) {
7848           Builder.SetCurrentDebugLocation(I->getDebugLoc());
7849           VectorizedTree = createOp(Builder, RdxKind, VectorizedTree,
7850                                     Pair.first, "op.extra", I);
7851         }
7852       }
7853 
7854       ReductionRoot->replaceAllUsesWith(VectorizedTree);
7855 
7856       // Mark all scalar reduction ops for deletion, they are replaced by the
7857       // vector reductions.
7858       V.eraseInstructions(IgnoreList);
7859     }
7860     return VectorizedTree != nullptr;
7861   }
7862 
7863   unsigned numReductionValues() const { return ReducedVals.size(); }
7864 
7865 private:
7866   /// Calculate the cost of a reduction.
7867   InstructionCost getReductionCost(TargetTransformInfo *TTI,
7868                                    Value *FirstReducedVal,
7869                                    unsigned ReduxWidth) {
7870     Type *ScalarTy = FirstReducedVal->getType();
7871     FixedVectorType *VectorTy = FixedVectorType::get(ScalarTy, ReduxWidth);
7872     InstructionCost VectorCost, ScalarCost;
7873     switch (RdxKind) {
7874     case RecurKind::Add:
7875     case RecurKind::Mul:
7876     case RecurKind::Or:
7877     case RecurKind::And:
7878     case RecurKind::Xor:
7879     case RecurKind::FAdd:
7880     case RecurKind::FMul: {
7881       unsigned RdxOpcode = RecurrenceDescriptor::getOpcode(RdxKind);
7882       VectorCost = TTI->getArithmeticReductionCost(RdxOpcode, VectorTy,
7883                                                    /*IsPairwiseForm=*/false);
7884       ScalarCost = TTI->getArithmeticInstrCost(RdxOpcode, ScalarTy);
7885       break;
7886     }
7887     case RecurKind::FMax:
7888     case RecurKind::FMin: {
7889       auto *VecCondTy = cast<VectorType>(CmpInst::makeCmpResultType(VectorTy));
7890       VectorCost =
7891           TTI->getMinMaxReductionCost(VectorTy, VecCondTy,
7892                                       /*pairwise=*/false, /*unsigned=*/false);
7893       ScalarCost =
7894           TTI->getCmpSelInstrCost(Instruction::FCmp, ScalarTy) +
7895           TTI->getCmpSelInstrCost(Instruction::Select, ScalarTy,
7896                                   CmpInst::makeCmpResultType(ScalarTy));
7897       break;
7898     }
7899     case RecurKind::SMax:
7900     case RecurKind::SMin:
7901     case RecurKind::UMax:
7902     case RecurKind::UMin: {
7903       auto *VecCondTy = cast<VectorType>(CmpInst::makeCmpResultType(VectorTy));
7904       bool IsUnsigned =
7905           RdxKind == RecurKind::UMax || RdxKind == RecurKind::UMin;
7906       VectorCost =
7907           TTI->getMinMaxReductionCost(VectorTy, VecCondTy,
7908                                       /*IsPairwiseForm=*/false, IsUnsigned);
7909       ScalarCost =
7910           TTI->getCmpSelInstrCost(Instruction::ICmp, ScalarTy) +
7911           TTI->getCmpSelInstrCost(Instruction::Select, ScalarTy,
7912                                   CmpInst::makeCmpResultType(ScalarTy));
7913       break;
7914     }
7915     default:
7916       llvm_unreachable("Expected arithmetic or min/max reduction operation");
7917     }
7918 
7919     // Scalar cost is repeated for N-1 elements.
7920     ScalarCost *= (ReduxWidth - 1);
7921     LLVM_DEBUG(dbgs() << "SLP: Adding cost " << VectorCost - ScalarCost
7922                       << " for reduction that starts with " << *FirstReducedVal
7923                       << " (It is a splitting reduction)\n");
7924     return VectorCost - ScalarCost;
7925   }
7926 
7927   /// Emit a horizontal reduction of the vectorized value.
7928   Value *emitReduction(Value *VectorizedValue, IRBuilder<> &Builder,
7929                        unsigned ReduxWidth, const TargetTransformInfo *TTI) {
7930     assert(VectorizedValue && "Need to have a vectorized tree node");
7931     assert(isPowerOf2_32(ReduxWidth) &&
7932            "We only handle power-of-two reductions for now");
7933 
7934     return createSimpleTargetReduction(Builder, TTI, VectorizedValue, RdxKind,
7935                                        ReductionOps.back());
7936   }
7937 };
7938 
7939 } // end anonymous namespace
7940 
7941 static Optional<unsigned> getAggregateSize(Instruction *InsertInst) {
7942   if (auto *IE = dyn_cast<InsertElementInst>(InsertInst))
7943     return cast<FixedVectorType>(IE->getType())->getNumElements();
7944 
7945   unsigned AggregateSize = 1;
7946   auto *IV = cast<InsertValueInst>(InsertInst);
7947   Type *CurrentType = IV->getType();
7948   do {
7949     if (auto *ST = dyn_cast<StructType>(CurrentType)) {
7950       for (auto *Elt : ST->elements())
7951         if (Elt != ST->getElementType(0)) // check homogeneity
7952           return None;
7953       AggregateSize *= ST->getNumElements();
7954       CurrentType = ST->getElementType(0);
7955     } else if (auto *AT = dyn_cast<ArrayType>(CurrentType)) {
7956       AggregateSize *= AT->getNumElements();
7957       CurrentType = AT->getElementType();
7958     } else if (auto *VT = dyn_cast<FixedVectorType>(CurrentType)) {
7959       AggregateSize *= VT->getNumElements();
7960       return AggregateSize;
7961     } else if (CurrentType->isSingleValueType()) {
7962       return AggregateSize;
7963     } else {
7964       return None;
7965     }
7966   } while (true);
7967 }
7968 
7969 static bool findBuildAggregate_rec(Instruction *LastInsertInst,
7970                                    TargetTransformInfo *TTI,
7971                                    SmallVectorImpl<Value *> &BuildVectorOpds,
7972                                    SmallVectorImpl<Value *> &InsertElts,
7973                                    unsigned OperandOffset) {
7974   do {
7975     Value *InsertedOperand = LastInsertInst->getOperand(1);
7976     Optional<int> OperandIndex = getInsertIndex(LastInsertInst, OperandOffset);
7977     if (!OperandIndex)
7978       return false;
7979     if (isa<InsertElementInst>(InsertedOperand) ||
7980         isa<InsertValueInst>(InsertedOperand)) {
7981       if (!findBuildAggregate_rec(cast<Instruction>(InsertedOperand), TTI,
7982                                   BuildVectorOpds, InsertElts, *OperandIndex))
7983         return false;
7984     } else {
7985       BuildVectorOpds[*OperandIndex] = InsertedOperand;
7986       InsertElts[*OperandIndex] = LastInsertInst;
7987     }
7988     LastInsertInst = dyn_cast<Instruction>(LastInsertInst->getOperand(0));
7989   } while (LastInsertInst != nullptr &&
7990            (isa<InsertValueInst>(LastInsertInst) ||
7991             isa<InsertElementInst>(LastInsertInst)) &&
7992            LastInsertInst->hasOneUse());
7993   return true;
7994 }
7995 
7996 /// Recognize construction of vectors like
7997 ///  %ra = insertelement <4 x float> poison, float %s0, i32 0
7998 ///  %rb = insertelement <4 x float> %ra, float %s1, i32 1
7999 ///  %rc = insertelement <4 x float> %rb, float %s2, i32 2
8000 ///  %rd = insertelement <4 x float> %rc, float %s3, i32 3
8001 ///  starting from the last insertelement or insertvalue instruction.
8002 ///
8003 /// Also recognize homogeneous aggregates like {<2 x float>, <2 x float>},
8004 /// {{float, float}, {float, float}}, [2 x {float, float}] and so on.
8005 /// See llvm/test/Transforms/SLPVectorizer/X86/pr42022.ll for examples.
8006 ///
8007 /// Assume LastInsertInst is of InsertElementInst or InsertValueInst type.
8008 ///
8009 /// \return true if it matches.
8010 static bool findBuildAggregate(Instruction *LastInsertInst,
8011                                TargetTransformInfo *TTI,
8012                                SmallVectorImpl<Value *> &BuildVectorOpds,
8013                                SmallVectorImpl<Value *> &InsertElts) {
8014 
8015   assert((isa<InsertElementInst>(LastInsertInst) ||
8016           isa<InsertValueInst>(LastInsertInst)) &&
8017          "Expected insertelement or insertvalue instruction!");
8018 
8019   assert((BuildVectorOpds.empty() && InsertElts.empty()) &&
8020          "Expected empty result vectors!");
8021 
8022   Optional<unsigned> AggregateSize = getAggregateSize(LastInsertInst);
8023   if (!AggregateSize)
8024     return false;
8025   BuildVectorOpds.resize(*AggregateSize);
8026   InsertElts.resize(*AggregateSize);
8027 
8028   if (findBuildAggregate_rec(LastInsertInst, TTI, BuildVectorOpds, InsertElts,
8029                              0)) {
8030     llvm::erase_value(BuildVectorOpds, nullptr);
8031     llvm::erase_value(InsertElts, nullptr);
8032     if (BuildVectorOpds.size() >= 2)
8033       return true;
8034   }
8035 
8036   return false;
8037 }
8038 
8039 /// Try and get a reduction value from a phi node.
8040 ///
8041 /// Given a phi node \p P in a block \p ParentBB, consider possible reductions
8042 /// if they come from either \p ParentBB or a containing loop latch.
8043 ///
8044 /// \returns A candidate reduction value if possible, or \code nullptr \endcode
8045 /// if not possible.
8046 static Value *getReductionValue(const DominatorTree *DT, PHINode *P,
8047                                 BasicBlock *ParentBB, LoopInfo *LI) {
8048   // There are situations where the reduction value is not dominated by the
8049   // reduction phi. Vectorizing such cases has been reported to cause
8050   // miscompiles. See PR25787.
8051   auto DominatedReduxValue = [&](Value *R) {
8052     return isa<Instruction>(R) &&
8053            DT->dominates(P->getParent(), cast<Instruction>(R)->getParent());
8054   };
8055 
8056   Value *Rdx = nullptr;
8057 
8058   // Return the incoming value if it comes from the same BB as the phi node.
8059   if (P->getIncomingBlock(0) == ParentBB) {
8060     Rdx = P->getIncomingValue(0);
8061   } else if (P->getIncomingBlock(1) == ParentBB) {
8062     Rdx = P->getIncomingValue(1);
8063   }
8064 
8065   if (Rdx && DominatedReduxValue(Rdx))
8066     return Rdx;
8067 
8068   // Otherwise, check whether we have a loop latch to look at.
8069   Loop *BBL = LI->getLoopFor(ParentBB);
8070   if (!BBL)
8071     return nullptr;
8072   BasicBlock *BBLatch = BBL->getLoopLatch();
8073   if (!BBLatch)
8074     return nullptr;
8075 
8076   // There is a loop latch, return the incoming value if it comes from
8077   // that. This reduction pattern occasionally turns up.
8078   if (P->getIncomingBlock(0) == BBLatch) {
8079     Rdx = P->getIncomingValue(0);
8080   } else if (P->getIncomingBlock(1) == BBLatch) {
8081     Rdx = P->getIncomingValue(1);
8082   }
8083 
8084   if (Rdx && DominatedReduxValue(Rdx))
8085     return Rdx;
8086 
8087   return nullptr;
8088 }
8089 
8090 static bool matchRdxBop(Instruction *I, Value *&V0, Value *&V1) {
8091   if (match(I, m_BinOp(m_Value(V0), m_Value(V1))))
8092     return true;
8093   if (match(I, m_Intrinsic<Intrinsic::maxnum>(m_Value(V0), m_Value(V1))))
8094     return true;
8095   if (match(I, m_Intrinsic<Intrinsic::minnum>(m_Value(V0), m_Value(V1))))
8096     return true;
8097   if (match(I, m_Intrinsic<Intrinsic::smax>(m_Value(V0), m_Value(V1))))
8098     return true;
8099   if (match(I, m_Intrinsic<Intrinsic::smin>(m_Value(V0), m_Value(V1))))
8100     return true;
8101   if (match(I, m_Intrinsic<Intrinsic::umax>(m_Value(V0), m_Value(V1))))
8102     return true;
8103   if (match(I, m_Intrinsic<Intrinsic::umin>(m_Value(V0), m_Value(V1))))
8104     return true;
8105   return false;
8106 }
8107 
8108 /// Attempt to reduce a horizontal reduction.
8109 /// If it is legal to match a horizontal reduction feeding the phi node \a P
8110 /// with reduction operators \a Root (or one of its operands) in a basic block
8111 /// \a BB, then check if it can be done. If horizontal reduction is not found
8112 /// and root instruction is a binary operation, vectorization of the operands is
8113 /// attempted.
8114 /// \returns true if a horizontal reduction was matched and reduced or operands
8115 /// of one of the binary instruction were vectorized.
8116 /// \returns false if a horizontal reduction was not matched (or not possible)
8117 /// or no vectorization of any binary operation feeding \a Root instruction was
8118 /// performed.
8119 static bool tryToVectorizeHorReductionOrInstOperands(
8120     PHINode *P, Instruction *Root, BasicBlock *BB, BoUpSLP &R,
8121     TargetTransformInfo *TTI,
8122     const function_ref<bool(Instruction *, BoUpSLP &)> Vectorize) {
8123   if (!ShouldVectorizeHor)
8124     return false;
8125 
8126   if (!Root)
8127     return false;
8128 
8129   if (Root->getParent() != BB || isa<PHINode>(Root))
8130     return false;
8131   // Start analysis starting from Root instruction. If horizontal reduction is
8132   // found, try to vectorize it. If it is not a horizontal reduction or
8133   // vectorization is not possible or not effective, and currently analyzed
8134   // instruction is a binary operation, try to vectorize the operands, using
8135   // pre-order DFS traversal order. If the operands were not vectorized, repeat
8136   // the same procedure considering each operand as a possible root of the
8137   // horizontal reduction.
8138   // Interrupt the process if the Root instruction itself was vectorized or all
8139   // sub-trees not higher that RecursionMaxDepth were analyzed/vectorized.
8140   // Skip the analysis of CmpInsts.Compiler implements postanalysis of the
8141   // CmpInsts so we can skip extra attempts in
8142   // tryToVectorizeHorReductionOrInstOperands and save compile time.
8143   SmallVector<std::pair<Instruction *, unsigned>, 8> Stack(1, {Root, 0});
8144   SmallPtrSet<Value *, 8> VisitedInstrs;
8145   bool Res = false;
8146   while (!Stack.empty()) {
8147     Instruction *Inst;
8148     unsigned Level;
8149     std::tie(Inst, Level) = Stack.pop_back_val();
8150     Value *B0, *B1;
8151     bool IsBinop = matchRdxBop(Inst, B0, B1);
8152     bool IsSelect = match(Inst, m_Select(m_Value(), m_Value(), m_Value()));
8153     if (IsBinop || IsSelect) {
8154       HorizontalReduction HorRdx;
8155       if (HorRdx.matchAssociativeReduction(P, Inst)) {
8156         if (HorRdx.tryToReduce(R, TTI)) {
8157           Res = true;
8158           // Set P to nullptr to avoid re-analysis of phi node in
8159           // matchAssociativeReduction function unless this is the root node.
8160           P = nullptr;
8161           continue;
8162         }
8163       }
8164       if (P && IsBinop) {
8165         Inst = dyn_cast<Instruction>(B0);
8166         if (Inst == P)
8167           Inst = dyn_cast<Instruction>(B1);
8168         if (!Inst) {
8169           // Set P to nullptr to avoid re-analysis of phi node in
8170           // matchAssociativeReduction function unless this is the root node.
8171           P = nullptr;
8172           continue;
8173         }
8174       }
8175     }
8176     // Set P to nullptr to avoid re-analysis of phi node in
8177     // matchAssociativeReduction function unless this is the root node.
8178     P = nullptr;
8179     // Do not try to vectorize CmpInst operands, this is done separately.
8180     if (!isa<CmpInst>(Inst) && Vectorize(Inst, R)) {
8181       Res = true;
8182       continue;
8183     }
8184 
8185     // Try to vectorize operands.
8186     // Continue analysis for the instruction from the same basic block only to
8187     // save compile time.
8188     if (++Level < RecursionMaxDepth)
8189       for (auto *Op : Inst->operand_values())
8190         if (VisitedInstrs.insert(Op).second)
8191           if (auto *I = dyn_cast<Instruction>(Op))
8192             // Do not try to vectorize CmpInst operands,  this is done
8193             // separately.
8194             if (!isa<PHINode>(I) && !isa<CmpInst>(I) && !R.isDeleted(I) &&
8195                 I->getParent() == BB)
8196               Stack.emplace_back(I, Level);
8197   }
8198   return Res;
8199 }
8200 
8201 bool SLPVectorizerPass::vectorizeRootInstruction(PHINode *P, Value *V,
8202                                                  BasicBlock *BB, BoUpSLP &R,
8203                                                  TargetTransformInfo *TTI) {
8204   auto *I = dyn_cast_or_null<Instruction>(V);
8205   if (!I)
8206     return false;
8207 
8208   if (!isa<BinaryOperator>(I))
8209     P = nullptr;
8210   // Try to match and vectorize a horizontal reduction.
8211   auto &&ExtraVectorization = [this](Instruction *I, BoUpSLP &R) -> bool {
8212     return tryToVectorize(I, R);
8213   };
8214   return tryToVectorizeHorReductionOrInstOperands(P, I, BB, R, TTI,
8215                                                   ExtraVectorization);
8216 }
8217 
8218 bool SLPVectorizerPass::vectorizeInsertValueInst(InsertValueInst *IVI,
8219                                                  BasicBlock *BB, BoUpSLP &R) {
8220   const DataLayout &DL = BB->getModule()->getDataLayout();
8221   if (!R.canMapToVector(IVI->getType(), DL))
8222     return false;
8223 
8224   SmallVector<Value *, 16> BuildVectorOpds;
8225   SmallVector<Value *, 16> BuildVectorInsts;
8226   if (!findBuildAggregate(IVI, TTI, BuildVectorOpds, BuildVectorInsts))
8227     return false;
8228 
8229   LLVM_DEBUG(dbgs() << "SLP: array mappable to vector: " << *IVI << "\n");
8230   // Aggregate value is unlikely to be processed in vector register, we need to
8231   // extract scalars into scalar registers, so NeedExtraction is set true.
8232   return tryToVectorizeList(BuildVectorOpds, R, /*AllowReorder=*/false);
8233 }
8234 
8235 bool SLPVectorizerPass::vectorizeInsertElementInst(InsertElementInst *IEI,
8236                                                    BasicBlock *BB, BoUpSLP &R) {
8237   SmallVector<Value *, 16> BuildVectorInsts;
8238   SmallVector<Value *, 16> BuildVectorOpds;
8239   SmallVector<int> Mask;
8240   if (!findBuildAggregate(IEI, TTI, BuildVectorOpds, BuildVectorInsts) ||
8241       (llvm::all_of(BuildVectorOpds,
8242                     [](Value *V) { return isa<ExtractElementInst>(V); }) &&
8243        isShuffle(BuildVectorOpds, Mask)))
8244     return false;
8245 
8246   LLVM_DEBUG(dbgs() << "SLP: array mappable to vector: " << *IEI << "\n");
8247   return tryToVectorizeList(BuildVectorInsts, R, /*AllowReorder=*/true);
8248 }
8249 
8250 bool SLPVectorizerPass::vectorizeSimpleInstructions(
8251     SmallVectorImpl<Instruction *> &Instructions, BasicBlock *BB, BoUpSLP &R,
8252     bool AtTerminator) {
8253   bool OpsChanged = false;
8254   SmallVector<Instruction *, 4> PostponedCmps;
8255   for (auto *I : reverse(Instructions)) {
8256     if (R.isDeleted(I))
8257       continue;
8258     if (auto *LastInsertValue = dyn_cast<InsertValueInst>(I))
8259       OpsChanged |= vectorizeInsertValueInst(LastInsertValue, BB, R);
8260     else if (auto *LastInsertElem = dyn_cast<InsertElementInst>(I))
8261       OpsChanged |= vectorizeInsertElementInst(LastInsertElem, BB, R);
8262     else if (isa<CmpInst>(I))
8263       PostponedCmps.push_back(I);
8264   }
8265   if (AtTerminator) {
8266     // Try to find reductions first.
8267     for (Instruction *I : PostponedCmps) {
8268       if (R.isDeleted(I))
8269         continue;
8270       for (Value *Op : I->operands())
8271         OpsChanged |= vectorizeRootInstruction(nullptr, Op, BB, R, TTI);
8272     }
8273     // Try to vectorize operands as vector bundles.
8274     for (Instruction *I : PostponedCmps) {
8275       if (R.isDeleted(I))
8276         continue;
8277       OpsChanged |= tryToVectorize(I, R);
8278     }
8279     Instructions.clear();
8280   } else {
8281     // Insert in reverse order since the PostponedCmps vector was filled in
8282     // reverse order.
8283     Instructions.assign(PostponedCmps.rbegin(), PostponedCmps.rend());
8284   }
8285   return OpsChanged;
8286 }
8287 
8288 bool SLPVectorizerPass::vectorizeChainsInBlock(BasicBlock *BB, BoUpSLP &R) {
8289   bool Changed = false;
8290   SmallVector<Value *, 4> Incoming;
8291   SmallPtrSet<Value *, 16> VisitedInstrs;
8292   // Maps phi nodes to the non-phi nodes found in the use tree for each phi
8293   // node. Allows better to identify the chains that can be vectorized in the
8294   // better way.
8295   DenseMap<Value *, SmallVector<Value *, 4>> PHIToOpcodes;
8296 
8297   bool HaveVectorizedPhiNodes = true;
8298   while (HaveVectorizedPhiNodes) {
8299     HaveVectorizedPhiNodes = false;
8300 
8301     // Collect the incoming values from the PHIs.
8302     Incoming.clear();
8303     for (Instruction &I : *BB) {
8304       PHINode *P = dyn_cast<PHINode>(&I);
8305       if (!P)
8306         break;
8307 
8308       // No need to analyze deleted, vectorized and non-vectorizable
8309       // instructions.
8310       if (!VisitedInstrs.count(P) && !R.isDeleted(P) &&
8311           !P->getType()->isVectorTy())
8312         Incoming.push_back(P);
8313     }
8314 
8315     // Find the corresponding non-phi nodes for better matching when trying to
8316     // build the tree.
8317     for (Value *V : Incoming) {
8318       SmallVectorImpl<Value *> &Opcodes =
8319           PHIToOpcodes.try_emplace(V).first->getSecond();
8320       if (!Opcodes.empty())
8321         continue;
8322       SmallVector<Value *, 4> Nodes(1, V);
8323       SmallPtrSet<Value *, 4> Visited;
8324       while (!Nodes.empty()) {
8325         auto *PHI = cast<PHINode>(Nodes.pop_back_val());
8326         if (!Visited.insert(PHI).second)
8327           continue;
8328         for (Value *V : PHI->incoming_values()) {
8329           if (auto *PHI1 = dyn_cast<PHINode>((V))) {
8330             Nodes.push_back(PHI1);
8331             continue;
8332           }
8333           Opcodes.emplace_back(V);
8334         }
8335       }
8336     }
8337 
8338     // Sort by type, parent, operands.
8339     stable_sort(Incoming, [&PHIToOpcodes](Value *V1, Value *V2) {
8340       if (V1->getType() < V2->getType())
8341         return true;
8342       if (V1->getType() > V2->getType())
8343         return false;
8344       ArrayRef<Value *> Opcodes1 = PHIToOpcodes[V1];
8345       ArrayRef<Value *> Opcodes2 = PHIToOpcodes[V2];
8346       if (Opcodes1.size() < Opcodes2.size())
8347         return true;
8348       if (Opcodes1.size() > Opcodes2.size())
8349         return false;
8350       for (int I = 0, E = Opcodes1.size(); I < E; ++I) {
8351         // Undefs are compatible with any other value.
8352         if (isa<UndefValue>(Opcodes1[I]) || isa<UndefValue>(Opcodes2[I]))
8353           continue;
8354         if (auto *I1 = dyn_cast<Instruction>(Opcodes1[I]))
8355           if (auto *I2 = dyn_cast<Instruction>(Opcodes2[I])) {
8356             if (I1->getParent() < I2->getParent())
8357               return true;
8358             if (I1->getParent() > I2->getParent())
8359               return false;
8360             InstructionsState S = getSameOpcode({I1, I2});
8361             if (S.getOpcode())
8362               continue;
8363             return I1->getOpcode() < I2->getOpcode();
8364           }
8365         if (isa<Constant>(Opcodes1[I]) && isa<Constant>(Opcodes2[I]))
8366           continue;
8367         if (Opcodes1[I]->getValueID() < Opcodes2[I]->getValueID())
8368           return true;
8369         if (Opcodes1[I]->getValueID() > Opcodes2[I]->getValueID())
8370           return false;
8371       }
8372       return false;
8373     });
8374 
8375     auto &&AreCompatiblePHIs = [&PHIToOpcodes](Value *V1, Value *V2) {
8376       if (V1 == V2)
8377         return true;
8378       if (V1->getType() != V2->getType())
8379         return false;
8380       ArrayRef<Value *> Opcodes1 = PHIToOpcodes[V1];
8381       ArrayRef<Value *> Opcodes2 = PHIToOpcodes[V2];
8382       if (Opcodes1.size() != Opcodes2.size())
8383         return false;
8384       for (int I = 0, E = Opcodes1.size(); I < E; ++I) {
8385         // Undefs are compatible with any other value.
8386         if (isa<UndefValue>(Opcodes1[I]) || isa<UndefValue>(Opcodes2[I]))
8387           continue;
8388         if (auto *I1 = dyn_cast<Instruction>(Opcodes1[I]))
8389           if (auto *I2 = dyn_cast<Instruction>(Opcodes2[I])) {
8390             if (I1->getParent() != I2->getParent())
8391               return false;
8392             InstructionsState S = getSameOpcode({I1, I2});
8393             if (S.getOpcode())
8394               continue;
8395             return false;
8396           }
8397         if (isa<Constant>(Opcodes1[I]) && isa<Constant>(Opcodes2[I]))
8398           continue;
8399         if (Opcodes1[I]->getValueID() != Opcodes2[I]->getValueID())
8400           return false;
8401       }
8402       return true;
8403     };
8404 
8405     // Try to vectorize elements base on their type.
8406     SmallVector<Value *, 4> Candidates;
8407     for (SmallVector<Value *, 4>::iterator IncIt = Incoming.begin(),
8408                                            E = Incoming.end();
8409          IncIt != E;) {
8410 
8411       // Look for the next elements with the same type, parent and operand
8412       // kinds.
8413       SmallVector<Value *, 4>::iterator SameTypeIt = IncIt;
8414       while (SameTypeIt != E && AreCompatiblePHIs(*SameTypeIt, *IncIt)) {
8415         VisitedInstrs.insert(*SameTypeIt);
8416         ++SameTypeIt;
8417       }
8418 
8419       // Try to vectorize them.
8420       unsigned NumElts = (SameTypeIt - IncIt);
8421       LLVM_DEBUG(dbgs() << "SLP: Trying to vectorize starting at PHIs ("
8422                         << NumElts << ")\n");
8423       // The order in which the phi nodes appear in the program does not matter.
8424       // So allow tryToVectorizeList to reorder them if it is beneficial. This
8425       // is done when there are exactly two elements since tryToVectorizeList
8426       // asserts that there are only two values when AllowReorder is true.
8427       if (NumElts > 1 && tryToVectorizeList(makeArrayRef(IncIt, NumElts), R,
8428                                             /*AllowReorder=*/true)) {
8429         // Success start over because instructions might have been changed.
8430         HaveVectorizedPhiNodes = true;
8431         Changed = true;
8432       } else if (NumElts < 4 &&
8433                  (Candidates.empty() ||
8434                   Candidates.front()->getType() == (*IncIt)->getType())) {
8435         Candidates.append(IncIt, std::next(IncIt, NumElts));
8436       }
8437       // Final attempt to vectorize phis with the same types.
8438       if (SameTypeIt == E || (*SameTypeIt)->getType() != (*IncIt)->getType()) {
8439         if (Candidates.size() > 1 &&
8440             tryToVectorizeList(Candidates, R, /*AllowReorder=*/true)) {
8441           // Success start over because instructions might have been changed.
8442           HaveVectorizedPhiNodes = true;
8443           Changed = true;
8444         }
8445         Candidates.clear();
8446       }
8447 
8448       // Start over at the next instruction of a different type (or the end).
8449       IncIt = SameTypeIt;
8450     }
8451   }
8452 
8453   VisitedInstrs.clear();
8454 
8455   SmallVector<Instruction *, 8> PostProcessInstructions;
8456   SmallDenseSet<Instruction *, 4> KeyNodes;
8457   for (BasicBlock::iterator it = BB->begin(), e = BB->end(); it != e; ++it) {
8458     // Skip instructions with scalable type. The num of elements is unknown at
8459     // compile-time for scalable type.
8460     if (isa<ScalableVectorType>(it->getType()))
8461       continue;
8462 
8463     // Skip instructions marked for the deletion.
8464     if (R.isDeleted(&*it))
8465       continue;
8466     // We may go through BB multiple times so skip the one we have checked.
8467     if (!VisitedInstrs.insert(&*it).second) {
8468       if (it->use_empty() && KeyNodes.contains(&*it) &&
8469           vectorizeSimpleInstructions(PostProcessInstructions, BB, R,
8470                                       it->isTerminator())) {
8471         // We would like to start over since some instructions are deleted
8472         // and the iterator may become invalid value.
8473         Changed = true;
8474         it = BB->begin();
8475         e = BB->end();
8476       }
8477       continue;
8478     }
8479 
8480     if (isa<DbgInfoIntrinsic>(it))
8481       continue;
8482 
8483     // Try to vectorize reductions that use PHINodes.
8484     if (PHINode *P = dyn_cast<PHINode>(it)) {
8485       // Check that the PHI is a reduction PHI.
8486       if (P->getNumIncomingValues() == 2) {
8487         // Try to match and vectorize a horizontal reduction.
8488         if (vectorizeRootInstruction(P, getReductionValue(DT, P, BB, LI), BB, R,
8489                                      TTI)) {
8490           Changed = true;
8491           it = BB->begin();
8492           e = BB->end();
8493           continue;
8494         }
8495       }
8496       // Try to vectorize the incoming values of the PHI, to catch reductions
8497       // that feed into PHIs.
8498       for (unsigned I = 0, E = P->getNumIncomingValues(); I != E; I++) {
8499         // Skip if the incoming block is the current BB for now. Also, bypass
8500         // unreachable IR for efficiency and to avoid crashing.
8501         // TODO: Collect the skipped incoming values and try to vectorize them
8502         // after processing BB.
8503         if (BB == P->getIncomingBlock(I) ||
8504             !DT->isReachableFromEntry(P->getIncomingBlock(I)))
8505           continue;
8506 
8507         Changed |= vectorizeRootInstruction(nullptr, P->getIncomingValue(I),
8508                                             P->getIncomingBlock(I), R, TTI);
8509       }
8510       continue;
8511     }
8512 
8513     // Ran into an instruction without users, like terminator, or function call
8514     // with ignored return value, store. Ignore unused instructions (basing on
8515     // instruction type, except for CallInst and InvokeInst).
8516     if (it->use_empty() && (it->getType()->isVoidTy() || isa<CallInst>(it) ||
8517                             isa<InvokeInst>(it))) {
8518       KeyNodes.insert(&*it);
8519       bool OpsChanged = false;
8520       if (ShouldStartVectorizeHorAtStore || !isa<StoreInst>(it)) {
8521         for (auto *V : it->operand_values()) {
8522           // Try to match and vectorize a horizontal reduction.
8523           OpsChanged |= vectorizeRootInstruction(nullptr, V, BB, R, TTI);
8524         }
8525       }
8526       // Start vectorization of post-process list of instructions from the
8527       // top-tree instructions to try to vectorize as many instructions as
8528       // possible.
8529       OpsChanged |= vectorizeSimpleInstructions(PostProcessInstructions, BB, R,
8530                                                 it->isTerminator());
8531       if (OpsChanged) {
8532         // We would like to start over since some instructions are deleted
8533         // and the iterator may become invalid value.
8534         Changed = true;
8535         it = BB->begin();
8536         e = BB->end();
8537         continue;
8538       }
8539     }
8540 
8541     if (isa<InsertElementInst>(it) || isa<CmpInst>(it) ||
8542         isa<InsertValueInst>(it))
8543       PostProcessInstructions.push_back(&*it);
8544   }
8545 
8546   return Changed;
8547 }
8548 
8549 bool SLPVectorizerPass::vectorizeGEPIndices(BasicBlock *BB, BoUpSLP &R) {
8550   auto Changed = false;
8551   for (auto &Entry : GEPs) {
8552     // If the getelementptr list has fewer than two elements, there's nothing
8553     // to do.
8554     if (Entry.second.size() < 2)
8555       continue;
8556 
8557     LLVM_DEBUG(dbgs() << "SLP: Analyzing a getelementptr list of length "
8558                       << Entry.second.size() << ".\n");
8559 
8560     // Process the GEP list in chunks suitable for the target's supported
8561     // vector size. If a vector register can't hold 1 element, we are done. We
8562     // are trying to vectorize the index computations, so the maximum number of
8563     // elements is based on the size of the index expression, rather than the
8564     // size of the GEP itself (the target's pointer size).
8565     unsigned MaxVecRegSize = R.getMaxVecRegSize();
8566     unsigned EltSize = R.getVectorElementSize(*Entry.second[0]->idx_begin());
8567     if (MaxVecRegSize < EltSize)
8568       continue;
8569 
8570     unsigned MaxElts = MaxVecRegSize / EltSize;
8571     for (unsigned BI = 0, BE = Entry.second.size(); BI < BE; BI += MaxElts) {
8572       auto Len = std::min<unsigned>(BE - BI, MaxElts);
8573       ArrayRef<GetElementPtrInst *> GEPList(&Entry.second[BI], Len);
8574 
8575       // Initialize a set a candidate getelementptrs. Note that we use a
8576       // SetVector here to preserve program order. If the index computations
8577       // are vectorizable and begin with loads, we want to minimize the chance
8578       // of having to reorder them later.
8579       SetVector<Value *> Candidates(GEPList.begin(), GEPList.end());
8580 
8581       // Some of the candidates may have already been vectorized after we
8582       // initially collected them. If so, they are marked as deleted, so remove
8583       // them from the set of candidates.
8584       Candidates.remove_if(
8585           [&R](Value *I) { return R.isDeleted(cast<Instruction>(I)); });
8586 
8587       // Remove from the set of candidates all pairs of getelementptrs with
8588       // constant differences. Such getelementptrs are likely not good
8589       // candidates for vectorization in a bottom-up phase since one can be
8590       // computed from the other. We also ensure all candidate getelementptr
8591       // indices are unique.
8592       for (int I = 0, E = GEPList.size(); I < E && Candidates.size() > 1; ++I) {
8593         auto *GEPI = GEPList[I];
8594         if (!Candidates.count(GEPI))
8595           continue;
8596         auto *SCEVI = SE->getSCEV(GEPList[I]);
8597         for (int J = I + 1; J < E && Candidates.size() > 1; ++J) {
8598           auto *GEPJ = GEPList[J];
8599           auto *SCEVJ = SE->getSCEV(GEPList[J]);
8600           if (isa<SCEVConstant>(SE->getMinusSCEV(SCEVI, SCEVJ))) {
8601             Candidates.remove(GEPI);
8602             Candidates.remove(GEPJ);
8603           } else if (GEPI->idx_begin()->get() == GEPJ->idx_begin()->get()) {
8604             Candidates.remove(GEPJ);
8605           }
8606         }
8607       }
8608 
8609       // We break out of the above computation as soon as we know there are
8610       // fewer than two candidates remaining.
8611       if (Candidates.size() < 2)
8612         continue;
8613 
8614       // Add the single, non-constant index of each candidate to the bundle. We
8615       // ensured the indices met these constraints when we originally collected
8616       // the getelementptrs.
8617       SmallVector<Value *, 16> Bundle(Candidates.size());
8618       auto BundleIndex = 0u;
8619       for (auto *V : Candidates) {
8620         auto *GEP = cast<GetElementPtrInst>(V);
8621         auto *GEPIdx = GEP->idx_begin()->get();
8622         assert(GEP->getNumIndices() == 1 || !isa<Constant>(GEPIdx));
8623         Bundle[BundleIndex++] = GEPIdx;
8624       }
8625 
8626       // Try and vectorize the indices. We are currently only interested in
8627       // gather-like cases of the form:
8628       //
8629       // ... = g[a[0] - b[0]] + g[a[1] - b[1]] + ...
8630       //
8631       // where the loads of "a", the loads of "b", and the subtractions can be
8632       // performed in parallel. It's likely that detecting this pattern in a
8633       // bottom-up phase will be simpler and less costly than building a
8634       // full-blown top-down phase beginning at the consecutive loads.
8635       Changed |= tryToVectorizeList(Bundle, R);
8636     }
8637   }
8638   return Changed;
8639 }
8640 
8641 bool SLPVectorizerPass::vectorizeStoreChains(BoUpSLP &R) {
8642   bool Changed = false;
8643   // Attempt to sort and vectorize each of the store-groups.
8644   for (StoreListMap::iterator it = Stores.begin(), e = Stores.end(); it != e;
8645        ++it) {
8646     if (it->second.size() < 2)
8647       continue;
8648 
8649     LLVM_DEBUG(dbgs() << "SLP: Analyzing a store chain of length "
8650                       << it->second.size() << ".\n");
8651 
8652     Changed |= vectorizeStores(it->second, R);
8653   }
8654   return Changed;
8655 }
8656 
8657 char SLPVectorizer::ID = 0;
8658 
8659 static const char lv_name[] = "SLP Vectorizer";
8660 
8661 INITIALIZE_PASS_BEGIN(SLPVectorizer, SV_NAME, lv_name, false, false)
8662 INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
8663 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
8664 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
8665 INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
8666 INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
8667 INITIALIZE_PASS_DEPENDENCY(DemandedBitsWrapperPass)
8668 INITIALIZE_PASS_DEPENDENCY(OptimizationRemarkEmitterWrapperPass)
8669 INITIALIZE_PASS_DEPENDENCY(InjectTLIMappingsLegacy)
8670 INITIALIZE_PASS_END(SLPVectorizer, SV_NAME, lv_name, false, false)
8671 
8672 Pass *llvm::createSLPVectorizerPass() { return new SLPVectorizer(); }
8673