1 //===- VPlan.cpp - Vectorizer Plan ----------------------------------------===// 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 /// \file 10 /// This is the LLVM vectorization plan. It represents a candidate for 11 /// vectorization, allowing to plan and optimize how to vectorize a given loop 12 /// before generating LLVM-IR. 13 /// The vectorizer uses vectorization plans to estimate the costs of potential 14 /// candidates and if profitable to execute the desired plan, generating vector 15 /// LLVM-IR code. 16 /// 17 //===----------------------------------------------------------------------===// 18 19 #include "VPlan.h" 20 #include "VPlanDominatorTree.h" 21 #include "llvm/ADT/DepthFirstIterator.h" 22 #include "llvm/ADT/PostOrderIterator.h" 23 #include "llvm/ADT/STLExtras.h" 24 #include "llvm/ADT/SmallVector.h" 25 #include "llvm/ADT/Twine.h" 26 #include "llvm/Analysis/IVDescriptors.h" 27 #include "llvm/Analysis/LoopInfo.h" 28 #include "llvm/IR/BasicBlock.h" 29 #include "llvm/IR/CFG.h" 30 #include "llvm/IR/InstrTypes.h" 31 #include "llvm/IR/Instruction.h" 32 #include "llvm/IR/Instructions.h" 33 #include "llvm/IR/Type.h" 34 #include "llvm/IR/Value.h" 35 #include "llvm/Support/Casting.h" 36 #include "llvm/Support/CommandLine.h" 37 #include "llvm/Support/Debug.h" 38 #include "llvm/Support/ErrorHandling.h" 39 #include "llvm/Support/GenericDomTreeConstruction.h" 40 #include "llvm/Support/GraphWriter.h" 41 #include "llvm/Support/raw_ostream.h" 42 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 43 #include <cassert> 44 #include <iterator> 45 #include <string> 46 #include <vector> 47 48 using namespace llvm; 49 extern cl::opt<bool> EnableVPlanNativePath; 50 51 #define DEBUG_TYPE "vplan" 52 53 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 54 raw_ostream &llvm::operator<<(raw_ostream &OS, const VPValue &V) { 55 const VPInstruction *Instr = dyn_cast<VPInstruction>(&V); 56 VPSlotTracker SlotTracker( 57 (Instr && Instr->getParent()) ? Instr->getParent()->getPlan() : nullptr); 58 V.print(OS, SlotTracker); 59 return OS; 60 } 61 #endif 62 63 Value *VPLane::getAsRuntimeExpr(IRBuilder<> &Builder, 64 const ElementCount &VF) const { 65 switch (LaneKind) { 66 case VPLane::Kind::ScalableLast: 67 // Lane = RuntimeVF - VF.getKnownMinValue() + Lane 68 return Builder.CreateSub(getRuntimeVF(Builder, Builder.getInt32Ty(), VF), 69 Builder.getInt32(VF.getKnownMinValue() - Lane)); 70 case VPLane::Kind::First: 71 return Builder.getInt32(Lane); 72 } 73 llvm_unreachable("Unknown lane kind"); 74 } 75 76 VPValue::VPValue(const unsigned char SC, Value *UV, VPDef *Def) 77 : SubclassID(SC), UnderlyingVal(UV), Def(Def) { 78 if (Def) 79 Def->addDefinedValue(this); 80 } 81 82 VPValue::~VPValue() { 83 assert(Users.empty() && "trying to delete a VPValue with remaining users"); 84 if (Def) 85 Def->removeDefinedValue(this); 86 } 87 88 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 89 void VPValue::print(raw_ostream &OS, VPSlotTracker &SlotTracker) const { 90 if (const VPRecipeBase *R = dyn_cast_or_null<VPRecipeBase>(Def)) 91 R->print(OS, "", SlotTracker); 92 else 93 printAsOperand(OS, SlotTracker); 94 } 95 96 void VPValue::dump() const { 97 const VPRecipeBase *Instr = dyn_cast_or_null<VPRecipeBase>(this->Def); 98 VPSlotTracker SlotTracker( 99 (Instr && Instr->getParent()) ? Instr->getParent()->getPlan() : nullptr); 100 print(dbgs(), SlotTracker); 101 dbgs() << "\n"; 102 } 103 104 void VPDef::dump() const { 105 const VPRecipeBase *Instr = dyn_cast_or_null<VPRecipeBase>(this); 106 VPSlotTracker SlotTracker( 107 (Instr && Instr->getParent()) ? Instr->getParent()->getPlan() : nullptr); 108 print(dbgs(), "", SlotTracker); 109 dbgs() << "\n"; 110 } 111 #endif 112 113 // Get the top-most entry block of \p Start. This is the entry block of the 114 // containing VPlan. This function is templated to support both const and non-const blocks 115 template <typename T> static T *getPlanEntry(T *Start) { 116 T *Next = Start; 117 T *Current = Start; 118 while ((Next = Next->getParent())) 119 Current = Next; 120 121 SmallSetVector<T *, 8> WorkList; 122 WorkList.insert(Current); 123 124 for (unsigned i = 0; i < WorkList.size(); i++) { 125 T *Current = WorkList[i]; 126 if (Current->getNumPredecessors() == 0) 127 return Current; 128 auto &Predecessors = Current->getPredecessors(); 129 WorkList.insert(Predecessors.begin(), Predecessors.end()); 130 } 131 132 llvm_unreachable("VPlan without any entry node without predecessors"); 133 } 134 135 VPlan *VPBlockBase::getPlan() { return getPlanEntry(this)->Plan; } 136 137 const VPlan *VPBlockBase::getPlan() const { return getPlanEntry(this)->Plan; } 138 139 /// \return the VPBasicBlock that is the entry of Block, possibly indirectly. 140 const VPBasicBlock *VPBlockBase::getEntryBasicBlock() const { 141 const VPBlockBase *Block = this; 142 while (const VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block)) 143 Block = Region->getEntry(); 144 return cast<VPBasicBlock>(Block); 145 } 146 147 VPBasicBlock *VPBlockBase::getEntryBasicBlock() { 148 VPBlockBase *Block = this; 149 while (VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block)) 150 Block = Region->getEntry(); 151 return cast<VPBasicBlock>(Block); 152 } 153 154 void VPBlockBase::setPlan(VPlan *ParentPlan) { 155 assert(ParentPlan->getEntry() == this && 156 "Can only set plan on its entry block."); 157 Plan = ParentPlan; 158 } 159 160 /// \return the VPBasicBlock that is the exit of Block, possibly indirectly. 161 const VPBasicBlock *VPBlockBase::getExitBasicBlock() const { 162 const VPBlockBase *Block = this; 163 while (const VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block)) 164 Block = Region->getExit(); 165 return cast<VPBasicBlock>(Block); 166 } 167 168 VPBasicBlock *VPBlockBase::getExitBasicBlock() { 169 VPBlockBase *Block = this; 170 while (VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block)) 171 Block = Region->getExit(); 172 return cast<VPBasicBlock>(Block); 173 } 174 175 VPBlockBase *VPBlockBase::getEnclosingBlockWithSuccessors() { 176 if (!Successors.empty() || !Parent) 177 return this; 178 assert(Parent->getExit() == this && 179 "Block w/o successors not the exit of its parent."); 180 return Parent->getEnclosingBlockWithSuccessors(); 181 } 182 183 VPBlockBase *VPBlockBase::getEnclosingBlockWithPredecessors() { 184 if (!Predecessors.empty() || !Parent) 185 return this; 186 assert(Parent->getEntry() == this && 187 "Block w/o predecessors not the entry of its parent."); 188 return Parent->getEnclosingBlockWithPredecessors(); 189 } 190 191 VPValue *VPBlockBase::getCondBit() { 192 return CondBitUser.getSingleOperandOrNull(); 193 } 194 195 const VPValue *VPBlockBase::getCondBit() const { 196 return CondBitUser.getSingleOperandOrNull(); 197 } 198 199 void VPBlockBase::setCondBit(VPValue *CV) { CondBitUser.resetSingleOpUser(CV); } 200 201 VPValue *VPBlockBase::getPredicate() { 202 return PredicateUser.getSingleOperandOrNull(); 203 } 204 205 const VPValue *VPBlockBase::getPredicate() const { 206 return PredicateUser.getSingleOperandOrNull(); 207 } 208 209 void VPBlockBase::setPredicate(VPValue *CV) { 210 PredicateUser.resetSingleOpUser(CV); 211 } 212 213 void VPBlockBase::deleteCFG(VPBlockBase *Entry) { 214 SmallVector<VPBlockBase *, 8> Blocks(depth_first(Entry)); 215 216 for (VPBlockBase *Block : Blocks) 217 delete Block; 218 } 219 220 VPBasicBlock::iterator VPBasicBlock::getFirstNonPhi() { 221 iterator It = begin(); 222 while (It != end() && It->isPhi()) 223 It++; 224 return It; 225 } 226 227 Value *VPTransformState::get(VPValue *Def, const VPIteration &Instance) { 228 if (!Def->getDef()) 229 return Def->getLiveInIRValue(); 230 231 if (hasScalarValue(Def, Instance)) { 232 return Data 233 .PerPartScalars[Def][Instance.Part][Instance.Lane.mapToCacheIndex(VF)]; 234 } 235 236 assert(hasVectorValue(Def, Instance.Part)); 237 auto *VecPart = Data.PerPartOutput[Def][Instance.Part]; 238 if (!VecPart->getType()->isVectorTy()) { 239 assert(Instance.Lane.isFirstLane() && "cannot get lane > 0 for scalar"); 240 return VecPart; 241 } 242 // TODO: Cache created scalar values. 243 Value *Lane = Instance.Lane.getAsRuntimeExpr(Builder, VF); 244 auto *Extract = Builder.CreateExtractElement(VecPart, Lane); 245 // set(Def, Extract, Instance); 246 return Extract; 247 } 248 249 BasicBlock * 250 VPBasicBlock::createEmptyBasicBlock(VPTransformState::CFGState &CFG) { 251 // BB stands for IR BasicBlocks. VPBB stands for VPlan VPBasicBlocks. 252 // Pred stands for Predessor. Prev stands for Previous - last visited/created. 253 BasicBlock *PrevBB = CFG.PrevBB; 254 BasicBlock *NewBB = BasicBlock::Create(PrevBB->getContext(), getName(), 255 PrevBB->getParent(), CFG.LastBB); 256 LLVM_DEBUG(dbgs() << "LV: created " << NewBB->getName() << '\n'); 257 258 // Hook up the new basic block to its predecessors. 259 for (VPBlockBase *PredVPBlock : getHierarchicalPredecessors()) { 260 VPBasicBlock *PredVPBB = PredVPBlock->getExitBasicBlock(); 261 auto &PredVPSuccessors = PredVPBB->getSuccessors(); 262 BasicBlock *PredBB = CFG.VPBB2IRBB[PredVPBB]; 263 264 // In outer loop vectorization scenario, the predecessor BBlock may not yet 265 // be visited(backedge). Mark the VPBasicBlock for fixup at the end of 266 // vectorization. We do not encounter this case in inner loop vectorization 267 // as we start out by building a loop skeleton with the vector loop header 268 // and latch blocks. As a result, we never enter this function for the 269 // header block in the non VPlan-native path. 270 if (!PredBB) { 271 assert(EnableVPlanNativePath && 272 "Unexpected null predecessor in non VPlan-native path"); 273 CFG.VPBBsToFix.push_back(PredVPBB); 274 continue; 275 } 276 277 assert(PredBB && "Predecessor basic-block not found building successor."); 278 auto *PredBBTerminator = PredBB->getTerminator(); 279 LLVM_DEBUG(dbgs() << "LV: draw edge from" << PredBB->getName() << '\n'); 280 if (isa<UnreachableInst>(PredBBTerminator)) { 281 assert(PredVPSuccessors.size() == 1 && 282 "Predecessor ending w/o branch must have single successor."); 283 PredBBTerminator->eraseFromParent(); 284 BranchInst::Create(NewBB, PredBB); 285 } else { 286 assert(PredVPSuccessors.size() == 2 && 287 "Predecessor ending with branch must have two successors."); 288 unsigned idx = PredVPSuccessors.front() == this ? 0 : 1; 289 assert(!PredBBTerminator->getSuccessor(idx) && 290 "Trying to reset an existing successor block."); 291 PredBBTerminator->setSuccessor(idx, NewBB); 292 } 293 } 294 return NewBB; 295 } 296 297 void VPBasicBlock::execute(VPTransformState *State) { 298 bool Replica = State->Instance && !State->Instance->isFirstIteration(); 299 VPBasicBlock *PrevVPBB = State->CFG.PrevVPBB; 300 VPBlockBase *SingleHPred = nullptr; 301 BasicBlock *NewBB = State->CFG.PrevBB; // Reuse it if possible. 302 303 // 1. Create an IR basic block, or reuse the last one if possible. 304 // The last IR basic block is reused, as an optimization, in three cases: 305 // A. the first VPBB reuses the loop header BB - when PrevVPBB is null; 306 // B. when the current VPBB has a single (hierarchical) predecessor which 307 // is PrevVPBB and the latter has a single (hierarchical) successor; and 308 // C. when the current VPBB is an entry of a region replica - where PrevVPBB 309 // is the exit of this region from a previous instance, or the predecessor 310 // of this region. 311 if (PrevVPBB && /* A */ 312 !((SingleHPred = getSingleHierarchicalPredecessor()) && 313 SingleHPred->getExitBasicBlock() == PrevVPBB && 314 PrevVPBB->getSingleHierarchicalSuccessor()) && /* B */ 315 !(Replica && getPredecessors().empty())) { /* C */ 316 NewBB = createEmptyBasicBlock(State->CFG); 317 State->Builder.SetInsertPoint(NewBB); 318 // Temporarily terminate with unreachable until CFG is rewired. 319 UnreachableInst *Terminator = State->Builder.CreateUnreachable(); 320 State->Builder.SetInsertPoint(Terminator); 321 // Register NewBB in its loop. In innermost loops its the same for all BB's. 322 Loop *L = State->LI->getLoopFor(State->CFG.LastBB); 323 L->addBasicBlockToLoop(NewBB, *State->LI); 324 State->CFG.PrevBB = NewBB; 325 } 326 327 // 2. Fill the IR basic block with IR instructions. 328 LLVM_DEBUG(dbgs() << "LV: vectorizing VPBB:" << getName() 329 << " in BB:" << NewBB->getName() << '\n'); 330 331 State->CFG.VPBB2IRBB[this] = NewBB; 332 State->CFG.PrevVPBB = this; 333 334 for (VPRecipeBase &Recipe : Recipes) 335 Recipe.execute(*State); 336 337 VPValue *CBV; 338 if (EnableVPlanNativePath && (CBV = getCondBit())) { 339 assert(CBV->getUnderlyingValue() && 340 "Unexpected null underlying value for condition bit"); 341 342 // Condition bit value in a VPBasicBlock is used as the branch selector. In 343 // the VPlan-native path case, since all branches are uniform we generate a 344 // branch instruction using the condition value from vector lane 0 and dummy 345 // successors. The successors are fixed later when the successor blocks are 346 // visited. 347 Value *NewCond = State->get(CBV, {0, 0}); 348 349 // Replace the temporary unreachable terminator with the new conditional 350 // branch. 351 auto *CurrentTerminator = NewBB->getTerminator(); 352 assert(isa<UnreachableInst>(CurrentTerminator) && 353 "Expected to replace unreachable terminator with conditional " 354 "branch."); 355 auto *CondBr = BranchInst::Create(NewBB, nullptr, NewCond); 356 CondBr->setSuccessor(0, nullptr); 357 ReplaceInstWithInst(CurrentTerminator, CondBr); 358 } 359 360 LLVM_DEBUG(dbgs() << "LV: filled BB:" << *NewBB); 361 } 362 363 void VPBasicBlock::dropAllReferences(VPValue *NewValue) { 364 for (VPRecipeBase &R : Recipes) { 365 for (auto *Def : R.definedValues()) 366 Def->replaceAllUsesWith(NewValue); 367 368 for (unsigned I = 0, E = R.getNumOperands(); I != E; I++) 369 R.setOperand(I, NewValue); 370 } 371 } 372 373 VPBasicBlock *VPBasicBlock::splitAt(iterator SplitAt) { 374 assert((SplitAt == end() || SplitAt->getParent() == this) && 375 "can only split at a position in the same block"); 376 377 SmallVector<VPBlockBase *, 2> Succs(successors()); 378 // First, disconnect the current block from its successors. 379 for (VPBlockBase *Succ : Succs) 380 VPBlockUtils::disconnectBlocks(this, Succ); 381 382 // Create new empty block after the block to split. 383 auto *SplitBlock = new VPBasicBlock(getName() + ".split"); 384 VPBlockUtils::insertBlockAfter(SplitBlock, this); 385 386 // Add successors for block to split to new block. 387 for (VPBlockBase *Succ : Succs) 388 VPBlockUtils::connectBlocks(SplitBlock, Succ); 389 390 // Finally, move the recipes starting at SplitAt to new block. 391 for (VPRecipeBase &ToMove : 392 make_early_inc_range(make_range(SplitAt, this->end()))) 393 ToMove.moveBefore(*SplitBlock, SplitBlock->end()); 394 395 return SplitBlock; 396 } 397 398 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 399 void VPBlockBase::printSuccessors(raw_ostream &O, const Twine &Indent) const { 400 if (getSuccessors().empty()) { 401 O << Indent << "No successors\n"; 402 } else { 403 O << Indent << "Successor(s): "; 404 ListSeparator LS; 405 for (auto *Succ : getSuccessors()) 406 O << LS << Succ->getName(); 407 O << '\n'; 408 } 409 } 410 411 void VPBasicBlock::print(raw_ostream &O, const Twine &Indent, 412 VPSlotTracker &SlotTracker) const { 413 O << Indent << getName() << ":\n"; 414 if (const VPValue *Pred = getPredicate()) { 415 O << Indent << "BlockPredicate:"; 416 Pred->printAsOperand(O, SlotTracker); 417 if (const auto *PredInst = dyn_cast<VPInstruction>(Pred)) 418 O << " (" << PredInst->getParent()->getName() << ")"; 419 O << '\n'; 420 } 421 422 auto RecipeIndent = Indent + " "; 423 for (const VPRecipeBase &Recipe : *this) { 424 Recipe.print(O, RecipeIndent, SlotTracker); 425 O << '\n'; 426 } 427 428 printSuccessors(O, Indent); 429 430 if (const VPValue *CBV = getCondBit()) { 431 O << Indent << "CondBit: "; 432 CBV->printAsOperand(O, SlotTracker); 433 if (const auto *CBI = dyn_cast<VPInstruction>(CBV)) 434 O << " (" << CBI->getParent()->getName() << ")"; 435 O << '\n'; 436 } 437 } 438 #endif 439 440 void VPRegionBlock::dropAllReferences(VPValue *NewValue) { 441 for (VPBlockBase *Block : depth_first(Entry)) 442 // Drop all references in VPBasicBlocks and replace all uses with 443 // DummyValue. 444 Block->dropAllReferences(NewValue); 445 } 446 447 void VPRegionBlock::execute(VPTransformState *State) { 448 ReversePostOrderTraversal<VPBlockBase *> RPOT(Entry); 449 450 if (!isReplicator()) { 451 // Visit the VPBlocks connected to "this", starting from it. 452 for (VPBlockBase *Block : RPOT) { 453 if (EnableVPlanNativePath) { 454 // The inner loop vectorization path does not represent loop preheader 455 // and exit blocks as part of the VPlan. In the VPlan-native path, skip 456 // vectorizing loop preheader block. In future, we may replace this 457 // check with the check for loop preheader. 458 if (Block->getNumPredecessors() == 0) 459 continue; 460 461 // Skip vectorizing loop exit block. In future, we may replace this 462 // check with the check for loop exit. 463 if (Block->getNumSuccessors() == 0) 464 continue; 465 } 466 467 LLVM_DEBUG(dbgs() << "LV: VPBlock in RPO " << Block->getName() << '\n'); 468 Block->execute(State); 469 } 470 return; 471 } 472 473 assert(!State->Instance && "Replicating a Region with non-null instance."); 474 475 // Enter replicating mode. 476 State->Instance = VPIteration(0, 0); 477 478 for (unsigned Part = 0, UF = State->UF; Part < UF; ++Part) { 479 State->Instance->Part = Part; 480 assert(!State->VF.isScalable() && "VF is assumed to be non scalable."); 481 for (unsigned Lane = 0, VF = State->VF.getKnownMinValue(); Lane < VF; 482 ++Lane) { 483 State->Instance->Lane = VPLane(Lane, VPLane::Kind::First); 484 // Visit the VPBlocks connected to \p this, starting from it. 485 for (VPBlockBase *Block : RPOT) { 486 LLVM_DEBUG(dbgs() << "LV: VPBlock in RPO " << Block->getName() << '\n'); 487 Block->execute(State); 488 } 489 } 490 } 491 492 // Exit replicating mode. 493 State->Instance.reset(); 494 } 495 496 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 497 void VPRegionBlock::print(raw_ostream &O, const Twine &Indent, 498 VPSlotTracker &SlotTracker) const { 499 O << Indent << (isReplicator() ? "<xVFxUF> " : "<x1> ") << getName() << ": {"; 500 auto NewIndent = Indent + " "; 501 for (auto *BlockBase : depth_first(Entry)) { 502 O << '\n'; 503 BlockBase->print(O, NewIndent, SlotTracker); 504 } 505 O << Indent << "}\n"; 506 507 printSuccessors(O, Indent); 508 } 509 #endif 510 511 bool VPRecipeBase::mayWriteToMemory() const { 512 switch (getVPDefID()) { 513 case VPWidenMemoryInstructionSC: { 514 return cast<VPWidenMemoryInstructionRecipe>(this)->isStore(); 515 } 516 case VPReplicateSC: 517 case VPWidenCallSC: 518 return cast<Instruction>(getVPSingleValue()->getUnderlyingValue()) 519 ->mayWriteToMemory(); 520 case VPBranchOnMaskSC: 521 return false; 522 case VPWidenIntOrFpInductionSC: 523 case VPWidenCanonicalIVSC: 524 case VPWidenPHISC: 525 case VPBlendSC: 526 case VPWidenSC: 527 case VPWidenGEPSC: 528 case VPReductionSC: 529 case VPWidenSelectSC: { 530 const Instruction *I = 531 dyn_cast_or_null<Instruction>(getVPSingleValue()->getUnderlyingValue()); 532 (void)I; 533 assert((!I || !I->mayWriteToMemory()) && 534 "underlying instruction may write to memory"); 535 return false; 536 } 537 default: 538 return true; 539 } 540 } 541 542 bool VPRecipeBase::mayReadFromMemory() const { 543 switch (getVPDefID()) { 544 case VPWidenMemoryInstructionSC: { 545 return !cast<VPWidenMemoryInstructionRecipe>(this)->isStore(); 546 } 547 case VPReplicateSC: 548 case VPWidenCallSC: 549 return cast<Instruction>(getVPSingleValue()->getUnderlyingValue()) 550 ->mayReadFromMemory(); 551 case VPBranchOnMaskSC: 552 return false; 553 case VPWidenIntOrFpInductionSC: 554 case VPWidenCanonicalIVSC: 555 case VPWidenPHISC: 556 case VPBlendSC: 557 case VPWidenSC: 558 case VPWidenGEPSC: 559 case VPReductionSC: 560 case VPWidenSelectSC: { 561 const Instruction *I = 562 dyn_cast_or_null<Instruction>(getVPSingleValue()->getUnderlyingValue()); 563 (void)I; 564 assert((!I || !I->mayReadFromMemory()) && 565 "underlying instruction may read from memory"); 566 return false; 567 } 568 default: 569 return true; 570 } 571 } 572 573 bool VPRecipeBase::mayHaveSideEffects() const { 574 switch (getVPDefID()) { 575 case VPBranchOnMaskSC: 576 return false; 577 case VPWidenIntOrFpInductionSC: 578 case VPWidenCanonicalIVSC: 579 case VPWidenPHISC: 580 case VPBlendSC: 581 case VPWidenSC: 582 case VPWidenGEPSC: 583 case VPReductionSC: 584 case VPWidenSelectSC: { 585 const Instruction *I = 586 dyn_cast_or_null<Instruction>(getVPSingleValue()->getUnderlyingValue()); 587 (void)I; 588 assert((!I || !I->mayHaveSideEffects()) && 589 "underlying instruction has side-effects"); 590 return false; 591 } 592 case VPReplicateSC: { 593 auto *R = cast<VPReplicateRecipe>(this); 594 return R->getUnderlyingInstr()->mayHaveSideEffects(); 595 } 596 default: 597 return true; 598 } 599 } 600 601 void VPRecipeBase::insertBefore(VPRecipeBase *InsertPos) { 602 assert(!Parent && "Recipe already in some VPBasicBlock"); 603 assert(InsertPos->getParent() && 604 "Insertion position not in any VPBasicBlock"); 605 Parent = InsertPos->getParent(); 606 Parent->getRecipeList().insert(InsertPos->getIterator(), this); 607 } 608 609 void VPRecipeBase::insertAfter(VPRecipeBase *InsertPos) { 610 assert(!Parent && "Recipe already in some VPBasicBlock"); 611 assert(InsertPos->getParent() && 612 "Insertion position not in any VPBasicBlock"); 613 Parent = InsertPos->getParent(); 614 Parent->getRecipeList().insertAfter(InsertPos->getIterator(), this); 615 } 616 617 void VPRecipeBase::removeFromParent() { 618 assert(getParent() && "Recipe not in any VPBasicBlock"); 619 getParent()->getRecipeList().remove(getIterator()); 620 Parent = nullptr; 621 } 622 623 iplist<VPRecipeBase>::iterator VPRecipeBase::eraseFromParent() { 624 assert(getParent() && "Recipe not in any VPBasicBlock"); 625 return getParent()->getRecipeList().erase(getIterator()); 626 } 627 628 void VPRecipeBase::moveAfter(VPRecipeBase *InsertPos) { 629 removeFromParent(); 630 insertAfter(InsertPos); 631 } 632 633 void VPRecipeBase::moveBefore(VPBasicBlock &BB, 634 iplist<VPRecipeBase>::iterator I) { 635 assert(I == BB.end() || I->getParent() == &BB); 636 removeFromParent(); 637 Parent = &BB; 638 BB.getRecipeList().insert(I, this); 639 } 640 641 void VPInstruction::generateInstruction(VPTransformState &State, 642 unsigned Part) { 643 IRBuilder<> &Builder = State.Builder; 644 Builder.SetCurrentDebugLocation(DL); 645 646 if (Instruction::isBinaryOp(getOpcode())) { 647 Value *A = State.get(getOperand(0), Part); 648 Value *B = State.get(getOperand(1), Part); 649 Value *V = Builder.CreateBinOp((Instruction::BinaryOps)getOpcode(), A, B); 650 State.set(this, V, Part); 651 return; 652 } 653 654 switch (getOpcode()) { 655 case VPInstruction::Not: { 656 Value *A = State.get(getOperand(0), Part); 657 Value *V = Builder.CreateNot(A); 658 State.set(this, V, Part); 659 break; 660 } 661 case VPInstruction::ICmpULE: { 662 Value *IV = State.get(getOperand(0), Part); 663 Value *TC = State.get(getOperand(1), Part); 664 Value *V = Builder.CreateICmpULE(IV, TC); 665 State.set(this, V, Part); 666 break; 667 } 668 case Instruction::Select: { 669 Value *Cond = State.get(getOperand(0), Part); 670 Value *Op1 = State.get(getOperand(1), Part); 671 Value *Op2 = State.get(getOperand(2), Part); 672 Value *V = Builder.CreateSelect(Cond, Op1, Op2); 673 State.set(this, V, Part); 674 break; 675 } 676 case VPInstruction::ActiveLaneMask: { 677 // Get first lane of vector induction variable. 678 Value *VIVElem0 = State.get(getOperand(0), VPIteration(Part, 0)); 679 // Get the original loop tripcount. 680 Value *ScalarTC = State.get(getOperand(1), Part); 681 682 auto *Int1Ty = Type::getInt1Ty(Builder.getContext()); 683 auto *PredTy = VectorType::get(Int1Ty, State.VF); 684 Instruction *Call = Builder.CreateIntrinsic( 685 Intrinsic::get_active_lane_mask, {PredTy, ScalarTC->getType()}, 686 {VIVElem0, ScalarTC}, nullptr, "active.lane.mask"); 687 State.set(this, Call, Part); 688 break; 689 } 690 case VPInstruction::FirstOrderRecurrenceSplice: { 691 // Generate code to combine the previous and current values in vector v3. 692 // 693 // vector.ph: 694 // v_init = vector(..., ..., ..., a[-1]) 695 // br vector.body 696 // 697 // vector.body 698 // i = phi [0, vector.ph], [i+4, vector.body] 699 // v1 = phi [v_init, vector.ph], [v2, vector.body] 700 // v2 = a[i, i+1, i+2, i+3]; 701 // v3 = vector(v1(3), v2(0, 1, 2)) 702 703 // For the first part, use the recurrence phi (v1), otherwise v2. 704 auto *V1 = State.get(getOperand(0), 0); 705 Value *PartMinus1 = Part == 0 ? V1 : State.get(getOperand(1), Part - 1); 706 if (!PartMinus1->getType()->isVectorTy()) { 707 State.set(this, PartMinus1, Part); 708 } else { 709 Value *V2 = State.get(getOperand(1), Part); 710 State.set(this, Builder.CreateVectorSplice(PartMinus1, V2, -1), Part); 711 } 712 break; 713 } 714 715 case VPInstruction::CanonicalIVIncrement: 716 case VPInstruction::CanonicalIVIncrementNUW: { 717 Value *Next = nullptr; 718 if (Part == 0) { 719 bool IsNUW = getOpcode() == VPInstruction::CanonicalIVIncrementNUW; 720 auto *Phi = State.get(getOperand(0), 0); 721 // The loop step is equal to the vectorization factor (num of SIMD 722 // elements) times the unroll factor (num of SIMD instructions). 723 Value *Step = 724 createStepForVF(Builder, Phi->getType(), State.VF, State.UF); 725 Next = Builder.CreateAdd(Phi, Step, "index.next", IsNUW, false); 726 } else { 727 Next = State.get(this, 0); 728 } 729 730 State.set(this, Next, Part); 731 break; 732 } 733 case VPInstruction::BranchOnCount: { 734 if (Part != 0) 735 break; 736 // First create the compare. 737 Value *IV = State.get(getOperand(0), Part); 738 Value *TC = State.get(getOperand(1), Part); 739 Value *Cond = Builder.CreateICmpEQ(IV, TC); 740 741 // Now create the branch. 742 auto *Plan = getParent()->getPlan(); 743 VPRegionBlock *TopRegion = Plan->getVectorLoopRegion(); 744 VPBasicBlock *Header = TopRegion->getEntry()->getEntryBasicBlock(); 745 if (Header->empty()) { 746 assert(EnableVPlanNativePath && 747 "empty entry block only expected in VPlanNativePath"); 748 Header = cast<VPBasicBlock>(Header->getSingleSuccessor()); 749 } 750 // TODO: Once the exit block is modeled in VPlan, use it instead of going 751 // through State.CFG.LastBB. 752 BasicBlock *Exit = 753 cast<BranchInst>(State.CFG.LastBB->getTerminator())->getSuccessor(0); 754 755 Builder.CreateCondBr(Cond, Exit, State.CFG.VPBB2IRBB[Header]); 756 Builder.GetInsertBlock()->getTerminator()->eraseFromParent(); 757 break; 758 } 759 default: 760 llvm_unreachable("Unsupported opcode for instruction"); 761 } 762 } 763 764 void VPInstruction::execute(VPTransformState &State) { 765 assert(!State.Instance && "VPInstruction executing an Instance"); 766 IRBuilderBase::FastMathFlagGuard FMFGuard(State.Builder); 767 State.Builder.setFastMathFlags(FMF); 768 for (unsigned Part = 0; Part < State.UF; ++Part) 769 generateInstruction(State, Part); 770 } 771 772 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 773 void VPInstruction::dump() const { 774 VPSlotTracker SlotTracker(getParent()->getPlan()); 775 print(dbgs(), "", SlotTracker); 776 } 777 778 void VPInstruction::print(raw_ostream &O, const Twine &Indent, 779 VPSlotTracker &SlotTracker) const { 780 O << Indent << "EMIT "; 781 782 if (hasResult()) { 783 printAsOperand(O, SlotTracker); 784 O << " = "; 785 } 786 787 switch (getOpcode()) { 788 case VPInstruction::Not: 789 O << "not"; 790 break; 791 case VPInstruction::ICmpULE: 792 O << "icmp ule"; 793 break; 794 case VPInstruction::SLPLoad: 795 O << "combined load"; 796 break; 797 case VPInstruction::SLPStore: 798 O << "combined store"; 799 break; 800 case VPInstruction::ActiveLaneMask: 801 O << "active lane mask"; 802 break; 803 case VPInstruction::FirstOrderRecurrenceSplice: 804 O << "first-order splice"; 805 break; 806 case VPInstruction::CanonicalIVIncrement: 807 O << "VF * UF + "; 808 break; 809 case VPInstruction::CanonicalIVIncrementNUW: 810 O << "VF * UF +(nuw) "; 811 break; 812 case VPInstruction::BranchOnCount: 813 O << "branch-on-count "; 814 break; 815 default: 816 O << Instruction::getOpcodeName(getOpcode()); 817 } 818 819 O << FMF; 820 821 for (const VPValue *Operand : operands()) { 822 O << " "; 823 Operand->printAsOperand(O, SlotTracker); 824 } 825 826 if (DL) { 827 O << ", !dbg "; 828 DL.print(O); 829 } 830 } 831 #endif 832 833 void VPInstruction::setFastMathFlags(FastMathFlags FMFNew) { 834 // Make sure the VPInstruction is a floating-point operation. 835 assert((Opcode == Instruction::FAdd || Opcode == Instruction::FMul || 836 Opcode == Instruction::FNeg || Opcode == Instruction::FSub || 837 Opcode == Instruction::FDiv || Opcode == Instruction::FRem || 838 Opcode == Instruction::FCmp) && 839 "this op can't take fast-math flags"); 840 FMF = FMFNew; 841 } 842 843 void VPlan::prepareToExecute(Value *TripCountV, Value *VectorTripCountV, 844 Value *CanonicalIVStartValue, 845 VPTransformState &State) { 846 // Check if the trip count is needed, and if so build it. 847 if (TripCount && TripCount->getNumUsers()) { 848 for (unsigned Part = 0, UF = State.UF; Part < UF; ++Part) 849 State.set(TripCount, TripCountV, Part); 850 } 851 852 // Check if the backedge taken count is needed, and if so build it. 853 if (BackedgeTakenCount && BackedgeTakenCount->getNumUsers()) { 854 IRBuilder<> Builder(State.CFG.PrevBB->getTerminator()); 855 auto *TCMO = Builder.CreateSub(TripCountV, 856 ConstantInt::get(TripCountV->getType(), 1), 857 "trip.count.minus.1"); 858 auto VF = State.VF; 859 Value *VTCMO = 860 VF.isScalar() ? TCMO : Builder.CreateVectorSplat(VF, TCMO, "broadcast"); 861 for (unsigned Part = 0, UF = State.UF; Part < UF; ++Part) 862 State.set(BackedgeTakenCount, VTCMO, Part); 863 } 864 865 for (unsigned Part = 0, UF = State.UF; Part < UF; ++Part) 866 State.set(&VectorTripCount, VectorTripCountV, Part); 867 868 // When vectorizing the epilogue loop, the canonical induction start value 869 // needs to be changed from zero to the value after the main vector loop. 870 if (CanonicalIVStartValue) { 871 VPValue *VPV = new VPValue(CanonicalIVStartValue); 872 addExternalDef(VPV); 873 auto *IV = getCanonicalIV(); 874 assert(all_of(IV->users(), 875 [](const VPUser *U) { 876 auto *VPI = cast<VPInstruction>(U); 877 return VPI->getOpcode() == 878 VPInstruction::CanonicalIVIncrement || 879 VPI->getOpcode() == 880 VPInstruction::CanonicalIVIncrementNUW; 881 }) && 882 "the canonical IV should only be used by its increments when " 883 "resetting the start value"); 884 IV->setOperand(0, VPV); 885 } 886 } 887 888 /// Generate the code inside the body of the vectorized loop. Assumes a single 889 /// LoopVectorBody basic-block was created for this. Introduce additional 890 /// basic-blocks as needed, and fill them all. 891 void VPlan::execute(VPTransformState *State) { 892 // 0. Set the reverse mapping from VPValues to Values for code generation. 893 for (auto &Entry : Value2VPValue) 894 State->VPValue2Value[Entry.second] = Entry.first; 895 896 BasicBlock *VectorPreHeaderBB = State->CFG.PrevBB; 897 State->CFG.VectorPreHeader = VectorPreHeaderBB; 898 BasicBlock *VectorHeaderBB = VectorPreHeaderBB->getSingleSuccessor(); 899 assert(VectorHeaderBB && "Loop preheader does not have a single successor."); 900 901 // 1. Make room to generate basic-blocks inside loop body if needed. 902 BasicBlock *VectorLatchBB = VectorHeaderBB->splitBasicBlock( 903 VectorHeaderBB->getFirstInsertionPt(), "vector.body.latch"); 904 Loop *L = State->LI->getLoopFor(VectorHeaderBB); 905 L->addBasicBlockToLoop(VectorLatchBB, *State->LI); 906 // Remove the edge between Header and Latch to allow other connections. 907 // Temporarily terminate with unreachable until CFG is rewired. 908 // Note: this asserts the generated code's assumption that 909 // getFirstInsertionPt() can be dereferenced into an Instruction. 910 VectorHeaderBB->getTerminator()->eraseFromParent(); 911 State->Builder.SetInsertPoint(VectorHeaderBB); 912 UnreachableInst *Terminator = State->Builder.CreateUnreachable(); 913 State->Builder.SetInsertPoint(Terminator); 914 915 // 2. Generate code in loop body. 916 State->CFG.PrevVPBB = nullptr; 917 State->CFG.PrevBB = VectorHeaderBB; 918 State->CFG.LastBB = VectorLatchBB; 919 920 for (VPBlockBase *Block : depth_first(Entry)) 921 Block->execute(State); 922 923 // Setup branch terminator successors for VPBBs in VPBBsToFix based on 924 // VPBB's successors. 925 for (auto VPBB : State->CFG.VPBBsToFix) { 926 assert(EnableVPlanNativePath && 927 "Unexpected VPBBsToFix in non VPlan-native path"); 928 BasicBlock *BB = State->CFG.VPBB2IRBB[VPBB]; 929 assert(BB && "Unexpected null basic block for VPBB"); 930 931 unsigned Idx = 0; 932 auto *BBTerminator = BB->getTerminator(); 933 934 for (VPBlockBase *SuccVPBlock : VPBB->getHierarchicalSuccessors()) { 935 VPBasicBlock *SuccVPBB = SuccVPBlock->getEntryBasicBlock(); 936 BBTerminator->setSuccessor(Idx, State->CFG.VPBB2IRBB[SuccVPBB]); 937 ++Idx; 938 } 939 } 940 941 // 3. Merge the temporary latch created with the last basic-block filled. 942 BasicBlock *LastBB = State->CFG.PrevBB; 943 assert(isa<BranchInst>(LastBB->getTerminator()) && 944 "Expected VPlan CFG to terminate with branch"); 945 946 // Move both the branch and check from LastBB to VectorLatchBB. 947 auto *LastBranch = cast<BranchInst>(LastBB->getTerminator()); 948 LastBranch->moveBefore(VectorLatchBB->getTerminator()); 949 VectorLatchBB->getTerminator()->eraseFromParent(); 950 // Move condition so it is guaranteed to be next to branch. This is only done 951 // to avoid excessive test updates. 952 // TODO: Remove special handling once the increments for all inductions are 953 // modeled explicitly in VPlan. 954 cast<Instruction>(LastBranch->getCondition())->moveBefore(LastBranch); 955 // Connect LastBB to VectorLatchBB to facilitate their merge. 956 BranchInst::Create(VectorLatchBB, LastBB); 957 958 // Merge LastBB with Latch. 959 bool Merged = MergeBlockIntoPredecessor(VectorLatchBB, nullptr, State->LI); 960 (void)Merged; 961 assert(Merged && "Could not merge last basic block with latch."); 962 VectorLatchBB = LastBB; 963 964 // Fix the latch value of canonical, reduction and first-order recurrences 965 // phis in the vector loop. 966 VPBasicBlock *Header = Entry->getEntryBasicBlock(); 967 if (Header->empty()) { 968 assert(EnableVPlanNativePath); 969 Header = cast<VPBasicBlock>(Header->getSingleSuccessor()); 970 } 971 for (VPRecipeBase &R : Header->phis()) { 972 // Skip phi-like recipes that generate their backedege values themselves. 973 // TODO: Model their backedge values explicitly. 974 if (isa<VPWidenIntOrFpInductionRecipe>(&R) || isa<VPWidenPHIRecipe>(&R)) 975 continue; 976 977 auto *PhiR = cast<VPHeaderPHIRecipe>(&R); 978 // For canonical IV, first-order recurrences and in-order reduction phis, 979 // only a single part is generated, which provides the last part from the 980 // previous iteration. For non-ordered reductions all UF parts are 981 // generated. 982 bool SinglePartNeeded = isa<VPCanonicalIVPHIRecipe>(PhiR) || 983 isa<VPFirstOrderRecurrencePHIRecipe>(PhiR) || 984 cast<VPReductionPHIRecipe>(PhiR)->isOrdered(); 985 unsigned LastPartForNewPhi = SinglePartNeeded ? 1 : State->UF; 986 987 for (unsigned Part = 0; Part < LastPartForNewPhi; ++Part) { 988 Value *Phi = State->get(PhiR, Part); 989 Value *Val = State->get(PhiR->getBackedgeValue(), 990 SinglePartNeeded ? State->UF - 1 : Part); 991 cast<PHINode>(Phi)->addIncoming(Val, VectorLatchBB); 992 } 993 } 994 995 // We do not attempt to preserve DT for outer loop vectorization currently. 996 if (!EnableVPlanNativePath) 997 updateDominatorTree(State->DT, VectorPreHeaderBB, VectorLatchBB, 998 L->getExitBlock()); 999 } 1000 1001 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1002 LLVM_DUMP_METHOD 1003 void VPlan::print(raw_ostream &O) const { 1004 VPSlotTracker SlotTracker(this); 1005 1006 O << "VPlan '" << Name << "' {"; 1007 1008 if (VectorTripCount.getNumUsers() > 0) { 1009 O << "\nLive-in "; 1010 VectorTripCount.printAsOperand(O, SlotTracker); 1011 O << " = vector-trip-count\n"; 1012 } 1013 1014 if (BackedgeTakenCount && BackedgeTakenCount->getNumUsers()) { 1015 O << "\nLive-in "; 1016 BackedgeTakenCount->printAsOperand(O, SlotTracker); 1017 O << " = backedge-taken count\n"; 1018 } 1019 1020 for (const VPBlockBase *Block : depth_first(getEntry())) { 1021 O << '\n'; 1022 Block->print(O, "", SlotTracker); 1023 } 1024 O << "}\n"; 1025 } 1026 1027 LLVM_DUMP_METHOD 1028 void VPlan::printDOT(raw_ostream &O) const { 1029 VPlanPrinter Printer(O, *this); 1030 Printer.dump(); 1031 } 1032 1033 LLVM_DUMP_METHOD 1034 void VPlan::dump() const { print(dbgs()); } 1035 #endif 1036 1037 void VPlan::updateDominatorTree(DominatorTree *DT, BasicBlock *LoopPreHeaderBB, 1038 BasicBlock *LoopLatchBB, 1039 BasicBlock *LoopExitBB) { 1040 BasicBlock *LoopHeaderBB = LoopPreHeaderBB->getSingleSuccessor(); 1041 assert(LoopHeaderBB && "Loop preheader does not have a single successor."); 1042 // The vector body may be more than a single basic-block by this point. 1043 // Update the dominator tree information inside the vector body by propagating 1044 // it from header to latch, expecting only triangular control-flow, if any. 1045 BasicBlock *PostDomSucc = nullptr; 1046 for (auto *BB = LoopHeaderBB; BB != LoopLatchBB; BB = PostDomSucc) { 1047 // Get the list of successors of this block. 1048 std::vector<BasicBlock *> Succs(succ_begin(BB), succ_end(BB)); 1049 assert(Succs.size() <= 2 && 1050 "Basic block in vector loop has more than 2 successors."); 1051 PostDomSucc = Succs[0]; 1052 if (Succs.size() == 1) { 1053 assert(PostDomSucc->getSinglePredecessor() && 1054 "PostDom successor has more than one predecessor."); 1055 DT->addNewBlock(PostDomSucc, BB); 1056 continue; 1057 } 1058 BasicBlock *InterimSucc = Succs[1]; 1059 if (PostDomSucc->getSingleSuccessor() == InterimSucc) { 1060 PostDomSucc = Succs[1]; 1061 InterimSucc = Succs[0]; 1062 } 1063 assert(InterimSucc->getSingleSuccessor() == PostDomSucc && 1064 "One successor of a basic block does not lead to the other."); 1065 assert(InterimSucc->getSinglePredecessor() && 1066 "Interim successor has more than one predecessor."); 1067 assert(PostDomSucc->hasNPredecessors(2) && 1068 "PostDom successor has more than two predecessors."); 1069 DT->addNewBlock(InterimSucc, BB); 1070 DT->addNewBlock(PostDomSucc, BB); 1071 } 1072 // Latch block is a new dominator for the loop exit. 1073 DT->changeImmediateDominator(LoopExitBB, LoopLatchBB); 1074 assert(DT->verify(DominatorTree::VerificationLevel::Fast)); 1075 } 1076 1077 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1078 Twine VPlanPrinter::getUID(const VPBlockBase *Block) { 1079 return (isa<VPRegionBlock>(Block) ? "cluster_N" : "N") + 1080 Twine(getOrCreateBID(Block)); 1081 } 1082 1083 Twine VPlanPrinter::getOrCreateName(const VPBlockBase *Block) { 1084 const std::string &Name = Block->getName(); 1085 if (!Name.empty()) 1086 return Name; 1087 return "VPB" + Twine(getOrCreateBID(Block)); 1088 } 1089 1090 void VPlanPrinter::dump() { 1091 Depth = 1; 1092 bumpIndent(0); 1093 OS << "digraph VPlan {\n"; 1094 OS << "graph [labelloc=t, fontsize=30; label=\"Vectorization Plan"; 1095 if (!Plan.getName().empty()) 1096 OS << "\\n" << DOT::EscapeString(Plan.getName()); 1097 if (Plan.BackedgeTakenCount) { 1098 OS << ", where:\\n"; 1099 Plan.BackedgeTakenCount->print(OS, SlotTracker); 1100 OS << " := BackedgeTakenCount"; 1101 } 1102 OS << "\"]\n"; 1103 OS << "node [shape=rect, fontname=Courier, fontsize=30]\n"; 1104 OS << "edge [fontname=Courier, fontsize=30]\n"; 1105 OS << "compound=true\n"; 1106 1107 for (const VPBlockBase *Block : depth_first(Plan.getEntry())) 1108 dumpBlock(Block); 1109 1110 OS << "}\n"; 1111 } 1112 1113 void VPlanPrinter::dumpBlock(const VPBlockBase *Block) { 1114 if (const VPBasicBlock *BasicBlock = dyn_cast<VPBasicBlock>(Block)) 1115 dumpBasicBlock(BasicBlock); 1116 else if (const VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block)) 1117 dumpRegion(Region); 1118 else 1119 llvm_unreachable("Unsupported kind of VPBlock."); 1120 } 1121 1122 void VPlanPrinter::drawEdge(const VPBlockBase *From, const VPBlockBase *To, 1123 bool Hidden, const Twine &Label) { 1124 // Due to "dot" we print an edge between two regions as an edge between the 1125 // exit basic block and the entry basic of the respective regions. 1126 const VPBlockBase *Tail = From->getExitBasicBlock(); 1127 const VPBlockBase *Head = To->getEntryBasicBlock(); 1128 OS << Indent << getUID(Tail) << " -> " << getUID(Head); 1129 OS << " [ label=\"" << Label << '\"'; 1130 if (Tail != From) 1131 OS << " ltail=" << getUID(From); 1132 if (Head != To) 1133 OS << " lhead=" << getUID(To); 1134 if (Hidden) 1135 OS << "; splines=none"; 1136 OS << "]\n"; 1137 } 1138 1139 void VPlanPrinter::dumpEdges(const VPBlockBase *Block) { 1140 auto &Successors = Block->getSuccessors(); 1141 if (Successors.size() == 1) 1142 drawEdge(Block, Successors.front(), false, ""); 1143 else if (Successors.size() == 2) { 1144 drawEdge(Block, Successors.front(), false, "T"); 1145 drawEdge(Block, Successors.back(), false, "F"); 1146 } else { 1147 unsigned SuccessorNumber = 0; 1148 for (auto *Successor : Successors) 1149 drawEdge(Block, Successor, false, Twine(SuccessorNumber++)); 1150 } 1151 } 1152 1153 void VPlanPrinter::dumpBasicBlock(const VPBasicBlock *BasicBlock) { 1154 // Implement dot-formatted dump by performing plain-text dump into the 1155 // temporary storage followed by some post-processing. 1156 OS << Indent << getUID(BasicBlock) << " [label =\n"; 1157 bumpIndent(1); 1158 std::string Str; 1159 raw_string_ostream SS(Str); 1160 // Use no indentation as we need to wrap the lines into quotes ourselves. 1161 BasicBlock->print(SS, "", SlotTracker); 1162 1163 // We need to process each line of the output separately, so split 1164 // single-string plain-text dump. 1165 SmallVector<StringRef, 0> Lines; 1166 StringRef(Str).rtrim('\n').split(Lines, "\n"); 1167 1168 auto EmitLine = [&](StringRef Line, StringRef Suffix) { 1169 OS << Indent << '"' << DOT::EscapeString(Line.str()) << "\\l\"" << Suffix; 1170 }; 1171 1172 // Don't need the "+" after the last line. 1173 for (auto Line : make_range(Lines.begin(), Lines.end() - 1)) 1174 EmitLine(Line, " +\n"); 1175 EmitLine(Lines.back(), "\n"); 1176 1177 bumpIndent(-1); 1178 OS << Indent << "]\n"; 1179 1180 dumpEdges(BasicBlock); 1181 } 1182 1183 void VPlanPrinter::dumpRegion(const VPRegionBlock *Region) { 1184 OS << Indent << "subgraph " << getUID(Region) << " {\n"; 1185 bumpIndent(1); 1186 OS << Indent << "fontname=Courier\n" 1187 << Indent << "label=\"" 1188 << DOT::EscapeString(Region->isReplicator() ? "<xVFxUF> " : "<x1> ") 1189 << DOT::EscapeString(Region->getName()) << "\"\n"; 1190 // Dump the blocks of the region. 1191 assert(Region->getEntry() && "Region contains no inner blocks."); 1192 for (const VPBlockBase *Block : depth_first(Region->getEntry())) 1193 dumpBlock(Block); 1194 bumpIndent(-1); 1195 OS << Indent << "}\n"; 1196 dumpEdges(Region); 1197 } 1198 1199 void VPlanIngredient::print(raw_ostream &O) const { 1200 if (auto *Inst = dyn_cast<Instruction>(V)) { 1201 if (!Inst->getType()->isVoidTy()) { 1202 Inst->printAsOperand(O, false); 1203 O << " = "; 1204 } 1205 O << Inst->getOpcodeName() << " "; 1206 unsigned E = Inst->getNumOperands(); 1207 if (E > 0) { 1208 Inst->getOperand(0)->printAsOperand(O, false); 1209 for (unsigned I = 1; I < E; ++I) 1210 Inst->getOperand(I)->printAsOperand(O << ", ", false); 1211 } 1212 } else // !Inst 1213 V->printAsOperand(O, false); 1214 } 1215 1216 void VPWidenCallRecipe::print(raw_ostream &O, const Twine &Indent, 1217 VPSlotTracker &SlotTracker) const { 1218 O << Indent << "WIDEN-CALL "; 1219 1220 auto *CI = cast<CallInst>(getUnderlyingInstr()); 1221 if (CI->getType()->isVoidTy()) 1222 O << "void "; 1223 else { 1224 printAsOperand(O, SlotTracker); 1225 O << " = "; 1226 } 1227 1228 O << "call @" << CI->getCalledFunction()->getName() << "("; 1229 printOperands(O, SlotTracker); 1230 O << ")"; 1231 } 1232 1233 void VPWidenSelectRecipe::print(raw_ostream &O, const Twine &Indent, 1234 VPSlotTracker &SlotTracker) const { 1235 O << Indent << "WIDEN-SELECT "; 1236 printAsOperand(O, SlotTracker); 1237 O << " = select "; 1238 getOperand(0)->printAsOperand(O, SlotTracker); 1239 O << ", "; 1240 getOperand(1)->printAsOperand(O, SlotTracker); 1241 O << ", "; 1242 getOperand(2)->printAsOperand(O, SlotTracker); 1243 O << (InvariantCond ? " (condition is loop invariant)" : ""); 1244 } 1245 1246 void VPWidenRecipe::print(raw_ostream &O, const Twine &Indent, 1247 VPSlotTracker &SlotTracker) const { 1248 O << Indent << "WIDEN "; 1249 printAsOperand(O, SlotTracker); 1250 O << " = " << getUnderlyingInstr()->getOpcodeName() << " "; 1251 printOperands(O, SlotTracker); 1252 } 1253 1254 void VPWidenIntOrFpInductionRecipe::print(raw_ostream &O, const Twine &Indent, 1255 VPSlotTracker &SlotTracker) const { 1256 O << Indent << "WIDEN-INDUCTION"; 1257 if (getTruncInst()) { 1258 O << "\\l\""; 1259 O << " +\n" << Indent << "\" " << VPlanIngredient(IV) << "\\l\""; 1260 O << " +\n" << Indent << "\" "; 1261 getVPValue(0)->printAsOperand(O, SlotTracker); 1262 } else 1263 O << " " << VPlanIngredient(IV); 1264 } 1265 #endif 1266 1267 bool VPWidenIntOrFpInductionRecipe::isCanonical() const { 1268 auto *StartC = dyn_cast<ConstantInt>(getStartValue()->getLiveInIRValue()); 1269 auto *StepC = dyn_cast<SCEVConstant>(getInductionDescriptor().getStep()); 1270 return StartC && StartC->isZero() && StepC && StepC->isOne(); 1271 } 1272 1273 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1274 void VPWidenGEPRecipe::print(raw_ostream &O, const Twine &Indent, 1275 VPSlotTracker &SlotTracker) const { 1276 O << Indent << "WIDEN-GEP "; 1277 O << (IsPtrLoopInvariant ? "Inv" : "Var"); 1278 size_t IndicesNumber = IsIndexLoopInvariant.size(); 1279 for (size_t I = 0; I < IndicesNumber; ++I) 1280 O << "[" << (IsIndexLoopInvariant[I] ? "Inv" : "Var") << "]"; 1281 1282 O << " "; 1283 printAsOperand(O, SlotTracker); 1284 O << " = getelementptr "; 1285 printOperands(O, SlotTracker); 1286 } 1287 1288 void VPWidenPHIRecipe::print(raw_ostream &O, const Twine &Indent, 1289 VPSlotTracker &SlotTracker) const { 1290 O << Indent << "WIDEN-PHI "; 1291 1292 auto *OriginalPhi = cast<PHINode>(getUnderlyingValue()); 1293 // Unless all incoming values are modeled in VPlan print the original PHI 1294 // directly. 1295 // TODO: Remove once all VPWidenPHIRecipe instances keep all relevant incoming 1296 // values as VPValues. 1297 if (getNumOperands() != OriginalPhi->getNumOperands()) { 1298 O << VPlanIngredient(OriginalPhi); 1299 return; 1300 } 1301 1302 printAsOperand(O, SlotTracker); 1303 O << " = phi "; 1304 printOperands(O, SlotTracker); 1305 } 1306 1307 void VPBlendRecipe::print(raw_ostream &O, const Twine &Indent, 1308 VPSlotTracker &SlotTracker) const { 1309 O << Indent << "BLEND "; 1310 Phi->printAsOperand(O, false); 1311 O << " ="; 1312 if (getNumIncomingValues() == 1) { 1313 // Not a User of any mask: not really blending, this is a 1314 // single-predecessor phi. 1315 O << " "; 1316 getIncomingValue(0)->printAsOperand(O, SlotTracker); 1317 } else { 1318 for (unsigned I = 0, E = getNumIncomingValues(); I < E; ++I) { 1319 O << " "; 1320 getIncomingValue(I)->printAsOperand(O, SlotTracker); 1321 O << "/"; 1322 getMask(I)->printAsOperand(O, SlotTracker); 1323 } 1324 } 1325 } 1326 1327 void VPReductionRecipe::print(raw_ostream &O, const Twine &Indent, 1328 VPSlotTracker &SlotTracker) const { 1329 O << Indent << "REDUCE "; 1330 printAsOperand(O, SlotTracker); 1331 O << " = "; 1332 getChainOp()->printAsOperand(O, SlotTracker); 1333 O << " +"; 1334 if (isa<FPMathOperator>(getUnderlyingInstr())) 1335 O << getUnderlyingInstr()->getFastMathFlags(); 1336 O << " reduce." << Instruction::getOpcodeName(RdxDesc->getOpcode()) << " ("; 1337 getVecOp()->printAsOperand(O, SlotTracker); 1338 if (getCondOp()) { 1339 O << ", "; 1340 getCondOp()->printAsOperand(O, SlotTracker); 1341 } 1342 O << ")"; 1343 } 1344 1345 void VPReplicateRecipe::print(raw_ostream &O, const Twine &Indent, 1346 VPSlotTracker &SlotTracker) const { 1347 O << Indent << (IsUniform ? "CLONE " : "REPLICATE "); 1348 1349 if (!getUnderlyingInstr()->getType()->isVoidTy()) { 1350 printAsOperand(O, SlotTracker); 1351 O << " = "; 1352 } 1353 O << Instruction::getOpcodeName(getUnderlyingInstr()->getOpcode()) << " "; 1354 printOperands(O, SlotTracker); 1355 1356 if (AlsoPack) 1357 O << " (S->V)"; 1358 } 1359 1360 void VPPredInstPHIRecipe::print(raw_ostream &O, const Twine &Indent, 1361 VPSlotTracker &SlotTracker) const { 1362 O << Indent << "PHI-PREDICATED-INSTRUCTION "; 1363 printAsOperand(O, SlotTracker); 1364 O << " = "; 1365 printOperands(O, SlotTracker); 1366 } 1367 1368 void VPWidenMemoryInstructionRecipe::print(raw_ostream &O, const Twine &Indent, 1369 VPSlotTracker &SlotTracker) const { 1370 O << Indent << "WIDEN "; 1371 1372 if (!isStore()) { 1373 printAsOperand(O, SlotTracker); 1374 O << " = "; 1375 } 1376 O << Instruction::getOpcodeName(Ingredient.getOpcode()) << " "; 1377 1378 printOperands(O, SlotTracker); 1379 } 1380 #endif 1381 1382 void VPCanonicalIVPHIRecipe::execute(VPTransformState &State) { 1383 Value *Start = getStartValue()->getLiveInIRValue(); 1384 PHINode *EntryPart = PHINode::Create( 1385 Start->getType(), 2, "index", &*State.CFG.PrevBB->getFirstInsertionPt()); 1386 EntryPart->addIncoming(Start, State.CFG.VectorPreHeader); 1387 EntryPart->setDebugLoc(DL); 1388 for (unsigned Part = 0, UF = State.UF; Part < UF; ++Part) 1389 State.set(this, EntryPart, Part); 1390 } 1391 1392 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1393 void VPCanonicalIVPHIRecipe::print(raw_ostream &O, const Twine &Indent, 1394 VPSlotTracker &SlotTracker) const { 1395 O << Indent << "EMIT "; 1396 printAsOperand(O, SlotTracker); 1397 O << " = CANONICAL-INDUCTION"; 1398 } 1399 #endif 1400 1401 void VPWidenCanonicalIVRecipe::execute(VPTransformState &State) { 1402 Value *CanonicalIV = State.get(getOperand(0), 0); 1403 Type *STy = CanonicalIV->getType(); 1404 IRBuilder<> Builder(State.CFG.PrevBB->getTerminator()); 1405 ElementCount VF = State.VF; 1406 Value *VStart = VF.isScalar() 1407 ? CanonicalIV 1408 : Builder.CreateVectorSplat(VF, CanonicalIV, "broadcast"); 1409 for (unsigned Part = 0, UF = State.UF; Part < UF; ++Part) { 1410 Value *VStep = createStepForVF(Builder, STy, VF, Part); 1411 if (VF.isVector()) { 1412 VStep = Builder.CreateVectorSplat(VF, VStep); 1413 VStep = Builder.CreateAdd(VStep, Builder.CreateStepVector(VStep->getType())); 1414 } 1415 Value *CanonicalVectorIV = Builder.CreateAdd(VStart, VStep, "vec.iv"); 1416 State.set(this, CanonicalVectorIV, Part); 1417 } 1418 } 1419 1420 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1421 void VPWidenCanonicalIVRecipe::print(raw_ostream &O, const Twine &Indent, 1422 VPSlotTracker &SlotTracker) const { 1423 O << Indent << "EMIT "; 1424 printAsOperand(O, SlotTracker); 1425 O << " = WIDEN-CANONICAL-INDUCTION "; 1426 printOperands(O, SlotTracker); 1427 } 1428 #endif 1429 1430 void VPFirstOrderRecurrencePHIRecipe::execute(VPTransformState &State) { 1431 auto &Builder = State.Builder; 1432 // Create a vector from the initial value. 1433 auto *VectorInit = getStartValue()->getLiveInIRValue(); 1434 1435 Type *VecTy = State.VF.isScalar() 1436 ? VectorInit->getType() 1437 : VectorType::get(VectorInit->getType(), State.VF); 1438 1439 if (State.VF.isVector()) { 1440 auto *IdxTy = Builder.getInt32Ty(); 1441 auto *One = ConstantInt::get(IdxTy, 1); 1442 IRBuilder<>::InsertPointGuard Guard(Builder); 1443 Builder.SetInsertPoint(State.CFG.VectorPreHeader->getTerminator()); 1444 auto *RuntimeVF = getRuntimeVF(Builder, IdxTy, State.VF); 1445 auto *LastIdx = Builder.CreateSub(RuntimeVF, One); 1446 VectorInit = Builder.CreateInsertElement( 1447 PoisonValue::get(VecTy), VectorInit, LastIdx, "vector.recur.init"); 1448 } 1449 1450 // Create a phi node for the new recurrence. 1451 PHINode *EntryPart = PHINode::Create( 1452 VecTy, 2, "vector.recur", &*State.CFG.PrevBB->getFirstInsertionPt()); 1453 EntryPart->addIncoming(VectorInit, State.CFG.VectorPreHeader); 1454 State.set(this, EntryPart, 0); 1455 } 1456 1457 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1458 void VPFirstOrderRecurrencePHIRecipe::print(raw_ostream &O, const Twine &Indent, 1459 VPSlotTracker &SlotTracker) const { 1460 O << Indent << "FIRST-ORDER-RECURRENCE-PHI "; 1461 printAsOperand(O, SlotTracker); 1462 O << " = phi "; 1463 printOperands(O, SlotTracker); 1464 } 1465 #endif 1466 1467 void VPReductionPHIRecipe::execute(VPTransformState &State) { 1468 PHINode *PN = cast<PHINode>(getUnderlyingValue()); 1469 auto &Builder = State.Builder; 1470 1471 // In order to support recurrences we need to be able to vectorize Phi nodes. 1472 // Phi nodes have cycles, so we need to vectorize them in two stages. This is 1473 // stage #1: We create a new vector PHI node with no incoming edges. We'll use 1474 // this value when we vectorize all of the instructions that use the PHI. 1475 bool ScalarPHI = State.VF.isScalar() || IsInLoop; 1476 Type *VecTy = 1477 ScalarPHI ? PN->getType() : VectorType::get(PN->getType(), State.VF); 1478 1479 BasicBlock *HeaderBB = State.CFG.PrevBB; 1480 assert(State.LI->getLoopFor(HeaderBB)->getHeader() == HeaderBB && 1481 "recipe must be in the vector loop header"); 1482 unsigned LastPartForNewPhi = isOrdered() ? 1 : State.UF; 1483 for (unsigned Part = 0; Part < LastPartForNewPhi; ++Part) { 1484 Value *EntryPart = 1485 PHINode::Create(VecTy, 2, "vec.phi", &*HeaderBB->getFirstInsertionPt()); 1486 State.set(this, EntryPart, Part); 1487 } 1488 1489 // Reductions do not have to start at zero. They can start with 1490 // any loop invariant values. 1491 VPValue *StartVPV = getStartValue(); 1492 Value *StartV = StartVPV->getLiveInIRValue(); 1493 1494 Value *Iden = nullptr; 1495 RecurKind RK = RdxDesc.getRecurrenceKind(); 1496 if (RecurrenceDescriptor::isMinMaxRecurrenceKind(RK) || 1497 RecurrenceDescriptor::isSelectCmpRecurrenceKind(RK)) { 1498 // MinMax reduction have the start value as their identify. 1499 if (ScalarPHI) { 1500 Iden = StartV; 1501 } else { 1502 IRBuilderBase::InsertPointGuard IPBuilder(Builder); 1503 Builder.SetInsertPoint(State.CFG.VectorPreHeader->getTerminator()); 1504 StartV = Iden = 1505 Builder.CreateVectorSplat(State.VF, StartV, "minmax.ident"); 1506 } 1507 } else { 1508 Iden = RdxDesc.getRecurrenceIdentity(RK, VecTy->getScalarType(), 1509 RdxDesc.getFastMathFlags()); 1510 1511 if (!ScalarPHI) { 1512 Iden = Builder.CreateVectorSplat(State.VF, Iden); 1513 IRBuilderBase::InsertPointGuard IPBuilder(Builder); 1514 Builder.SetInsertPoint(State.CFG.VectorPreHeader->getTerminator()); 1515 Constant *Zero = Builder.getInt32(0); 1516 StartV = Builder.CreateInsertElement(Iden, StartV, Zero); 1517 } 1518 } 1519 1520 for (unsigned Part = 0; Part < LastPartForNewPhi; ++Part) { 1521 Value *EntryPart = State.get(this, Part); 1522 // Make sure to add the reduction start value only to the 1523 // first unroll part. 1524 Value *StartVal = (Part == 0) ? StartV : Iden; 1525 cast<PHINode>(EntryPart)->addIncoming(StartVal, State.CFG.VectorPreHeader); 1526 } 1527 } 1528 1529 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1530 void VPReductionPHIRecipe::print(raw_ostream &O, const Twine &Indent, 1531 VPSlotTracker &SlotTracker) const { 1532 O << Indent << "WIDEN-REDUCTION-PHI "; 1533 1534 printAsOperand(O, SlotTracker); 1535 O << " = phi "; 1536 printOperands(O, SlotTracker); 1537 } 1538 #endif 1539 1540 template void DomTreeBuilder::Calculate<VPDominatorTree>(VPDominatorTree &DT); 1541 1542 void VPValue::replaceAllUsesWith(VPValue *New) { 1543 for (unsigned J = 0; J < getNumUsers();) { 1544 VPUser *User = Users[J]; 1545 unsigned NumUsers = getNumUsers(); 1546 for (unsigned I = 0, E = User->getNumOperands(); I < E; ++I) 1547 if (User->getOperand(I) == this) 1548 User->setOperand(I, New); 1549 // If a user got removed after updating the current user, the next user to 1550 // update will be moved to the current position, so we only need to 1551 // increment the index if the number of users did not change. 1552 if (NumUsers == getNumUsers()) 1553 J++; 1554 } 1555 } 1556 1557 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 1558 void VPValue::printAsOperand(raw_ostream &OS, VPSlotTracker &Tracker) const { 1559 if (const Value *UV = getUnderlyingValue()) { 1560 OS << "ir<"; 1561 UV->printAsOperand(OS, false); 1562 OS << ">"; 1563 return; 1564 } 1565 1566 unsigned Slot = Tracker.getSlot(this); 1567 if (Slot == unsigned(-1)) 1568 OS << "<badref>"; 1569 else 1570 OS << "vp<%" << Tracker.getSlot(this) << ">"; 1571 } 1572 1573 void VPUser::printOperands(raw_ostream &O, VPSlotTracker &SlotTracker) const { 1574 interleaveComma(operands(), O, [&O, &SlotTracker](VPValue *Op) { 1575 Op->printAsOperand(O, SlotTracker); 1576 }); 1577 } 1578 #endif 1579 1580 void VPInterleavedAccessInfo::visitRegion(VPRegionBlock *Region, 1581 Old2NewTy &Old2New, 1582 InterleavedAccessInfo &IAI) { 1583 ReversePostOrderTraversal<VPBlockBase *> RPOT(Region->getEntry()); 1584 for (VPBlockBase *Base : RPOT) { 1585 visitBlock(Base, Old2New, IAI); 1586 } 1587 } 1588 1589 void VPInterleavedAccessInfo::visitBlock(VPBlockBase *Block, Old2NewTy &Old2New, 1590 InterleavedAccessInfo &IAI) { 1591 if (VPBasicBlock *VPBB = dyn_cast<VPBasicBlock>(Block)) { 1592 for (VPRecipeBase &VPI : *VPBB) { 1593 if (isa<VPHeaderPHIRecipe>(&VPI)) 1594 continue; 1595 assert(isa<VPInstruction>(&VPI) && "Can only handle VPInstructions"); 1596 auto *VPInst = cast<VPInstruction>(&VPI); 1597 auto *Inst = cast<Instruction>(VPInst->getUnderlyingValue()); 1598 auto *IG = IAI.getInterleaveGroup(Inst); 1599 if (!IG) 1600 continue; 1601 1602 auto NewIGIter = Old2New.find(IG); 1603 if (NewIGIter == Old2New.end()) 1604 Old2New[IG] = new InterleaveGroup<VPInstruction>( 1605 IG->getFactor(), IG->isReverse(), IG->getAlign()); 1606 1607 if (Inst == IG->getInsertPos()) 1608 Old2New[IG]->setInsertPos(VPInst); 1609 1610 InterleaveGroupMap[VPInst] = Old2New[IG]; 1611 InterleaveGroupMap[VPInst]->insertMember( 1612 VPInst, IG->getIndex(Inst), 1613 Align(IG->isReverse() ? (-1) * int(IG->getFactor()) 1614 : IG->getFactor())); 1615 } 1616 } else if (VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block)) 1617 visitRegion(Region, Old2New, IAI); 1618 else 1619 llvm_unreachable("Unsupported kind of VPBlock."); 1620 } 1621 1622 VPInterleavedAccessInfo::VPInterleavedAccessInfo(VPlan &Plan, 1623 InterleavedAccessInfo &IAI) { 1624 Old2NewTy Old2New; 1625 visitRegion(cast<VPRegionBlock>(Plan.getEntry()), Old2New, IAI); 1626 } 1627 1628 void VPSlotTracker::assignSlot(const VPValue *V) { 1629 assert(Slots.find(V) == Slots.end() && "VPValue already has a slot!"); 1630 Slots[V] = NextSlot++; 1631 } 1632 1633 void VPSlotTracker::assignSlots(const VPlan &Plan) { 1634 1635 for (const VPValue *V : Plan.VPExternalDefs) 1636 assignSlot(V); 1637 1638 assignSlot(&Plan.VectorTripCount); 1639 if (Plan.BackedgeTakenCount) 1640 assignSlot(Plan.BackedgeTakenCount); 1641 1642 ReversePostOrderTraversal< 1643 VPBlockRecursiveTraversalWrapper<const VPBlockBase *>> 1644 RPOT(VPBlockRecursiveTraversalWrapper<const VPBlockBase *>( 1645 Plan.getEntry())); 1646 for (const VPBasicBlock *VPBB : 1647 VPBlockUtils::blocksOnly<const VPBasicBlock>(RPOT)) 1648 for (const VPRecipeBase &Recipe : *VPBB) 1649 for (VPValue *Def : Recipe.definedValues()) 1650 assignSlot(Def); 1651 } 1652 1653 bool vputils::onlyFirstLaneUsed(VPValue *Def) { 1654 return all_of(Def->users(), [Def](VPUser *U) { 1655 return cast<VPRecipeBase>(U)->onlyFirstLaneUsed(Def); 1656 }); 1657 } 1658