blob: d11855f2f3a93e709806e7aa893b59571bc7c9ee [file] [log] [blame]
Richard Sandiford8ee1b772013-11-22 16:58:05 +00001//===--- Scalarizer.cpp - Scalarize vector operations ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass converts vector operations into scalar operations, in order
11// to expose optimization opportunities on the individual scalar operations.
12// It is mainly intended for targets that do not have vector units, but it
13// may also be useful for revectorizing code to different vector widths.
14//
15//===----------------------------------------------------------------------===//
16
Richard Sandiford8ee1b772013-11-22 16:58:05 +000017#include "llvm/ADT/STLExtras.h"
Matt Arsenault7cddfed2016-07-25 20:02:54 +000018#include "llvm/Analysis/VectorUtils.h"
Richard Sandiford8ee1b772013-11-22 16:58:05 +000019#include "llvm/IR/IRBuilder.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000020#include "llvm/IR/InstVisitor.h"
Richard Sandiford8ee1b772013-11-22 16:58:05 +000021#include "llvm/Pass.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000022#include "llvm/Transforms/Scalar.h"
Richard Sandiford8ee1b772013-11-22 16:58:05 +000023#include "llvm/Transforms/Utils/BasicBlockUtils.h"
24
25using namespace llvm;
26
Chandler Carruth964daaa2014-04-22 02:55:47 +000027#define DEBUG_TYPE "scalarizer"
28
Richard Sandiford8ee1b772013-11-22 16:58:05 +000029namespace {
30// Used to store the scattered form of a vector.
31typedef SmallVector<Value *, 8> ValueVector;
32
33// Used to map a vector Value to its scattered form. We use std::map
34// because we want iterators to persist across insertion and because the
35// values are relatively large.
36typedef std::map<Value *, ValueVector> ScatterMap;
37
38// Lists Instructions that have been replaced with scalar implementations,
39// along with a pointer to their scattered forms.
40typedef SmallVector<std::pair<Instruction *, ValueVector *>, 16> GatherList;
41
42// Provides a very limited vector-like interface for lazily accessing one
43// component of a scattered vector or vector pointer.
44class Scatterer {
45public:
Richard Sandiford3548cbb2013-12-23 14:45:00 +000046 Scatterer() {}
47
Richard Sandiford8ee1b772013-11-22 16:58:05 +000048 // Scatter V into Size components. If new instructions are needed,
49 // insert them before BBI in BB. If Cache is nonnull, use it to cache
50 // the results.
51 Scatterer(BasicBlock *bb, BasicBlock::iterator bbi, Value *v,
Craig Topperf40110f2014-04-25 05:29:35 +000052 ValueVector *cachePtr = nullptr);
Richard Sandiford8ee1b772013-11-22 16:58:05 +000053
54 // Return component I, creating a new Value for it if necessary.
55 Value *operator[](unsigned I);
56
57 // Return the number of components.
58 unsigned size() const { return Size; }
59
60private:
61 BasicBlock *BB;
62 BasicBlock::iterator BBI;
63 Value *V;
64 ValueVector *CachePtr;
65 PointerType *PtrTy;
66 ValueVector Tmp;
67 unsigned Size;
68};
69
70// FCmpSpliiter(FCI)(Builder, X, Y, Name) uses Builder to create an FCmp
71// called Name that compares X and Y in the same way as FCI.
72struct FCmpSplitter {
73 FCmpSplitter(FCmpInst &fci) : FCI(fci) {}
74 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1,
75 const Twine &Name) const {
76 return Builder.CreateFCmp(FCI.getPredicate(), Op0, Op1, Name);
77 }
78 FCmpInst &FCI;
79};
80
81// ICmpSpliiter(ICI)(Builder, X, Y, Name) uses Builder to create an ICmp
82// called Name that compares X and Y in the same way as ICI.
83struct ICmpSplitter {
84 ICmpSplitter(ICmpInst &ici) : ICI(ici) {}
85 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1,
86 const Twine &Name) const {
87 return Builder.CreateICmp(ICI.getPredicate(), Op0, Op1, Name);
88 }
89 ICmpInst &ICI;
90};
91
92// BinarySpliiter(BO)(Builder, X, Y, Name) uses Builder to create
93// a binary operator like BO called Name with operands X and Y.
94struct BinarySplitter {
95 BinarySplitter(BinaryOperator &bo) : BO(bo) {}
96 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1,
97 const Twine &Name) const {
98 return Builder.CreateBinOp(BO.getOpcode(), Op0, Op1, Name);
99 }
100 BinaryOperator &BO;
101};
102
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000103// Information about a load or store that we're scalarizing.
104struct VectorLayout {
Craig Topperf40110f2014-04-25 05:29:35 +0000105 VectorLayout() : VecTy(nullptr), ElemTy(nullptr), VecAlign(0), ElemSize(0) {}
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000106
107 // Return the alignment of element I.
108 uint64_t getElemAlign(unsigned I) {
109 return MinAlign(VecAlign, I * ElemSize);
110 }
111
112 // The type of the vector.
113 VectorType *VecTy;
114
115 // The type of each element.
116 Type *ElemTy;
117
118 // The alignment of the vector.
119 uint64_t VecAlign;
120
121 // The size of each element.
122 uint64_t ElemSize;
123};
124
125class Scalarizer : public FunctionPass,
126 public InstVisitor<Scalarizer, bool> {
127public:
128 static char ID;
129
130 Scalarizer() :
131 FunctionPass(ID) {
132 initializeScalarizerPass(*PassRegistry::getPassRegistry());
133 }
134
Craig Topper3e4c6972014-03-05 09:10:37 +0000135 bool doInitialization(Module &M) override;
136 bool runOnFunction(Function &F) override;
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000137
138 // InstVisitor methods. They return true if the instruction was scalarized,
139 // false if nothing changed.
140 bool visitInstruction(Instruction &) { return false; }
141 bool visitSelectInst(SelectInst &SI);
142 bool visitICmpInst(ICmpInst &);
143 bool visitFCmpInst(FCmpInst &);
144 bool visitBinaryOperator(BinaryOperator &);
145 bool visitGetElementPtrInst(GetElementPtrInst &);
146 bool visitCastInst(CastInst &);
147 bool visitBitCastInst(BitCastInst &);
148 bool visitShuffleVectorInst(ShuffleVectorInst &);
149 bool visitPHINode(PHINode &);
150 bool visitLoadInst(LoadInst &);
151 bool visitStoreInst(StoreInst &);
Matt Arsenault7cddfed2016-07-25 20:02:54 +0000152 bool visitCallInst(CallInst &I);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000153
Chris Bieneman732e0aa2014-10-15 21:54:35 +0000154 static void registerOptions() {
155 // This is disabled by default because having separate loads and stores
156 // makes it more likely that the -combiner-alias-analysis limits will be
157 // reached.
158 OptionRegistry::registerOption<bool, Scalarizer,
159 &Scalarizer::ScalarizeLoadStore>(
160 "scalarize-load-store",
161 "Allow the scalarizer pass to scalarize loads and store", false);
162 }
163
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000164private:
165 Scatterer scatter(Instruction *, Value *);
166 void gather(Instruction *, const ValueVector &);
167 bool canTransferMetadata(unsigned Kind);
168 void transferMetadata(Instruction *, const ValueVector &);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000169 bool getVectorLayout(Type *, unsigned, VectorLayout &, const DataLayout &);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000170 bool finish();
171
172 template<typename T> bool splitBinary(Instruction &, const T &);
173
Matt Arsenault7cddfed2016-07-25 20:02:54 +0000174 bool splitCall(CallInst &CI);
175
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000176 ScatterMap Scattered;
177 GatherList Gathered;
178 unsigned ParallelLoopAccessMDKind;
Chris Bieneman732e0aa2014-10-15 21:54:35 +0000179 bool ScalarizeLoadStore;
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000180};
181
182char Scalarizer::ID = 0;
183} // end anonymous namespace
184
Chris Bieneman732e0aa2014-10-15 21:54:35 +0000185INITIALIZE_PASS_WITH_OPTIONS(Scalarizer, "scalarizer",
Chris Bieneman5c4e9552014-10-15 23:11:35 +0000186 "Scalarize vector operations", false, false)
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000187
188Scatterer::Scatterer(BasicBlock *bb, BasicBlock::iterator bbi, Value *v,
189 ValueVector *cachePtr)
190 : BB(bb), BBI(bbi), V(v), CachePtr(cachePtr) {
191 Type *Ty = V->getType();
192 PtrTy = dyn_cast<PointerType>(Ty);
193 if (PtrTy)
194 Ty = PtrTy->getElementType();
195 Size = Ty->getVectorNumElements();
196 if (!CachePtr)
Craig Topperf40110f2014-04-25 05:29:35 +0000197 Tmp.resize(Size, nullptr);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000198 else if (CachePtr->empty())
Craig Topperf40110f2014-04-25 05:29:35 +0000199 CachePtr->resize(Size, nullptr);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000200 else
201 assert(Size == CachePtr->size() && "Inconsistent vector sizes");
202}
203
204// Return component I, creating a new Value for it if necessary.
205Value *Scatterer::operator[](unsigned I) {
206 ValueVector &CV = (CachePtr ? *CachePtr : Tmp);
207 // Try to reuse a previous value.
208 if (CV[I])
209 return CV[I];
210 IRBuilder<> Builder(BB, BBI);
211 if (PtrTy) {
212 if (!CV[0]) {
213 Type *Ty =
214 PointerType::get(PtrTy->getElementType()->getVectorElementType(),
215 PtrTy->getAddressSpace());
216 CV[0] = Builder.CreateBitCast(V, Ty, V->getName() + ".i0");
217 }
218 if (I != 0)
David Blaikie95d3e532015-04-03 23:03:54 +0000219 CV[I] = Builder.CreateConstGEP1_32(nullptr, CV[0], I,
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000220 V->getName() + ".i" + Twine(I));
221 } else {
222 // Search through a chain of InsertElementInsts looking for element I.
223 // Record other elements in the cache. The new V is still suitable
224 // for all uncached indices.
225 for (;;) {
226 InsertElementInst *Insert = dyn_cast<InsertElementInst>(V);
227 if (!Insert)
228 break;
229 ConstantInt *Idx = dyn_cast<ConstantInt>(Insert->getOperand(2));
230 if (!Idx)
231 break;
232 unsigned J = Idx->getZExtValue();
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000233 V = Insert->getOperand(0);
Fraser Cormacke29ab2b2015-08-10 14:48:47 +0000234 if (I == J) {
235 CV[J] = Insert->getOperand(1);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000236 return CV[J];
Fraser Cormacke29ab2b2015-08-10 14:48:47 +0000237 } else if (!CV[J]) {
238 // Only cache the first entry we find for each index we're not actively
239 // searching for. This prevents us from going too far up the chain and
240 // caching incorrect entries.
241 CV[J] = Insert->getOperand(1);
242 }
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000243 }
244 CV[I] = Builder.CreateExtractElement(V, Builder.getInt32(I),
245 V->getName() + ".i" + Twine(I));
246 }
247 return CV[I];
248}
249
250bool Scalarizer::doInitialization(Module &M) {
251 ParallelLoopAccessMDKind =
Chris Bieneman732e0aa2014-10-15 21:54:35 +0000252 M.getContext().getMDKindID("llvm.mem.parallel_loop_access");
253 ScalarizeLoadStore =
Chris Bieneman5c4e9552014-10-15 23:11:35 +0000254 M.getContext().getOption<bool, Scalarizer, &Scalarizer::ScalarizeLoadStore>();
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000255 return false;
256}
257
258bool Scalarizer::runOnFunction(Function &F) {
Andrew Kaylor50271f72016-05-03 22:32:30 +0000259 if (skipFunction(F))
260 return false;
Matt Wala878c1442015-07-23 20:53:46 +0000261 assert(Gathered.empty() && Scattered.empty());
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000262 for (BasicBlock &BB : F) {
263 for (BasicBlock::iterator II = BB.begin(), IE = BB.end(); II != IE;) {
264 Instruction *I = &*II;
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000265 bool Done = visit(I);
266 ++II;
267 if (Done && I->getType()->isVoidTy())
268 I->eraseFromParent();
269 }
270 }
271 return finish();
272}
273
274// Return a scattered form of V that can be accessed by Point. V must be a
275// vector or a pointer to a vector.
276Scatterer Scalarizer::scatter(Instruction *Point, Value *V) {
277 if (Argument *VArg = dyn_cast<Argument>(V)) {
278 // Put the scattered form of arguments in the entry block,
279 // so that it can be used everywhere.
280 Function *F = VArg->getParent();
281 BasicBlock *BB = &F->getEntryBlock();
282 return Scatterer(BB, BB->begin(), V, &Scattered[V]);
283 }
284 if (Instruction *VOp = dyn_cast<Instruction>(V)) {
285 // Put the scattered form of an instruction directly after the
286 // instruction.
287 BasicBlock *BB = VOp->getParent();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000288 return Scatterer(BB, std::next(BasicBlock::iterator(VOp)),
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000289 V, &Scattered[V]);
290 }
291 // In the fallback case, just put the scattered before Point and
292 // keep the result local to Point.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000293 return Scatterer(Point->getParent(), Point->getIterator(), V);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000294}
295
296// Replace Op with the gathered form of the components in CV. Defer the
297// deletion of Op and creation of the gathered form to the end of the pass,
298// so that we can avoid creating the gathered form if all uses of Op are
299// replaced with uses of CV.
300void Scalarizer::gather(Instruction *Op, const ValueVector &CV) {
301 // Since we're not deleting Op yet, stub out its operands, so that it
302 // doesn't make anything live unnecessarily.
303 for (unsigned I = 0, E = Op->getNumOperands(); I != E; ++I)
304 Op->setOperand(I, UndefValue::get(Op->getOperand(I)->getType()));
305
306 transferMetadata(Op, CV);
307
308 // If we already have a scattered form of Op (created from ExtractElements
309 // of Op itself), replace them with the new form.
310 ValueVector &SV = Scattered[Op];
311 if (!SV.empty()) {
312 for (unsigned I = 0, E = SV.size(); I != E; ++I) {
Mehdi Amini8484f922016-07-14 01:31:25 +0000313 Value *V = SV[I];
314 if (V == nullptr)
315 continue;
316
317 Instruction *Old = cast<Instruction>(V);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000318 CV[I]->takeName(Old);
319 Old->replaceAllUsesWith(CV[I]);
320 Old->eraseFromParent();
321 }
322 }
323 SV = CV;
324 Gathered.push_back(GatherList::value_type(Op, &SV));
325}
326
327// Return true if it is safe to transfer the given metadata tag from
328// vector to scalar instructions.
329bool Scalarizer::canTransferMetadata(unsigned Tag) {
330 return (Tag == LLVMContext::MD_tbaa
331 || Tag == LLVMContext::MD_fpmath
332 || Tag == LLVMContext::MD_tbaa_struct
333 || Tag == LLVMContext::MD_invariant_load
Hal Finkel94146652014-07-24 14:25:39 +0000334 || Tag == LLVMContext::MD_alias_scope
335 || Tag == LLVMContext::MD_noalias
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000336 || Tag == ParallelLoopAccessMDKind);
337}
338
339// Transfer metadata from Op to the instructions in CV if it is known
340// to be safe to do so.
341void Scalarizer::transferMetadata(Instruction *Op, const ValueVector &CV) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000342 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000343 Op->getAllMetadataOtherThanDebugLoc(MDs);
344 for (unsigned I = 0, E = CV.size(); I != E; ++I) {
345 if (Instruction *New = dyn_cast<Instruction>(CV[I])) {
Benjamin Kramer135f7352016-06-26 12:28:59 +0000346 for (const auto &MD : MDs)
347 if (canTransferMetadata(MD.first))
348 New->setMetadata(MD.first, MD.second);
Patrik Hagglund0acaefa2016-06-16 10:48:54 +0000349 if (Op->getDebugLoc() && !New->getDebugLoc())
350 New->setDebugLoc(Op->getDebugLoc());
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000351 }
352 }
353}
354
355// Try to fill in Layout from Ty, returning true on success. Alignment is
356// the alignment of the vector, or 0 if the ABI default should be used.
357bool Scalarizer::getVectorLayout(Type *Ty, unsigned Alignment,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000358 VectorLayout &Layout, const DataLayout &DL) {
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000359 // Make sure we're dealing with a vector.
360 Layout.VecTy = dyn_cast<VectorType>(Ty);
361 if (!Layout.VecTy)
362 return false;
363
364 // Check that we're dealing with full-byte elements.
365 Layout.ElemTy = Layout.VecTy->getElementType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000366 if (DL.getTypeSizeInBits(Layout.ElemTy) !=
367 DL.getTypeStoreSizeInBits(Layout.ElemTy))
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000368 return false;
369
370 if (Alignment)
371 Layout.VecAlign = Alignment;
372 else
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000373 Layout.VecAlign = DL.getABITypeAlignment(Layout.VecTy);
374 Layout.ElemSize = DL.getTypeStoreSize(Layout.ElemTy);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000375 return true;
376}
377
378// Scalarize two-operand instruction I, using Split(Builder, X, Y, Name)
379// to create an instruction like I with operands X and Y and name Name.
380template<typename Splitter>
381bool Scalarizer::splitBinary(Instruction &I, const Splitter &Split) {
382 VectorType *VT = dyn_cast<VectorType>(I.getType());
383 if (!VT)
384 return false;
385
386 unsigned NumElems = VT->getNumElements();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000387 IRBuilder<> Builder(&I);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000388 Scatterer Op0 = scatter(&I, I.getOperand(0));
389 Scatterer Op1 = scatter(&I, I.getOperand(1));
390 assert(Op0.size() == NumElems && "Mismatched binary operation");
391 assert(Op1.size() == NumElems && "Mismatched binary operation");
392 ValueVector Res;
393 Res.resize(NumElems);
394 for (unsigned Elem = 0; Elem < NumElems; ++Elem)
395 Res[Elem] = Split(Builder, Op0[Elem], Op1[Elem],
396 I.getName() + ".i" + Twine(Elem));
397 gather(&I, Res);
398 return true;
399}
400
Matt Arsenault7cddfed2016-07-25 20:02:54 +0000401static bool isTriviallyScalariable(Intrinsic::ID ID) {
402 return isTriviallyVectorizable(ID);
403}
404
405// All of the current scalarizable intrinsics only have one mangled type.
406static Function *getScalarIntrinsicDeclaration(Module *M,
407 Intrinsic::ID ID,
408 VectorType *Ty) {
409 return Intrinsic::getDeclaration(M, ID, { Ty->getScalarType() });
410}
411
412/// If a call to a vector typed intrinsic function, split into a scalar call per
413/// element if possible for the intrinsic.
414bool Scalarizer::splitCall(CallInst &CI) {
415 VectorType *VT = dyn_cast<VectorType>(CI.getType());
416 if (!VT)
417 return false;
418
419 Function *F = CI.getCalledFunction();
420 if (!F)
421 return false;
422
423 Intrinsic::ID ID = F->getIntrinsicID();
424 if (ID == Intrinsic::not_intrinsic || !isTriviallyScalariable(ID))
425 return false;
426
427 unsigned NumElems = VT->getNumElements();
428 unsigned NumArgs = CI.getNumArgOperands();
429
430 ValueVector ScalarOperands(NumArgs);
431 SmallVector<Scatterer, 8> Scattered(NumArgs);
432
433 Scattered.resize(NumArgs);
434
435 // Assumes that any vector type has the same number of elements as the return
436 // vector type, which is true for all current intrinsics.
437 for (unsigned I = 0; I != NumArgs; ++I) {
438 Value *OpI = CI.getOperand(I);
439 if (OpI->getType()->isVectorTy()) {
440 Scattered[I] = scatter(&CI, OpI);
441 assert(Scattered[I].size() == NumElems && "mismatched call operands");
442 } else {
443 ScalarOperands[I] = OpI;
444 }
445 }
446
447 ValueVector Res(NumElems);
448 ValueVector ScalarCallOps(NumArgs);
449
450 Function *NewIntrin = getScalarIntrinsicDeclaration(F->getParent(), ID, VT);
451 IRBuilder<> Builder(&CI);
452
453 // Perform actual scalarization, taking care to preserve any scalar operands.
454 for (unsigned Elem = 0; Elem < NumElems; ++Elem) {
455 ScalarCallOps.clear();
456
457 for (unsigned J = 0; J != NumArgs; ++J) {
458 if (hasVectorInstrinsicScalarOpd(ID, J))
459 ScalarCallOps.push_back(ScalarOperands[J]);
460 else
461 ScalarCallOps.push_back(Scattered[J][Elem]);
462 }
463
464 Res[Elem] = Builder.CreateCall(NewIntrin, ScalarCallOps,
465 CI.getName() + ".i" + Twine(Elem));
466 }
467
468 gather(&CI, Res);
469 return true;
470}
471
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000472bool Scalarizer::visitSelectInst(SelectInst &SI) {
473 VectorType *VT = dyn_cast<VectorType>(SI.getType());
474 if (!VT)
475 return false;
476
477 unsigned NumElems = VT->getNumElements();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000478 IRBuilder<> Builder(&SI);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000479 Scatterer Op1 = scatter(&SI, SI.getOperand(1));
480 Scatterer Op2 = scatter(&SI, SI.getOperand(2));
481 assert(Op1.size() == NumElems && "Mismatched select");
482 assert(Op2.size() == NumElems && "Mismatched select");
483 ValueVector Res;
484 Res.resize(NumElems);
485
486 if (SI.getOperand(0)->getType()->isVectorTy()) {
487 Scatterer Op0 = scatter(&SI, SI.getOperand(0));
488 assert(Op0.size() == NumElems && "Mismatched select");
489 for (unsigned I = 0; I < NumElems; ++I)
490 Res[I] = Builder.CreateSelect(Op0[I], Op1[I], Op2[I],
491 SI.getName() + ".i" + Twine(I));
492 } else {
493 Value *Op0 = SI.getOperand(0);
494 for (unsigned I = 0; I < NumElems; ++I)
495 Res[I] = Builder.CreateSelect(Op0, Op1[I], Op2[I],
496 SI.getName() + ".i" + Twine(I));
497 }
498 gather(&SI, Res);
499 return true;
500}
501
502bool Scalarizer::visitICmpInst(ICmpInst &ICI) {
503 return splitBinary(ICI, ICmpSplitter(ICI));
504}
505
506bool Scalarizer::visitFCmpInst(FCmpInst &FCI) {
507 return splitBinary(FCI, FCmpSplitter(FCI));
508}
509
510bool Scalarizer::visitBinaryOperator(BinaryOperator &BO) {
511 return splitBinary(BO, BinarySplitter(BO));
512}
513
514bool Scalarizer::visitGetElementPtrInst(GetElementPtrInst &GEPI) {
Richard Sandiford3548cbb2013-12-23 14:45:00 +0000515 VectorType *VT = dyn_cast<VectorType>(GEPI.getType());
516 if (!VT)
517 return false;
518
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000519 IRBuilder<> Builder(&GEPI);
Richard Sandiford3548cbb2013-12-23 14:45:00 +0000520 unsigned NumElems = VT->getNumElements();
521 unsigned NumIndices = GEPI.getNumIndices();
522
Mikael Holmen79235bd2017-03-31 06:29:49 +0000523 // The base pointer might be scalar even if it's a vector GEP. In those cases,
524 // splat the pointer into a vector value, and scatter that vector.
525 Value *Op0 = GEPI.getOperand(0);
526 if (!Op0->getType()->isVectorTy())
527 Op0 = Builder.CreateVectorSplat(NumElems, Op0);
528 Scatterer Base = scatter(&GEPI, Op0);
Richard Sandiford3548cbb2013-12-23 14:45:00 +0000529
530 SmallVector<Scatterer, 8> Ops;
531 Ops.resize(NumIndices);
Mikael Holmen79235bd2017-03-31 06:29:49 +0000532 for (unsigned I = 0; I < NumIndices; ++I) {
533 Value *Op = GEPI.getOperand(I + 1);
534
535 // The indices might be scalars even if it's a vector GEP. In those cases,
536 // splat the scalar into a vector value, and scatter that vector.
537 if (!Op->getType()->isVectorTy())
538 Op = Builder.CreateVectorSplat(NumElems, Op);
539
540 Ops[I] = scatter(&GEPI, Op);
541 }
Richard Sandiford3548cbb2013-12-23 14:45:00 +0000542
543 ValueVector Res;
544 Res.resize(NumElems);
545 for (unsigned I = 0; I < NumElems; ++I) {
546 SmallVector<Value *, 8> Indices;
547 Indices.resize(NumIndices);
548 for (unsigned J = 0; J < NumIndices; ++J)
549 Indices[J] = Ops[J][I];
David Blaikie68d535c2015-03-24 22:38:16 +0000550 Res[I] = Builder.CreateGEP(GEPI.getSourceElementType(), Base[I], Indices,
Richard Sandiford3548cbb2013-12-23 14:45:00 +0000551 GEPI.getName() + ".i" + Twine(I));
552 if (GEPI.isInBounds())
553 if (GetElementPtrInst *NewGEPI = dyn_cast<GetElementPtrInst>(Res[I]))
554 NewGEPI->setIsInBounds();
555 }
556 gather(&GEPI, Res);
557 return true;
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000558}
559
560bool Scalarizer::visitCastInst(CastInst &CI) {
561 VectorType *VT = dyn_cast<VectorType>(CI.getDestTy());
562 if (!VT)
563 return false;
564
565 unsigned NumElems = VT->getNumElements();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000566 IRBuilder<> Builder(&CI);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000567 Scatterer Op0 = scatter(&CI, CI.getOperand(0));
568 assert(Op0.size() == NumElems && "Mismatched cast");
569 ValueVector Res;
570 Res.resize(NumElems);
571 for (unsigned I = 0; I < NumElems; ++I)
572 Res[I] = Builder.CreateCast(CI.getOpcode(), Op0[I], VT->getElementType(),
573 CI.getName() + ".i" + Twine(I));
574 gather(&CI, Res);
575 return true;
576}
577
578bool Scalarizer::visitBitCastInst(BitCastInst &BCI) {
579 VectorType *DstVT = dyn_cast<VectorType>(BCI.getDestTy());
580 VectorType *SrcVT = dyn_cast<VectorType>(BCI.getSrcTy());
581 if (!DstVT || !SrcVT)
582 return false;
583
584 unsigned DstNumElems = DstVT->getNumElements();
585 unsigned SrcNumElems = SrcVT->getNumElements();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000586 IRBuilder<> Builder(&BCI);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000587 Scatterer Op0 = scatter(&BCI, BCI.getOperand(0));
588 ValueVector Res;
589 Res.resize(DstNumElems);
590
591 if (DstNumElems == SrcNumElems) {
592 for (unsigned I = 0; I < DstNumElems; ++I)
593 Res[I] = Builder.CreateBitCast(Op0[I], DstVT->getElementType(),
594 BCI.getName() + ".i" + Twine(I));
595 } else if (DstNumElems > SrcNumElems) {
596 // <M x t1> -> <N*M x t2>. Convert each t1 to <N x t2> and copy the
597 // individual elements to the destination.
598 unsigned FanOut = DstNumElems / SrcNumElems;
599 Type *MidTy = VectorType::get(DstVT->getElementType(), FanOut);
600 unsigned ResI = 0;
601 for (unsigned Op0I = 0; Op0I < SrcNumElems; ++Op0I) {
602 Value *V = Op0[Op0I];
603 Instruction *VI;
604 // Look through any existing bitcasts before converting to <N x t2>.
605 // In the best case, the resulting conversion might be a no-op.
606 while ((VI = dyn_cast<Instruction>(V)) &&
607 VI->getOpcode() == Instruction::BitCast)
608 V = VI->getOperand(0);
609 V = Builder.CreateBitCast(V, MidTy, V->getName() + ".cast");
610 Scatterer Mid = scatter(&BCI, V);
611 for (unsigned MidI = 0; MidI < FanOut; ++MidI)
612 Res[ResI++] = Mid[MidI];
613 }
614 } else {
615 // <N*M x t1> -> <M x t2>. Convert each group of <N x t1> into a t2.
616 unsigned FanIn = SrcNumElems / DstNumElems;
617 Type *MidTy = VectorType::get(SrcVT->getElementType(), FanIn);
618 unsigned Op0I = 0;
619 for (unsigned ResI = 0; ResI < DstNumElems; ++ResI) {
620 Value *V = UndefValue::get(MidTy);
621 for (unsigned MidI = 0; MidI < FanIn; ++MidI)
622 V = Builder.CreateInsertElement(V, Op0[Op0I++], Builder.getInt32(MidI),
623 BCI.getName() + ".i" + Twine(ResI)
624 + ".upto" + Twine(MidI));
625 Res[ResI] = Builder.CreateBitCast(V, DstVT->getElementType(),
626 BCI.getName() + ".i" + Twine(ResI));
627 }
628 }
629 gather(&BCI, Res);
630 return true;
631}
632
633bool Scalarizer::visitShuffleVectorInst(ShuffleVectorInst &SVI) {
634 VectorType *VT = dyn_cast<VectorType>(SVI.getType());
635 if (!VT)
636 return false;
637
638 unsigned NumElems = VT->getNumElements();
639 Scatterer Op0 = scatter(&SVI, SVI.getOperand(0));
640 Scatterer Op1 = scatter(&SVI, SVI.getOperand(1));
641 ValueVector Res;
642 Res.resize(NumElems);
643
644 for (unsigned I = 0; I < NumElems; ++I) {
645 int Selector = SVI.getMaskValue(I);
646 if (Selector < 0)
647 Res[I] = UndefValue::get(VT->getElementType());
648 else if (unsigned(Selector) < Op0.size())
649 Res[I] = Op0[Selector];
650 else
651 Res[I] = Op1[Selector - Op0.size()];
652 }
653 gather(&SVI, Res);
654 return true;
655}
656
657bool Scalarizer::visitPHINode(PHINode &PHI) {
658 VectorType *VT = dyn_cast<VectorType>(PHI.getType());
659 if (!VT)
660 return false;
661
662 unsigned NumElems = VT->getNumElements();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000663 IRBuilder<> Builder(&PHI);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000664 ValueVector Res;
665 Res.resize(NumElems);
666
667 unsigned NumOps = PHI.getNumOperands();
668 for (unsigned I = 0; I < NumElems; ++I)
669 Res[I] = Builder.CreatePHI(VT->getElementType(), NumOps,
670 PHI.getName() + ".i" + Twine(I));
671
672 for (unsigned I = 0; I < NumOps; ++I) {
673 Scatterer Op = scatter(&PHI, PHI.getIncomingValue(I));
674 BasicBlock *IncomingBlock = PHI.getIncomingBlock(I);
675 for (unsigned J = 0; J < NumElems; ++J)
676 cast<PHINode>(Res[J])->addIncoming(Op[J], IncomingBlock);
677 }
678 gather(&PHI, Res);
679 return true;
680}
681
682bool Scalarizer::visitLoadInst(LoadInst &LI) {
683 if (!ScalarizeLoadStore)
684 return false;
685 if (!LI.isSimple())
686 return false;
687
688 VectorLayout Layout;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000689 if (!getVectorLayout(LI.getType(), LI.getAlignment(), Layout,
690 LI.getModule()->getDataLayout()))
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000691 return false;
692
693 unsigned NumElems = Layout.VecTy->getNumElements();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000694 IRBuilder<> Builder(&LI);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000695 Scatterer Ptr = scatter(&LI, LI.getPointerOperand());
696 ValueVector Res;
697 Res.resize(NumElems);
698
699 for (unsigned I = 0; I < NumElems; ++I)
700 Res[I] = Builder.CreateAlignedLoad(Ptr[I], Layout.getElemAlign(I),
701 LI.getName() + ".i" + Twine(I));
702 gather(&LI, Res);
703 return true;
704}
705
706bool Scalarizer::visitStoreInst(StoreInst &SI) {
707 if (!ScalarizeLoadStore)
708 return false;
709 if (!SI.isSimple())
710 return false;
711
712 VectorLayout Layout;
713 Value *FullValue = SI.getValueOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000714 if (!getVectorLayout(FullValue->getType(), SI.getAlignment(), Layout,
715 SI.getModule()->getDataLayout()))
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000716 return false;
717
718 unsigned NumElems = Layout.VecTy->getNumElements();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000719 IRBuilder<> Builder(&SI);
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000720 Scatterer Ptr = scatter(&SI, SI.getPointerOperand());
721 Scatterer Val = scatter(&SI, FullValue);
722
723 ValueVector Stores;
724 Stores.resize(NumElems);
725 for (unsigned I = 0; I < NumElems; ++I) {
726 unsigned Align = Layout.getElemAlign(I);
727 Stores[I] = Builder.CreateAlignedStore(Val[I], Ptr[I], Align);
728 }
729 transferMetadata(&SI, Stores);
730 return true;
731}
732
Matt Arsenault7cddfed2016-07-25 20:02:54 +0000733bool Scalarizer::visitCallInst(CallInst &CI) {
734 return splitCall(CI);
735}
736
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000737// Delete the instructions that we scalarized. If a full vector result
738// is still needed, recreate it using InsertElements.
739bool Scalarizer::finish() {
Matt Wala878c1442015-07-23 20:53:46 +0000740 // The presence of data in Gathered or Scattered indicates changes
741 // made to the Function.
742 if (Gathered.empty() && Scattered.empty())
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000743 return false;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000744 for (const auto &GMI : Gathered) {
745 Instruction *Op = GMI.first;
746 ValueVector &CV = *GMI.second;
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000747 if (!Op->use_empty()) {
748 // The value is still needed, so recreate it using a series of
749 // InsertElements.
750 Type *Ty = Op->getType();
751 Value *Res = UndefValue::get(Ty);
Richard Sandiford1fb5c132013-12-23 14:51:56 +0000752 BasicBlock *BB = Op->getParent();
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000753 unsigned Count = Ty->getVectorNumElements();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000754 IRBuilder<> Builder(Op);
Richard Sandiford1fb5c132013-12-23 14:51:56 +0000755 if (isa<PHINode>(Op))
756 Builder.SetInsertPoint(BB, BB->getFirstInsertionPt());
Richard Sandiford8ee1b772013-11-22 16:58:05 +0000757 for (unsigned I = 0; I < Count; ++I)
758 Res = Builder.CreateInsertElement(Res, CV[I], Builder.getInt32(I),
759 Op->getName() + ".upto" + Twine(I));
760 Res->takeName(Op);
761 Op->replaceAllUsesWith(Res);
762 }
763 Op->eraseFromParent();
764 }
765 Gathered.clear();
766 Scattered.clear();
767 return true;
768}
769
770FunctionPass *llvm::createScalarizerPass() {
771 return new Scalarizer();
772}