1 //===- Scalarizer.cpp - Scalarize vector operations -----------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This pass converts vector operations into scalar operations, in order 10 // to expose optimization opportunities on the individual scalar operations. 11 // It is mainly intended for targets that do not have vector units, but it 12 // may also be useful for revectorizing code to different vector widths. 13 // 14 //===----------------------------------------------------------------------===// 15 16 #include "llvm/Transforms/Scalar/Scalarizer.h" 17 #include "llvm/ADT/PostOrderIterator.h" 18 #include "llvm/ADT/SmallVector.h" 19 #include "llvm/ADT/Twine.h" 20 #include "llvm/Analysis/VectorUtils.h" 21 #include "llvm/IR/Argument.h" 22 #include "llvm/IR/BasicBlock.h" 23 #include "llvm/IR/Constants.h" 24 #include "llvm/IR/DataLayout.h" 25 #include "llvm/IR/DerivedTypes.h" 26 #include "llvm/IR/Dominators.h" 27 #include "llvm/IR/Function.h" 28 #include "llvm/IR/IRBuilder.h" 29 #include "llvm/IR/InstVisitor.h" 30 #include "llvm/IR/InstrTypes.h" 31 #include "llvm/IR/Instruction.h" 32 #include "llvm/IR/Instructions.h" 33 #include "llvm/IR/Intrinsics.h" 34 #include "llvm/IR/LLVMContext.h" 35 #include "llvm/IR/Module.h" 36 #include "llvm/IR/Type.h" 37 #include "llvm/IR/Value.h" 38 #include "llvm/InitializePasses.h" 39 #include "llvm/Pass.h" 40 #include "llvm/Support/Casting.h" 41 #include "llvm/Support/CommandLine.h" 42 #include "llvm/Support/MathExtras.h" 43 #include "llvm/Transforms/Scalar.h" 44 #include "llvm/Transforms/Utils/Local.h" 45 #include <cassert> 46 #include <cstdint> 47 #include <iterator> 48 #include <map> 49 #include <utility> 50 51 using namespace llvm; 52 53 #define DEBUG_TYPE "scalarizer" 54 55 static cl::opt<bool> ScalarizeVariableInsertExtract( 56 "scalarize-variable-insert-extract", cl::init(true), cl::Hidden, 57 cl::desc("Allow the scalarizer pass to scalarize " 58 "insertelement/extractelement with variable index")); 59 60 // This is disabled by default because having separate loads and stores 61 // makes it more likely that the -combiner-alias-analysis limits will be 62 // reached. 63 static cl::opt<bool> 64 ScalarizeLoadStore("scalarize-load-store", cl::init(false), cl::Hidden, 65 cl::desc("Allow the scalarizer pass to scalarize loads and store")); 66 67 namespace { 68 69 // Used to store the scattered form of a vector. 70 using ValueVector = SmallVector<Value *, 8>; 71 72 // Used to map a vector Value to its scattered form. We use std::map 73 // because we want iterators to persist across insertion and because the 74 // values are relatively large. 75 using ScatterMap = std::map<Value *, ValueVector>; 76 77 // Lists Instructions that have been replaced with scalar implementations, 78 // along with a pointer to their scattered forms. 79 using GatherList = SmallVector<std::pair<Instruction *, ValueVector *>, 16>; 80 81 // Provides a very limited vector-like interface for lazily accessing one 82 // component of a scattered vector or vector pointer. 83 class Scatterer { 84 public: 85 Scatterer() = default; 86 87 // Scatter V into Size components. If new instructions are needed, 88 // insert them before BBI in BB. If Cache is nonnull, use it to cache 89 // the results. 90 Scatterer(BasicBlock *bb, BasicBlock::iterator bbi, Value *v, 91 ValueVector *cachePtr = nullptr); 92 93 // Return component I, creating a new Value for it if necessary. 94 Value *operator[](unsigned I); 95 96 // Return the number of components. 97 unsigned size() const { return Size; } 98 99 private: 100 BasicBlock *BB; 101 BasicBlock::iterator BBI; 102 Value *V; 103 ValueVector *CachePtr; 104 PointerType *PtrTy; 105 ValueVector Tmp; 106 unsigned Size; 107 }; 108 109 // FCmpSpliiter(FCI)(Builder, X, Y, Name) uses Builder to create an FCmp 110 // called Name that compares X and Y in the same way as FCI. 111 struct FCmpSplitter { 112 FCmpSplitter(FCmpInst &fci) : FCI(fci) {} 113 114 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1, 115 const Twine &Name) const { 116 return Builder.CreateFCmp(FCI.getPredicate(), Op0, Op1, Name); 117 } 118 119 FCmpInst &FCI; 120 }; 121 122 // ICmpSpliiter(ICI)(Builder, X, Y, Name) uses Builder to create an ICmp 123 // called Name that compares X and Y in the same way as ICI. 124 struct ICmpSplitter { 125 ICmpSplitter(ICmpInst &ici) : ICI(ici) {} 126 127 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1, 128 const Twine &Name) const { 129 return Builder.CreateICmp(ICI.getPredicate(), Op0, Op1, Name); 130 } 131 132 ICmpInst &ICI; 133 }; 134 135 // UnarySpliiter(UO)(Builder, X, Name) uses Builder to create 136 // a unary operator like UO called Name with operand X. 137 struct UnarySplitter { 138 UnarySplitter(UnaryOperator &uo) : UO(uo) {} 139 140 Value *operator()(IRBuilder<> &Builder, Value *Op, const Twine &Name) const { 141 return Builder.CreateUnOp(UO.getOpcode(), Op, Name); 142 } 143 144 UnaryOperator &UO; 145 }; 146 147 // BinarySpliiter(BO)(Builder, X, Y, Name) uses Builder to create 148 // a binary operator like BO called Name with operands X and Y. 149 struct BinarySplitter { 150 BinarySplitter(BinaryOperator &bo) : BO(bo) {} 151 152 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1, 153 const Twine &Name) const { 154 return Builder.CreateBinOp(BO.getOpcode(), Op0, Op1, Name); 155 } 156 157 BinaryOperator &BO; 158 }; 159 160 // Information about a load or store that we're scalarizing. 161 struct VectorLayout { 162 VectorLayout() = default; 163 164 // Return the alignment of element I. 165 Align getElemAlign(unsigned I) { 166 return commonAlignment(VecAlign, I * ElemSize); 167 } 168 169 // The type of the vector. 170 VectorType *VecTy = nullptr; 171 172 // The type of each element. 173 Type *ElemTy = nullptr; 174 175 // The alignment of the vector. 176 Align VecAlign; 177 178 // The size of each element. 179 uint64_t ElemSize = 0; 180 }; 181 182 class ScalarizerVisitor : public InstVisitor<ScalarizerVisitor, bool> { 183 public: 184 ScalarizerVisitor(unsigned ParallelLoopAccessMDKind, DominatorTree *DT) 185 : ParallelLoopAccessMDKind(ParallelLoopAccessMDKind), DT(DT) { 186 } 187 188 bool visit(Function &F); 189 190 // InstVisitor methods. They return true if the instruction was scalarized, 191 // false if nothing changed. 192 bool visitInstruction(Instruction &I) { return false; } 193 bool visitSelectInst(SelectInst &SI); 194 bool visitICmpInst(ICmpInst &ICI); 195 bool visitFCmpInst(FCmpInst &FCI); 196 bool visitUnaryOperator(UnaryOperator &UO); 197 bool visitBinaryOperator(BinaryOperator &BO); 198 bool visitGetElementPtrInst(GetElementPtrInst &GEPI); 199 bool visitCastInst(CastInst &CI); 200 bool visitBitCastInst(BitCastInst &BCI); 201 bool visitInsertElementInst(InsertElementInst &IEI); 202 bool visitExtractElementInst(ExtractElementInst &EEI); 203 bool visitShuffleVectorInst(ShuffleVectorInst &SVI); 204 bool visitPHINode(PHINode &PHI); 205 bool visitLoadInst(LoadInst &LI); 206 bool visitStoreInst(StoreInst &SI); 207 bool visitCallInst(CallInst &ICI); 208 209 private: 210 Scatterer scatter(Instruction *Point, Value *V); 211 void gather(Instruction *Op, const ValueVector &CV); 212 bool canTransferMetadata(unsigned Kind); 213 void transferMetadataAndIRFlags(Instruction *Op, const ValueVector &CV); 214 Optional<VectorLayout> getVectorLayout(Type *Ty, Align Alignment, 215 const DataLayout &DL); 216 bool finish(); 217 218 template<typename T> bool splitUnary(Instruction &, const T &); 219 template<typename T> bool splitBinary(Instruction &, const T &); 220 221 bool splitCall(CallInst &CI); 222 223 ScatterMap Scattered; 224 GatherList Gathered; 225 226 SmallVector<WeakTrackingVH, 32> PotentiallyDeadInstrs; 227 228 unsigned ParallelLoopAccessMDKind; 229 230 DominatorTree *DT; 231 }; 232 233 class ScalarizerLegacyPass : public FunctionPass { 234 public: 235 static char ID; 236 237 ScalarizerLegacyPass() : FunctionPass(ID) { 238 initializeScalarizerLegacyPassPass(*PassRegistry::getPassRegistry()); 239 } 240 241 bool runOnFunction(Function &F) override; 242 243 void getAnalysisUsage(AnalysisUsage& AU) const override { 244 AU.addRequired<DominatorTreeWrapperPass>(); 245 AU.addPreserved<DominatorTreeWrapperPass>(); 246 } 247 }; 248 249 } // end anonymous namespace 250 251 char ScalarizerLegacyPass::ID = 0; 252 INITIALIZE_PASS_BEGIN(ScalarizerLegacyPass, "scalarizer", 253 "Scalarize vector operations", false, false) 254 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) 255 INITIALIZE_PASS_END(ScalarizerLegacyPass, "scalarizer", 256 "Scalarize vector operations", false, false) 257 258 Scatterer::Scatterer(BasicBlock *bb, BasicBlock::iterator bbi, Value *v, 259 ValueVector *cachePtr) 260 : BB(bb), BBI(bbi), V(v), CachePtr(cachePtr) { 261 Type *Ty = V->getType(); 262 PtrTy = dyn_cast<PointerType>(Ty); 263 if (PtrTy) 264 Ty = PtrTy->getElementType(); 265 Size = cast<FixedVectorType>(Ty)->getNumElements(); 266 if (!CachePtr) 267 Tmp.resize(Size, nullptr); 268 else if (CachePtr->empty()) 269 CachePtr->resize(Size, nullptr); 270 else 271 assert(Size == CachePtr->size() && "Inconsistent vector sizes"); 272 } 273 274 // Return component I, creating a new Value for it if necessary. 275 Value *Scatterer::operator[](unsigned I) { 276 ValueVector &CV = (CachePtr ? *CachePtr : Tmp); 277 // Try to reuse a previous value. 278 if (CV[I]) 279 return CV[I]; 280 IRBuilder<> Builder(BB, BBI); 281 if (PtrTy) { 282 Type *ElTy = cast<VectorType>(PtrTy->getElementType())->getElementType(); 283 if (!CV[0]) { 284 Type *NewPtrTy = PointerType::get(ElTy, PtrTy->getAddressSpace()); 285 CV[0] = Builder.CreateBitCast(V, NewPtrTy, V->getName() + ".i0"); 286 } 287 if (I != 0) 288 CV[I] = Builder.CreateConstGEP1_32(ElTy, CV[0], I, 289 V->getName() + ".i" + Twine(I)); 290 } else { 291 // Search through a chain of InsertElementInsts looking for element I. 292 // Record other elements in the cache. The new V is still suitable 293 // for all uncached indices. 294 while (true) { 295 InsertElementInst *Insert = dyn_cast<InsertElementInst>(V); 296 if (!Insert) 297 break; 298 ConstantInt *Idx = dyn_cast<ConstantInt>(Insert->getOperand(2)); 299 if (!Idx) 300 break; 301 unsigned J = Idx->getZExtValue(); 302 V = Insert->getOperand(0); 303 if (I == J) { 304 CV[J] = Insert->getOperand(1); 305 return CV[J]; 306 } else if (!CV[J]) { 307 // Only cache the first entry we find for each index we're not actively 308 // searching for. This prevents us from going too far up the chain and 309 // caching incorrect entries. 310 CV[J] = Insert->getOperand(1); 311 } 312 } 313 CV[I] = Builder.CreateExtractElement(V, Builder.getInt32(I), 314 V->getName() + ".i" + Twine(I)); 315 } 316 return CV[I]; 317 } 318 319 bool ScalarizerLegacyPass::runOnFunction(Function &F) { 320 if (skipFunction(F)) 321 return false; 322 323 Module &M = *F.getParent(); 324 unsigned ParallelLoopAccessMDKind = 325 M.getContext().getMDKindID("llvm.mem.parallel_loop_access"); 326 DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); 327 ScalarizerVisitor Impl(ParallelLoopAccessMDKind, DT); 328 return Impl.visit(F); 329 } 330 331 FunctionPass *llvm::createScalarizerPass() { 332 return new ScalarizerLegacyPass(); 333 } 334 335 bool ScalarizerVisitor::visit(Function &F) { 336 assert(Gathered.empty() && Scattered.empty()); 337 338 // To ensure we replace gathered components correctly we need to do an ordered 339 // traversal of the basic blocks in the function. 340 ReversePostOrderTraversal<BasicBlock *> RPOT(&F.getEntryBlock()); 341 for (BasicBlock *BB : RPOT) { 342 for (BasicBlock::iterator II = BB->begin(), IE = BB->end(); II != IE;) { 343 Instruction *I = &*II; 344 bool Done = InstVisitor::visit(I); 345 ++II; 346 if (Done && I->getType()->isVoidTy()) 347 I->eraseFromParent(); 348 } 349 } 350 return finish(); 351 } 352 353 // Return a scattered form of V that can be accessed by Point. V must be a 354 // vector or a pointer to a vector. 355 Scatterer ScalarizerVisitor::scatter(Instruction *Point, Value *V) { 356 if (Argument *VArg = dyn_cast<Argument>(V)) { 357 // Put the scattered form of arguments in the entry block, 358 // so that it can be used everywhere. 359 Function *F = VArg->getParent(); 360 BasicBlock *BB = &F->getEntryBlock(); 361 return Scatterer(BB, BB->begin(), V, &Scattered[V]); 362 } 363 if (Instruction *VOp = dyn_cast<Instruction>(V)) { 364 // When scalarizing PHI nodes we might try to examine/rewrite InsertElement 365 // nodes in predecessors. If those predecessors are unreachable from entry, 366 // then the IR in those blocks could have unexpected properties resulting in 367 // infinite loops in Scatterer::operator[]. By simply treating values 368 // originating from instructions in unreachable blocks as undef we do not 369 // need to analyse them further. 370 if (!DT->isReachableFromEntry(VOp->getParent())) 371 return Scatterer(Point->getParent(), Point->getIterator(), 372 UndefValue::get(V->getType())); 373 // Put the scattered form of an instruction directly after the 374 // instruction. 375 BasicBlock *BB = VOp->getParent(); 376 return Scatterer(BB, std::next(BasicBlock::iterator(VOp)), 377 V, &Scattered[V]); 378 } 379 // In the fallback case, just put the scattered before Point and 380 // keep the result local to Point. 381 return Scatterer(Point->getParent(), Point->getIterator(), V); 382 } 383 384 // Replace Op with the gathered form of the components in CV. Defer the 385 // deletion of Op and creation of the gathered form to the end of the pass, 386 // so that we can avoid creating the gathered form if all uses of Op are 387 // replaced with uses of CV. 388 void ScalarizerVisitor::gather(Instruction *Op, const ValueVector &CV) { 389 transferMetadataAndIRFlags(Op, CV); 390 391 // If we already have a scattered form of Op (created from ExtractElements 392 // of Op itself), replace them with the new form. 393 ValueVector &SV = Scattered[Op]; 394 if (!SV.empty()) { 395 for (unsigned I = 0, E = SV.size(); I != E; ++I) { 396 Value *V = SV[I]; 397 if (V == nullptr || SV[I] == CV[I]) 398 continue; 399 400 Instruction *Old = cast<Instruction>(V); 401 CV[I]->takeName(Old); 402 Old->replaceAllUsesWith(CV[I]); 403 PotentiallyDeadInstrs.emplace_back(Old); 404 } 405 } 406 SV = CV; 407 Gathered.push_back(GatherList::value_type(Op, &SV)); 408 } 409 410 // Return true if it is safe to transfer the given metadata tag from 411 // vector to scalar instructions. 412 bool ScalarizerVisitor::canTransferMetadata(unsigned Tag) { 413 return (Tag == LLVMContext::MD_tbaa 414 || Tag == LLVMContext::MD_fpmath 415 || Tag == LLVMContext::MD_tbaa_struct 416 || Tag == LLVMContext::MD_invariant_load 417 || Tag == LLVMContext::MD_alias_scope 418 || Tag == LLVMContext::MD_noalias 419 || Tag == ParallelLoopAccessMDKind 420 || Tag == LLVMContext::MD_access_group); 421 } 422 423 // Transfer metadata from Op to the instructions in CV if it is known 424 // to be safe to do so. 425 void ScalarizerVisitor::transferMetadataAndIRFlags(Instruction *Op, 426 const ValueVector &CV) { 427 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs; 428 Op->getAllMetadataOtherThanDebugLoc(MDs); 429 for (unsigned I = 0, E = CV.size(); I != E; ++I) { 430 if (Instruction *New = dyn_cast<Instruction>(CV[I])) { 431 for (const auto &MD : MDs) 432 if (canTransferMetadata(MD.first)) 433 New->setMetadata(MD.first, MD.second); 434 New->copyIRFlags(Op); 435 if (Op->getDebugLoc() && !New->getDebugLoc()) 436 New->setDebugLoc(Op->getDebugLoc()); 437 } 438 } 439 } 440 441 // Try to fill in Layout from Ty, returning true on success. Alignment is 442 // the alignment of the vector, or None if the ABI default should be used. 443 Optional<VectorLayout> 444 ScalarizerVisitor::getVectorLayout(Type *Ty, Align Alignment, 445 const DataLayout &DL) { 446 VectorLayout Layout; 447 // Make sure we're dealing with a vector. 448 Layout.VecTy = dyn_cast<VectorType>(Ty); 449 if (!Layout.VecTy) 450 return None; 451 // Check that we're dealing with full-byte elements. 452 Layout.ElemTy = Layout.VecTy->getElementType(); 453 if (!DL.typeSizeEqualsStoreSize(Layout.ElemTy)) 454 return None; 455 Layout.VecAlign = Alignment; 456 Layout.ElemSize = DL.getTypeStoreSize(Layout.ElemTy); 457 return Layout; 458 } 459 460 // Scalarize one-operand instruction I, using Split(Builder, X, Name) 461 // to create an instruction like I with operand X and name Name. 462 template<typename Splitter> 463 bool ScalarizerVisitor::splitUnary(Instruction &I, const Splitter &Split) { 464 VectorType *VT = dyn_cast<VectorType>(I.getType()); 465 if (!VT) 466 return false; 467 468 unsigned NumElems = cast<FixedVectorType>(VT)->getNumElements(); 469 IRBuilder<> Builder(&I); 470 Scatterer Op = scatter(&I, I.getOperand(0)); 471 assert(Op.size() == NumElems && "Mismatched unary operation"); 472 ValueVector Res; 473 Res.resize(NumElems); 474 for (unsigned Elem = 0; Elem < NumElems; ++Elem) 475 Res[Elem] = Split(Builder, Op[Elem], I.getName() + ".i" + Twine(Elem)); 476 gather(&I, Res); 477 return true; 478 } 479 480 // Scalarize two-operand instruction I, using Split(Builder, X, Y, Name) 481 // to create an instruction like I with operands X and Y and name Name. 482 template<typename Splitter> 483 bool ScalarizerVisitor::splitBinary(Instruction &I, const Splitter &Split) { 484 VectorType *VT = dyn_cast<VectorType>(I.getType()); 485 if (!VT) 486 return false; 487 488 unsigned NumElems = cast<FixedVectorType>(VT)->getNumElements(); 489 IRBuilder<> Builder(&I); 490 Scatterer VOp0 = scatter(&I, I.getOperand(0)); 491 Scatterer VOp1 = scatter(&I, I.getOperand(1)); 492 assert(VOp0.size() == NumElems && "Mismatched binary operation"); 493 assert(VOp1.size() == NumElems && "Mismatched binary operation"); 494 ValueVector Res; 495 Res.resize(NumElems); 496 for (unsigned Elem = 0; Elem < NumElems; ++Elem) { 497 Value *Op0 = VOp0[Elem]; 498 Value *Op1 = VOp1[Elem]; 499 Res[Elem] = Split(Builder, Op0, Op1, I.getName() + ".i" + Twine(Elem)); 500 } 501 gather(&I, Res); 502 return true; 503 } 504 505 static bool isTriviallyScalariable(Intrinsic::ID ID) { 506 return isTriviallyVectorizable(ID); 507 } 508 509 // All of the current scalarizable intrinsics only have one mangled type. 510 static Function *getScalarIntrinsicDeclaration(Module *M, 511 Intrinsic::ID ID, 512 VectorType *Ty) { 513 return Intrinsic::getDeclaration(M, ID, { Ty->getScalarType() }); 514 } 515 516 /// If a call to a vector typed intrinsic function, split into a scalar call per 517 /// element if possible for the intrinsic. 518 bool ScalarizerVisitor::splitCall(CallInst &CI) { 519 VectorType *VT = dyn_cast<VectorType>(CI.getType()); 520 if (!VT) 521 return false; 522 523 Function *F = CI.getCalledFunction(); 524 if (!F) 525 return false; 526 527 Intrinsic::ID ID = F->getIntrinsicID(); 528 if (ID == Intrinsic::not_intrinsic || !isTriviallyScalariable(ID)) 529 return false; 530 531 unsigned NumElems = cast<FixedVectorType>(VT)->getNumElements(); 532 unsigned NumArgs = CI.getNumArgOperands(); 533 534 ValueVector ScalarOperands(NumArgs); 535 SmallVector<Scatterer, 8> Scattered(NumArgs); 536 537 Scattered.resize(NumArgs); 538 539 // Assumes that any vector type has the same number of elements as the return 540 // vector type, which is true for all current intrinsics. 541 for (unsigned I = 0; I != NumArgs; ++I) { 542 Value *OpI = CI.getOperand(I); 543 if (OpI->getType()->isVectorTy()) { 544 Scattered[I] = scatter(&CI, OpI); 545 assert(Scattered[I].size() == NumElems && "mismatched call operands"); 546 } else { 547 ScalarOperands[I] = OpI; 548 } 549 } 550 551 ValueVector Res(NumElems); 552 ValueVector ScalarCallOps(NumArgs); 553 554 Function *NewIntrin = getScalarIntrinsicDeclaration(F->getParent(), ID, VT); 555 IRBuilder<> Builder(&CI); 556 557 // Perform actual scalarization, taking care to preserve any scalar operands. 558 for (unsigned Elem = 0; Elem < NumElems; ++Elem) { 559 ScalarCallOps.clear(); 560 561 for (unsigned J = 0; J != NumArgs; ++J) { 562 if (hasVectorInstrinsicScalarOpd(ID, J)) 563 ScalarCallOps.push_back(ScalarOperands[J]); 564 else 565 ScalarCallOps.push_back(Scattered[J][Elem]); 566 } 567 568 Res[Elem] = Builder.CreateCall(NewIntrin, ScalarCallOps, 569 CI.getName() + ".i" + Twine(Elem)); 570 } 571 572 gather(&CI, Res); 573 return true; 574 } 575 576 bool ScalarizerVisitor::visitSelectInst(SelectInst &SI) { 577 VectorType *VT = dyn_cast<VectorType>(SI.getType()); 578 if (!VT) 579 return false; 580 581 unsigned NumElems = cast<FixedVectorType>(VT)->getNumElements(); 582 IRBuilder<> Builder(&SI); 583 Scatterer VOp1 = scatter(&SI, SI.getOperand(1)); 584 Scatterer VOp2 = scatter(&SI, SI.getOperand(2)); 585 assert(VOp1.size() == NumElems && "Mismatched select"); 586 assert(VOp2.size() == NumElems && "Mismatched select"); 587 ValueVector Res; 588 Res.resize(NumElems); 589 590 if (SI.getOperand(0)->getType()->isVectorTy()) { 591 Scatterer VOp0 = scatter(&SI, SI.getOperand(0)); 592 assert(VOp0.size() == NumElems && "Mismatched select"); 593 for (unsigned I = 0; I < NumElems; ++I) { 594 Value *Op0 = VOp0[I]; 595 Value *Op1 = VOp1[I]; 596 Value *Op2 = VOp2[I]; 597 Res[I] = Builder.CreateSelect(Op0, Op1, Op2, 598 SI.getName() + ".i" + Twine(I)); 599 } 600 } else { 601 Value *Op0 = SI.getOperand(0); 602 for (unsigned I = 0; I < NumElems; ++I) { 603 Value *Op1 = VOp1[I]; 604 Value *Op2 = VOp2[I]; 605 Res[I] = Builder.CreateSelect(Op0, Op1, Op2, 606 SI.getName() + ".i" + Twine(I)); 607 } 608 } 609 gather(&SI, Res); 610 return true; 611 } 612 613 bool ScalarizerVisitor::visitICmpInst(ICmpInst &ICI) { 614 return splitBinary(ICI, ICmpSplitter(ICI)); 615 } 616 617 bool ScalarizerVisitor::visitFCmpInst(FCmpInst &FCI) { 618 return splitBinary(FCI, FCmpSplitter(FCI)); 619 } 620 621 bool ScalarizerVisitor::visitUnaryOperator(UnaryOperator &UO) { 622 return splitUnary(UO, UnarySplitter(UO)); 623 } 624 625 bool ScalarizerVisitor::visitBinaryOperator(BinaryOperator &BO) { 626 return splitBinary(BO, BinarySplitter(BO)); 627 } 628 629 bool ScalarizerVisitor::visitGetElementPtrInst(GetElementPtrInst &GEPI) { 630 VectorType *VT = dyn_cast<VectorType>(GEPI.getType()); 631 if (!VT) 632 return false; 633 634 IRBuilder<> Builder(&GEPI); 635 unsigned NumElems = cast<FixedVectorType>(VT)->getNumElements(); 636 unsigned NumIndices = GEPI.getNumIndices(); 637 638 // The base pointer might be scalar even if it's a vector GEP. In those cases, 639 // splat the pointer into a vector value, and scatter that vector. 640 Value *Op0 = GEPI.getOperand(0); 641 if (!Op0->getType()->isVectorTy()) 642 Op0 = Builder.CreateVectorSplat(NumElems, Op0); 643 Scatterer Base = scatter(&GEPI, Op0); 644 645 SmallVector<Scatterer, 8> Ops; 646 Ops.resize(NumIndices); 647 for (unsigned I = 0; I < NumIndices; ++I) { 648 Value *Op = GEPI.getOperand(I + 1); 649 650 // The indices might be scalars even if it's a vector GEP. In those cases, 651 // splat the scalar into a vector value, and scatter that vector. 652 if (!Op->getType()->isVectorTy()) 653 Op = Builder.CreateVectorSplat(NumElems, Op); 654 655 Ops[I] = scatter(&GEPI, Op); 656 } 657 658 ValueVector Res; 659 Res.resize(NumElems); 660 for (unsigned I = 0; I < NumElems; ++I) { 661 SmallVector<Value *, 8> Indices; 662 Indices.resize(NumIndices); 663 for (unsigned J = 0; J < NumIndices; ++J) 664 Indices[J] = Ops[J][I]; 665 Res[I] = Builder.CreateGEP(GEPI.getSourceElementType(), Base[I], Indices, 666 GEPI.getName() + ".i" + Twine(I)); 667 if (GEPI.isInBounds()) 668 if (GetElementPtrInst *NewGEPI = dyn_cast<GetElementPtrInst>(Res[I])) 669 NewGEPI->setIsInBounds(); 670 } 671 gather(&GEPI, Res); 672 return true; 673 } 674 675 bool ScalarizerVisitor::visitCastInst(CastInst &CI) { 676 VectorType *VT = dyn_cast<VectorType>(CI.getDestTy()); 677 if (!VT) 678 return false; 679 680 unsigned NumElems = cast<FixedVectorType>(VT)->getNumElements(); 681 IRBuilder<> Builder(&CI); 682 Scatterer Op0 = scatter(&CI, CI.getOperand(0)); 683 assert(Op0.size() == NumElems && "Mismatched cast"); 684 ValueVector Res; 685 Res.resize(NumElems); 686 for (unsigned I = 0; I < NumElems; ++I) 687 Res[I] = Builder.CreateCast(CI.getOpcode(), Op0[I], VT->getElementType(), 688 CI.getName() + ".i" + Twine(I)); 689 gather(&CI, Res); 690 return true; 691 } 692 693 bool ScalarizerVisitor::visitBitCastInst(BitCastInst &BCI) { 694 VectorType *DstVT = dyn_cast<VectorType>(BCI.getDestTy()); 695 VectorType *SrcVT = dyn_cast<VectorType>(BCI.getSrcTy()); 696 if (!DstVT || !SrcVT) 697 return false; 698 699 unsigned DstNumElems = cast<FixedVectorType>(DstVT)->getNumElements(); 700 unsigned SrcNumElems = cast<FixedVectorType>(SrcVT)->getNumElements(); 701 IRBuilder<> Builder(&BCI); 702 Scatterer Op0 = scatter(&BCI, BCI.getOperand(0)); 703 ValueVector Res; 704 Res.resize(DstNumElems); 705 706 if (DstNumElems == SrcNumElems) { 707 for (unsigned I = 0; I < DstNumElems; ++I) 708 Res[I] = Builder.CreateBitCast(Op0[I], DstVT->getElementType(), 709 BCI.getName() + ".i" + Twine(I)); 710 } else if (DstNumElems > SrcNumElems) { 711 // <M x t1> -> <N*M x t2>. Convert each t1 to <N x t2> and copy the 712 // individual elements to the destination. 713 unsigned FanOut = DstNumElems / SrcNumElems; 714 auto *MidTy = FixedVectorType::get(DstVT->getElementType(), FanOut); 715 unsigned ResI = 0; 716 for (unsigned Op0I = 0; Op0I < SrcNumElems; ++Op0I) { 717 Value *V = Op0[Op0I]; 718 Instruction *VI; 719 // Look through any existing bitcasts before converting to <N x t2>. 720 // In the best case, the resulting conversion might be a no-op. 721 while ((VI = dyn_cast<Instruction>(V)) && 722 VI->getOpcode() == Instruction::BitCast) 723 V = VI->getOperand(0); 724 V = Builder.CreateBitCast(V, MidTy, V->getName() + ".cast"); 725 Scatterer Mid = scatter(&BCI, V); 726 for (unsigned MidI = 0; MidI < FanOut; ++MidI) 727 Res[ResI++] = Mid[MidI]; 728 } 729 } else { 730 // <N*M x t1> -> <M x t2>. Convert each group of <N x t1> into a t2. 731 unsigned FanIn = SrcNumElems / DstNumElems; 732 auto *MidTy = FixedVectorType::get(SrcVT->getElementType(), FanIn); 733 unsigned Op0I = 0; 734 for (unsigned ResI = 0; ResI < DstNumElems; ++ResI) { 735 Value *V = UndefValue::get(MidTy); 736 for (unsigned MidI = 0; MidI < FanIn; ++MidI) 737 V = Builder.CreateInsertElement(V, Op0[Op0I++], Builder.getInt32(MidI), 738 BCI.getName() + ".i" + Twine(ResI) 739 + ".upto" + Twine(MidI)); 740 Res[ResI] = Builder.CreateBitCast(V, DstVT->getElementType(), 741 BCI.getName() + ".i" + Twine(ResI)); 742 } 743 } 744 gather(&BCI, Res); 745 return true; 746 } 747 748 bool ScalarizerVisitor::visitInsertElementInst(InsertElementInst &IEI) { 749 VectorType *VT = dyn_cast<VectorType>(IEI.getType()); 750 if (!VT) 751 return false; 752 753 unsigned NumElems = cast<FixedVectorType>(VT)->getNumElements(); 754 IRBuilder<> Builder(&IEI); 755 Scatterer Op0 = scatter(&IEI, IEI.getOperand(0)); 756 Value *NewElt = IEI.getOperand(1); 757 Value *InsIdx = IEI.getOperand(2); 758 759 ValueVector Res; 760 Res.resize(NumElems); 761 762 if (auto *CI = dyn_cast<ConstantInt>(InsIdx)) { 763 for (unsigned I = 0; I < NumElems; ++I) 764 Res[I] = CI->getValue().getZExtValue() == I ? NewElt : Op0[I]; 765 } else { 766 if (!ScalarizeVariableInsertExtract) 767 return false; 768 769 for (unsigned I = 0; I < NumElems; ++I) { 770 Value *ShouldReplace = 771 Builder.CreateICmpEQ(InsIdx, ConstantInt::get(InsIdx->getType(), I), 772 InsIdx->getName() + ".is." + Twine(I)); 773 Value *OldElt = Op0[I]; 774 Res[I] = Builder.CreateSelect(ShouldReplace, NewElt, OldElt, 775 IEI.getName() + ".i" + Twine(I)); 776 } 777 } 778 779 gather(&IEI, Res); 780 return true; 781 } 782 783 bool ScalarizerVisitor::visitExtractElementInst(ExtractElementInst &EEI) { 784 VectorType *VT = dyn_cast<VectorType>(EEI.getOperand(0)->getType()); 785 if (!VT) 786 return false; 787 788 unsigned NumSrcElems = cast<FixedVectorType>(VT)->getNumElements(); 789 IRBuilder<> Builder(&EEI); 790 Scatterer Op0 = scatter(&EEI, EEI.getOperand(0)); 791 Value *ExtIdx = EEI.getOperand(1); 792 793 if (auto *CI = dyn_cast<ConstantInt>(ExtIdx)) { 794 Value *Res = Op0[CI->getValue().getZExtValue()]; 795 gather(&EEI, {Res}); 796 return true; 797 } 798 799 if (!ScalarizeVariableInsertExtract) 800 return false; 801 802 Value *Res = UndefValue::get(VT->getElementType()); 803 for (unsigned I = 0; I < NumSrcElems; ++I) { 804 Value *ShouldExtract = 805 Builder.CreateICmpEQ(ExtIdx, ConstantInt::get(ExtIdx->getType(), I), 806 ExtIdx->getName() + ".is." + Twine(I)); 807 Value *Elt = Op0[I]; 808 Res = Builder.CreateSelect(ShouldExtract, Elt, Res, 809 EEI.getName() + ".upto" + Twine(I)); 810 } 811 gather(&EEI, {Res}); 812 return true; 813 } 814 815 bool ScalarizerVisitor::visitShuffleVectorInst(ShuffleVectorInst &SVI) { 816 VectorType *VT = dyn_cast<VectorType>(SVI.getType()); 817 if (!VT) 818 return false; 819 820 unsigned NumElems = cast<FixedVectorType>(VT)->getNumElements(); 821 Scatterer Op0 = scatter(&SVI, SVI.getOperand(0)); 822 Scatterer Op1 = scatter(&SVI, SVI.getOperand(1)); 823 ValueVector Res; 824 Res.resize(NumElems); 825 826 for (unsigned I = 0; I < NumElems; ++I) { 827 int Selector = SVI.getMaskValue(I); 828 if (Selector < 0) 829 Res[I] = UndefValue::get(VT->getElementType()); 830 else if (unsigned(Selector) < Op0.size()) 831 Res[I] = Op0[Selector]; 832 else 833 Res[I] = Op1[Selector - Op0.size()]; 834 } 835 gather(&SVI, Res); 836 return true; 837 } 838 839 bool ScalarizerVisitor::visitPHINode(PHINode &PHI) { 840 VectorType *VT = dyn_cast<VectorType>(PHI.getType()); 841 if (!VT) 842 return false; 843 844 unsigned NumElems = cast<FixedVectorType>(VT)->getNumElements(); 845 IRBuilder<> Builder(&PHI); 846 ValueVector Res; 847 Res.resize(NumElems); 848 849 unsigned NumOps = PHI.getNumOperands(); 850 for (unsigned I = 0; I < NumElems; ++I) 851 Res[I] = Builder.CreatePHI(VT->getElementType(), NumOps, 852 PHI.getName() + ".i" + Twine(I)); 853 854 for (unsigned I = 0; I < NumOps; ++I) { 855 Scatterer Op = scatter(&PHI, PHI.getIncomingValue(I)); 856 BasicBlock *IncomingBlock = PHI.getIncomingBlock(I); 857 for (unsigned J = 0; J < NumElems; ++J) 858 cast<PHINode>(Res[J])->addIncoming(Op[J], IncomingBlock); 859 } 860 gather(&PHI, Res); 861 return true; 862 } 863 864 bool ScalarizerVisitor::visitLoadInst(LoadInst &LI) { 865 if (!ScalarizeLoadStore) 866 return false; 867 if (!LI.isSimple()) 868 return false; 869 870 Optional<VectorLayout> Layout = getVectorLayout( 871 LI.getType(), LI.getAlign(), LI.getModule()->getDataLayout()); 872 if (!Layout) 873 return false; 874 875 unsigned NumElems = cast<FixedVectorType>(Layout->VecTy)->getNumElements(); 876 IRBuilder<> Builder(&LI); 877 Scatterer Ptr = scatter(&LI, LI.getPointerOperand()); 878 ValueVector Res; 879 Res.resize(NumElems); 880 881 for (unsigned I = 0; I < NumElems; ++I) 882 Res[I] = Builder.CreateAlignedLoad(Layout->VecTy->getElementType(), Ptr[I], 883 Align(Layout->getElemAlign(I)), 884 LI.getName() + ".i" + Twine(I)); 885 gather(&LI, Res); 886 return true; 887 } 888 889 bool ScalarizerVisitor::visitStoreInst(StoreInst &SI) { 890 if (!ScalarizeLoadStore) 891 return false; 892 if (!SI.isSimple()) 893 return false; 894 895 Value *FullValue = SI.getValueOperand(); 896 Optional<VectorLayout> Layout = getVectorLayout( 897 FullValue->getType(), SI.getAlign(), SI.getModule()->getDataLayout()); 898 if (!Layout) 899 return false; 900 901 unsigned NumElems = cast<FixedVectorType>(Layout->VecTy)->getNumElements(); 902 IRBuilder<> Builder(&SI); 903 Scatterer VPtr = scatter(&SI, SI.getPointerOperand()); 904 Scatterer VVal = scatter(&SI, FullValue); 905 906 ValueVector Stores; 907 Stores.resize(NumElems); 908 for (unsigned I = 0; I < NumElems; ++I) { 909 Value *Val = VVal[I]; 910 Value *Ptr = VPtr[I]; 911 Stores[I] = Builder.CreateAlignedStore(Val, Ptr, Layout->getElemAlign(I)); 912 } 913 transferMetadataAndIRFlags(&SI, Stores); 914 return true; 915 } 916 917 bool ScalarizerVisitor::visitCallInst(CallInst &CI) { 918 return splitCall(CI); 919 } 920 921 // Delete the instructions that we scalarized. If a full vector result 922 // is still needed, recreate it using InsertElements. 923 bool ScalarizerVisitor::finish() { 924 // The presence of data in Gathered or Scattered indicates changes 925 // made to the Function. 926 if (Gathered.empty() && Scattered.empty()) 927 return false; 928 for (const auto &GMI : Gathered) { 929 Instruction *Op = GMI.first; 930 ValueVector &CV = *GMI.second; 931 if (!Op->use_empty()) { 932 // The value is still needed, so recreate it using a series of 933 // InsertElements. 934 Value *Res = UndefValue::get(Op->getType()); 935 if (auto *Ty = dyn_cast<VectorType>(Op->getType())) { 936 BasicBlock *BB = Op->getParent(); 937 unsigned Count = cast<FixedVectorType>(Ty)->getNumElements(); 938 IRBuilder<> Builder(Op); 939 if (isa<PHINode>(Op)) 940 Builder.SetInsertPoint(BB, BB->getFirstInsertionPt()); 941 for (unsigned I = 0; I < Count; ++I) 942 Res = Builder.CreateInsertElement(Res, CV[I], Builder.getInt32(I), 943 Op->getName() + ".upto" + Twine(I)); 944 } else { 945 assert(CV.size() == 1 && Op->getType() == CV[0]->getType()); 946 Res = CV[0]; 947 if (Op == Res) 948 continue; 949 } 950 Res->takeName(Op); 951 Op->replaceAllUsesWith(Res); 952 } 953 PotentiallyDeadInstrs.emplace_back(Op); 954 } 955 Gathered.clear(); 956 Scattered.clear(); 957 958 RecursivelyDeleteTriviallyDeadInstructionsPermissive(PotentiallyDeadInstrs); 959 960 return true; 961 } 962 963 PreservedAnalyses ScalarizerPass::run(Function &F, FunctionAnalysisManager &AM) { 964 Module &M = *F.getParent(); 965 unsigned ParallelLoopAccessMDKind = 966 M.getContext().getMDKindID("llvm.mem.parallel_loop_access"); 967 DominatorTree *DT = &AM.getResult<DominatorTreeAnalysis>(F); 968 ScalarizerVisitor Impl(ParallelLoopAccessMDKind, DT); 969 bool Changed = Impl.visit(F); 970 PreservedAnalyses PA; 971 PA.preserve<DominatorTreeAnalysis>(); 972 return Changed ? PA : PreservedAnalyses::all(); 973 } 974