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