LLVM 19.0.0git
InterleavedAccessPass.cpp
Go to the documentation of this file.
1//===- InterleavedAccessPass.cpp ------------------------------------------===//
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 file implements the Interleaved Access pass, which identifies
10// interleaved memory accesses and transforms them into target specific
11// intrinsics.
12//
13// An interleaved load reads data from memory into several vectors, with
14// DE-interleaving the data on a factor. An interleaved store writes several
15// vectors to memory with RE-interleaving the data on a factor.
16//
17// As interleaved accesses are difficult to identified in CodeGen (mainly
18// because the VECTOR_SHUFFLE DAG node is quite different from the shufflevector
19// IR), we identify and transform them to intrinsics in this pass so the
20// intrinsics can be easily matched into target specific instructions later in
21// CodeGen.
22//
23// E.g. An interleaved load (Factor = 2):
24// %wide.vec = load <8 x i32>, <8 x i32>* %ptr
25// %v0 = shuffle <8 x i32> %wide.vec, <8 x i32> poison, <0, 2, 4, 6>
26// %v1 = shuffle <8 x i32> %wide.vec, <8 x i32> poison, <1, 3, 5, 7>
27//
28// It could be transformed into a ld2 intrinsic in AArch64 backend or a vld2
29// intrinsic in ARM backend.
30//
31// In X86, this can be further optimized into a set of target
32// specific loads followed by an optimized sequence of shuffles.
33//
34// E.g. An interleaved store (Factor = 3):
35// %i.vec = shuffle <8 x i32> %v0, <8 x i32> %v1,
36// <0, 4, 8, 1, 5, 9, 2, 6, 10, 3, 7, 11>
37// store <12 x i32> %i.vec, <12 x i32>* %ptr
38//
39// It could be transformed into a st3 intrinsic in AArch64 backend or a vst3
40// intrinsic in ARM backend.
41//
42// Similarly, a set of interleaved stores can be transformed into an optimized
43// sequence of shuffles followed by a set of target specific stores for X86.
44//
45//===----------------------------------------------------------------------===//
46
47#include "llvm/ADT/ArrayRef.h"
48#include "llvm/ADT/DenseMap.h"
49#include "llvm/ADT/SetVector.h"
55#include "llvm/IR/Constants.h"
56#include "llvm/IR/Dominators.h"
57#include "llvm/IR/Function.h"
58#include "llvm/IR/IRBuilder.h"
60#include "llvm/IR/Instruction.h"
64#include "llvm/Pass.h"
67#include "llvm/Support/Debug.h"
72#include <cassert>
73#include <utility>
74
75using namespace llvm;
76
77#define DEBUG_TYPE "interleaved-access"
78
80 "lower-interleaved-accesses",
81 cl::desc("Enable lowering interleaved accesses to intrinsics"),
82 cl::init(true), cl::Hidden);
83
84namespace {
85
86class InterleavedAccessImpl {
87 friend class InterleavedAccess;
88
89public:
90 InterleavedAccessImpl() = default;
91 InterleavedAccessImpl(DominatorTree *DT, const TargetLowering *TLI)
92 : DT(DT), TLI(TLI), MaxFactor(TLI->getMaxSupportedInterleaveFactor()) {}
94
95private:
96 DominatorTree *DT = nullptr;
97 const TargetLowering *TLI = nullptr;
98
99 /// The maximum supported interleave factor.
100 unsigned MaxFactor = 0u;
101
102 /// Transform an interleaved load into target specific intrinsics.
103 bool lowerInterleavedLoad(LoadInst *LI,
105
106 /// Transform an interleaved store into target specific intrinsics.
107 bool lowerInterleavedStore(StoreInst *SI,
109
110 /// Transform a load and a deinterleave intrinsic into target specific
111 /// instructions.
112 bool lowerDeinterleaveIntrinsic(IntrinsicInst *II,
114
115 /// Transform an interleave intrinsic and a store into target specific
116 /// instructions.
117 bool lowerInterleaveIntrinsic(IntrinsicInst *II,
119
120 /// Returns true if the uses of an interleaved load by the
121 /// extractelement instructions in \p Extracts can be replaced by uses of the
122 /// shufflevector instructions in \p Shuffles instead. If so, the necessary
123 /// replacements are also performed.
124 bool tryReplaceExtracts(ArrayRef<ExtractElementInst *> Extracts,
126
127 /// Given a number of shuffles of the form shuffle(binop(x,y)), convert them
128 /// to binop(shuffle(x), shuffle(y)) to allow the formation of an
129 /// interleaving load. Any newly created shuffles that operate on \p LI will
130 /// be added to \p Shuffles. Returns true, if any changes to the IR have been
131 /// made.
132 bool replaceBinOpShuffles(ArrayRef<ShuffleVectorInst *> BinOpShuffles,
134 LoadInst *LI);
135};
136
137class InterleavedAccess : public FunctionPass {
138 InterleavedAccessImpl Impl;
139
140public:
141 static char ID;
142
143 InterleavedAccess() : FunctionPass(ID) {
145 }
146
147 StringRef getPassName() const override { return "Interleaved Access Pass"; }
148
149 bool runOnFunction(Function &F) override;
150
151 void getAnalysisUsage(AnalysisUsage &AU) const override {
153 AU.setPreservesCFG();
154 }
155};
156
157} // end anonymous namespace.
158
161 auto *DT = &FAM.getResult<DominatorTreeAnalysis>(F);
162 auto *TLI = TM->getSubtargetImpl(F)->getTargetLowering();
163 InterleavedAccessImpl Impl(DT, TLI);
164 bool Changed = Impl.runOnFunction(F);
165
166 if (!Changed)
167 return PreservedAnalyses::all();
168
171 return PA;
172}
173
174char InterleavedAccess::ID = 0;
175
176bool InterleavedAccess::runOnFunction(Function &F) {
177 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>();
178 if (!TPC || !LowerInterleavedAccesses)
179 return false;
180
181 LLVM_DEBUG(dbgs() << "*** " << getPassName() << ": " << F.getName() << "\n");
182
183 Impl.DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
184 auto &TM = TPC->getTM<TargetMachine>();
185 Impl.TLI = TM.getSubtargetImpl(F)->getTargetLowering();
186 Impl.MaxFactor = Impl.TLI->getMaxSupportedInterleaveFactor();
187
188 return Impl.runOnFunction(F);
189}
190
192 "Lower interleaved memory accesses to target specific intrinsics", false,
193 false)
196 "Lower interleaved memory accesses to target specific intrinsics", false,
197 false)
198
200 return new InterleavedAccess();
201}
202
203/// Check if the mask is a DE-interleave mask of the given factor
204/// \p Factor like:
205/// <Index, Index+Factor, ..., Index+(NumElts-1)*Factor>
206static bool isDeInterleaveMaskOfFactor(ArrayRef<int> Mask, unsigned Factor,
207 unsigned &Index) {
208 // Check all potential start indices from 0 to (Factor - 1).
209 for (Index = 0; Index < Factor; Index++) {
210 unsigned i = 0;
211
212 // Check that elements are in ascending order by Factor. Ignore undef
213 // elements.
214 for (; i < Mask.size(); i++)
215 if (Mask[i] >= 0 && static_cast<unsigned>(Mask[i]) != Index + i * Factor)
216 break;
217
218 if (i == Mask.size())
219 return true;
220 }
221
222 return false;
223}
224
225/// Check if the mask is a DE-interleave mask for an interleaved load.
226///
227/// E.g. DE-interleave masks (Factor = 2) could be:
228/// <0, 2, 4, 6> (mask of index 0 to extract even elements)
229/// <1, 3, 5, 7> (mask of index 1 to extract odd elements)
230static bool isDeInterleaveMask(ArrayRef<int> Mask, unsigned &Factor,
231 unsigned &Index, unsigned MaxFactor,
232 unsigned NumLoadElements) {
233 if (Mask.size() < 2)
234 return false;
235
236 // Check potential Factors.
237 for (Factor = 2; Factor <= MaxFactor; Factor++) {
238 // Make sure we don't produce a load wider than the input load.
239 if (Mask.size() * Factor > NumLoadElements)
240 return false;
241 if (isDeInterleaveMaskOfFactor(Mask, Factor, Index))
242 return true;
243 }
244
245 return false;
246}
247
248/// Check if the mask can be used in an interleaved store.
249//
250/// It checks for a more general pattern than the RE-interleave mask.
251/// I.e. <x, y, ... z, x+1, y+1, ...z+1, x+2, y+2, ...z+2, ...>
252/// E.g. For a Factor of 2 (LaneLen=4): <4, 32, 5, 33, 6, 34, 7, 35>
253/// E.g. For a Factor of 3 (LaneLen=4): <4, 32, 16, 5, 33, 17, 6, 34, 18, 7, 35, 19>
254/// E.g. For a Factor of 4 (LaneLen=2): <8, 2, 12, 4, 9, 3, 13, 5>
255///
256/// The particular case of an RE-interleave mask is:
257/// I.e. <0, LaneLen, ... , LaneLen*(Factor - 1), 1, LaneLen + 1, ...>
258/// E.g. For a Factor of 2 (LaneLen=4): <0, 4, 1, 5, 2, 6, 3, 7>
259static bool isReInterleaveMask(ShuffleVectorInst *SVI, unsigned &Factor,
260 unsigned MaxFactor) {
261 unsigned NumElts = SVI->getShuffleMask().size();
262 if (NumElts < 4)
263 return false;
264
265 // Check potential Factors.
266 for (Factor = 2; Factor <= MaxFactor; Factor++) {
267 if (SVI->isInterleave(Factor))
268 return true;
269 }
270
271 return false;
272}
273
274bool InterleavedAccessImpl::lowerInterleavedLoad(
276 if (!LI->isSimple() || isa<ScalableVectorType>(LI->getType()))
277 return false;
278
279 // Check if all users of this load are shufflevectors. If we encounter any
280 // users that are extractelement instructions or binary operators, we save
281 // them to later check if they can be modified to extract from one of the
282 // shufflevectors instead of the load.
283
286 // BinOpShuffles need to be handled a single time in case both operands of the
287 // binop are the same load.
289
290 for (auto *User : LI->users()) {
291 auto *Extract = dyn_cast<ExtractElementInst>(User);
292 if (Extract && isa<ConstantInt>(Extract->getIndexOperand())) {
293 Extracts.push_back(Extract);
294 continue;
295 }
296 if (auto *BI = dyn_cast<BinaryOperator>(User)) {
297 if (!BI->user_empty() && all_of(BI->users(), [](auto *U) {
298 auto *SVI = dyn_cast<ShuffleVectorInst>(U);
299 return SVI && isa<UndefValue>(SVI->getOperand(1));
300 })) {
301 for (auto *SVI : BI->users())
302 BinOpShuffles.insert(cast<ShuffleVectorInst>(SVI));
303 continue;
304 }
305 }
306 auto *SVI = dyn_cast<ShuffleVectorInst>(User);
307 if (!SVI || !isa<UndefValue>(SVI->getOperand(1)))
308 return false;
309
310 Shuffles.push_back(SVI);
311 }
312
313 if (Shuffles.empty() && BinOpShuffles.empty())
314 return false;
315
316 unsigned Factor, Index;
317
318 unsigned NumLoadElements =
319 cast<FixedVectorType>(LI->getType())->getNumElements();
320 auto *FirstSVI = Shuffles.size() > 0 ? Shuffles[0] : BinOpShuffles[0];
321 // Check if the first shufflevector is DE-interleave shuffle.
322 if (!isDeInterleaveMask(FirstSVI->getShuffleMask(), Factor, Index, MaxFactor,
323 NumLoadElements))
324 return false;
325
326 // Holds the corresponding index for each DE-interleave shuffle.
328
329 Type *VecTy = FirstSVI->getType();
330
331 // Check if other shufflevectors are also DE-interleaved of the same type
332 // and factor as the first shufflevector.
333 for (auto *Shuffle : Shuffles) {
334 if (Shuffle->getType() != VecTy)
335 return false;
336 if (!isDeInterleaveMaskOfFactor(Shuffle->getShuffleMask(), Factor,
337 Index))
338 return false;
339
340 assert(Shuffle->getShuffleMask().size() <= NumLoadElements);
341 Indices.push_back(Index);
342 }
343 for (auto *Shuffle : BinOpShuffles) {
344 if (Shuffle->getType() != VecTy)
345 return false;
346 if (!isDeInterleaveMaskOfFactor(Shuffle->getShuffleMask(), Factor,
347 Index))
348 return false;
349
350 assert(Shuffle->getShuffleMask().size() <= NumLoadElements);
351
352 if (cast<Instruction>(Shuffle->getOperand(0))->getOperand(0) == LI)
353 Indices.push_back(Index);
354 if (cast<Instruction>(Shuffle->getOperand(0))->getOperand(1) == LI)
355 Indices.push_back(Index);
356 }
357
358 // Try and modify users of the load that are extractelement instructions to
359 // use the shufflevector instructions instead of the load.
360 if (!tryReplaceExtracts(Extracts, Shuffles))
361 return false;
362
363 bool BinOpShuffleChanged =
364 replaceBinOpShuffles(BinOpShuffles.getArrayRef(), Shuffles, LI);
365
366 LLVM_DEBUG(dbgs() << "IA: Found an interleaved load: " << *LI << "\n");
367
368 // Try to create target specific intrinsics to replace the load and shuffles.
369 if (!TLI->lowerInterleavedLoad(LI, Shuffles, Indices, Factor)) {
370 // If Extracts is not empty, tryReplaceExtracts made changes earlier.
371 return !Extracts.empty() || BinOpShuffleChanged;
372 }
373
374 append_range(DeadInsts, Shuffles);
375
376 DeadInsts.push_back(LI);
377 return true;
378}
379
380bool InterleavedAccessImpl::replaceBinOpShuffles(
381 ArrayRef<ShuffleVectorInst *> BinOpShuffles,
383 for (auto *SVI : BinOpShuffles) {
384 BinaryOperator *BI = cast<BinaryOperator>(SVI->getOperand(0));
385 Type *BIOp0Ty = BI->getOperand(0)->getType();
386 ArrayRef<int> Mask = SVI->getShuffleMask();
387 assert(all_of(Mask, [&](int Idx) {
388 return Idx < (int)cast<FixedVectorType>(BIOp0Ty)->getNumElements();
389 }));
390
391 BasicBlock::iterator insertPos = SVI->getIterator();
392 auto *NewSVI1 =
393 new ShuffleVectorInst(BI->getOperand(0), PoisonValue::get(BIOp0Ty),
394 Mask, SVI->getName(), insertPos);
395 auto *NewSVI2 = new ShuffleVectorInst(
396 BI->getOperand(1), PoisonValue::get(BI->getOperand(1)->getType()), Mask,
397 SVI->getName(), insertPos);
399 BI->getOpcode(), NewSVI1, NewSVI2, BI, BI->getName(), insertPos);
400 SVI->replaceAllUsesWith(NewBI);
401 LLVM_DEBUG(dbgs() << " Replaced: " << *BI << "\n And : " << *SVI
402 << "\n With : " << *NewSVI1 << "\n And : "
403 << *NewSVI2 << "\n And : " << *NewBI << "\n");
405 if (NewSVI1->getOperand(0) == LI)
406 Shuffles.push_back(NewSVI1);
407 if (NewSVI2->getOperand(0) == LI)
408 Shuffles.push_back(NewSVI2);
409 }
410
411 return !BinOpShuffles.empty();
412}
413
414bool InterleavedAccessImpl::tryReplaceExtracts(
417 // If there aren't any extractelement instructions to modify, there's nothing
418 // to do.
419 if (Extracts.empty())
420 return true;
421
422 // Maps extractelement instructions to vector-index pairs. The extractlement
423 // instructions will be modified to use the new vector and index operands.
425
426 for (auto *Extract : Extracts) {
427 // The vector index that is extracted.
428 auto *IndexOperand = cast<ConstantInt>(Extract->getIndexOperand());
429 auto Index = IndexOperand->getSExtValue();
430
431 // Look for a suitable shufflevector instruction. The goal is to modify the
432 // extractelement instruction (which uses an interleaved load) to use one
433 // of the shufflevector instructions instead of the load.
434 for (auto *Shuffle : Shuffles) {
435 // If the shufflevector instruction doesn't dominate the extract, we
436 // can't create a use of it.
437 if (!DT->dominates(Shuffle, Extract))
438 continue;
439
440 // Inspect the indices of the shufflevector instruction. If the shuffle
441 // selects the same index that is extracted, we can modify the
442 // extractelement instruction.
443 SmallVector<int, 4> Indices;
444 Shuffle->getShuffleMask(Indices);
445 for (unsigned I = 0; I < Indices.size(); ++I)
446 if (Indices[I] == Index) {
447 assert(Extract->getOperand(0) == Shuffle->getOperand(0) &&
448 "Vector operations do not match");
449 ReplacementMap[Extract] = std::make_pair(Shuffle, I);
450 break;
451 }
452
453 // If we found a suitable shufflevector instruction, stop looking.
454 if (ReplacementMap.count(Extract))
455 break;
456 }
457
458 // If we did not find a suitable shufflevector instruction, the
459 // extractelement instruction cannot be modified, so we must give up.
460 if (!ReplacementMap.count(Extract))
461 return false;
462 }
463
464 // Finally, perform the replacements.
465 IRBuilder<> Builder(Extracts[0]->getContext());
466 for (auto &Replacement : ReplacementMap) {
467 auto *Extract = Replacement.first;
468 auto *Vector = Replacement.second.first;
469 auto Index = Replacement.second.second;
470 Builder.SetInsertPoint(Extract);
471 Extract->replaceAllUsesWith(Builder.CreateExtractElement(Vector, Index));
472 Extract->eraseFromParent();
473 }
474
475 return true;
476}
477
478bool InterleavedAccessImpl::lowerInterleavedStore(
480 if (!SI->isSimple())
481 return false;
482
483 auto *SVI = dyn_cast<ShuffleVectorInst>(SI->getValueOperand());
484 if (!SVI || !SVI->hasOneUse() || isa<ScalableVectorType>(SVI->getType()))
485 return false;
486
487 // Check if the shufflevector is RE-interleave shuffle.
488 unsigned Factor;
489 if (!isReInterleaveMask(SVI, Factor, MaxFactor))
490 return false;
491
492 LLVM_DEBUG(dbgs() << "IA: Found an interleaved store: " << *SI << "\n");
493
494 // Try to create target specific intrinsics to replace the store and shuffle.
495 if (!TLI->lowerInterleavedStore(SI, SVI, Factor))
496 return false;
497
498 // Already have a new target specific interleaved store. Erase the old store.
499 DeadInsts.push_back(SI);
500 DeadInsts.push_back(SVI);
501 return true;
502}
503
504bool InterleavedAccessImpl::lowerDeinterleaveIntrinsic(
506 LoadInst *LI = dyn_cast<LoadInst>(DI->getOperand(0));
507
508 if (!LI || !LI->hasOneUse() || !LI->isSimple())
509 return false;
510
511 LLVM_DEBUG(dbgs() << "IA: Found a deinterleave intrinsic: " << *DI << "\n");
512
513 // Try and match this with target specific intrinsics.
514 if (!TLI->lowerDeinterleaveIntrinsicToLoad(DI, LI))
515 return false;
516
517 // We now have a target-specific load, so delete the old one.
518 DeadInsts.push_back(DI);
519 DeadInsts.push_back(LI);
520 return true;
521}
522
523bool InterleavedAccessImpl::lowerInterleaveIntrinsic(
525 if (!II->hasOneUse())
526 return false;
527
528 StoreInst *SI = dyn_cast<StoreInst>(*(II->users().begin()));
529
530 if (!SI || !SI->isSimple())
531 return false;
532
533 LLVM_DEBUG(dbgs() << "IA: Found an interleave intrinsic: " << *II << "\n");
534
535 // Try and match this with target specific intrinsics.
536 if (!TLI->lowerInterleaveIntrinsicToStore(II, SI))
537 return false;
538
539 // We now have a target-specific store, so delete the old one.
540 DeadInsts.push_back(SI);
541 DeadInsts.push_back(II);
542 return true;
543}
544
545bool InterleavedAccessImpl::runOnFunction(Function &F) {
546 // Holds dead instructions that will be erased later.
548 bool Changed = false;
549
550 for (auto &I : instructions(F)) {
551 if (auto *LI = dyn_cast<LoadInst>(&I))
552 Changed |= lowerInterleavedLoad(LI, DeadInsts);
553
554 if (auto *SI = dyn_cast<StoreInst>(&I))
555 Changed |= lowerInterleavedStore(SI, DeadInsts);
556
557 if (auto *II = dyn_cast<IntrinsicInst>(&I)) {
558 // At present, we only have intrinsics to represent (de)interleaving
559 // with a factor of 2.
560 if (II->getIntrinsicID() == Intrinsic::experimental_vector_deinterleave2)
561 Changed |= lowerDeinterleaveIntrinsic(II, DeadInsts);
562 if (II->getIntrinsicID() == Intrinsic::experimental_vector_interleave2)
563 Changed |= lowerInterleaveIntrinsic(II, DeadInsts);
564 }
565 }
566
567 for (auto *I : DeadInsts)
568 I->eraseFromParent();
569
570 return Changed;
571}
Expand Atomic instructions
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
#define LLVM_DEBUG(X)
Definition: Debug.h:101
This file defines the DenseMap class.
static bool runOnFunction(Function &F, bool PostInlining)
expand Expand reduction intrinsics
#define DEBUG_TYPE
static bool isDeInterleaveMask(ArrayRef< int > Mask, unsigned &Factor, unsigned &Index, unsigned MaxFactor, unsigned NumLoadElements)
Check if the mask is a DE-interleave mask for an interleaved load.
static cl::opt< bool > LowerInterleavedAccesses("lower-interleaved-accesses", cl::desc("Enable lowering interleaved accesses to intrinsics"), cl::init(true), cl::Hidden)
static bool isReInterleaveMask(ShuffleVectorInst *SVI, unsigned &Factor, unsigned MaxFactor)
Check if the mask can be used in an interleaved store.
static bool isDeInterleaveMaskOfFactor(ArrayRef< int > Mask, unsigned Factor, unsigned &Index)
Check if the mask is a DE-interleave mask of the given factor Factor like: <Index,...
This file contains the declaration of the InterleavedAccessPass class, its corresponding pass name is...
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
FunctionAnalysisManager FAM
const char LLVMTargetMachineRef TM
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:55
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:59
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:52
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallVector class.
This file describes how to lower LLVM code to machine code.
Target-Independent Code Generator Pass Configuration Options pass.
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:321
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:473
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition: Pass.cpp:269
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
bool empty() const
empty - Check if the array is empty.
Definition: ArrayRef.h:160
InstListType::iterator iterator
Instruction iterators...
Definition: BasicBlock.h:165
BinaryOps getOpcode() const
Definition: InstrTypes.h:486
static BinaryOperator * CreateWithCopiedFlags(BinaryOps Opc, Value *V1, Value *V2, Value *CopyO, const Twine &Name, BasicBlock::iterator InsertBefore)
Definition: InstrTypes.h:298
Represents analyses that only rely on functions' control flow.
Definition: Analysis.h:70
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Definition: DenseMap.h:151
Analysis pass which computes a DominatorTree.
Definition: Dominators.h:279
Legacy analysis pass which computes a DominatorTree.
Definition: Dominators.h:317
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition: Dominators.h:162
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
virtual bool runOnFunction(Function &F)=0
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition: IRBuilder.h:2666
PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM)
A wrapper class for inspecting calls to intrinsic functions.
Definition: IntrinsicInst.h:47
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
Definition: IntrinsicInst.h:54
An instruction for reading from memory.
Definition: Instructions.h:184
bool isSimple() const
Definition: Instructions.h:272
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
virtual void getAnalysisUsage(AnalysisUsage &) const
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
Definition: Pass.cpp:98
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition: Pass.cpp:81
static PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Definition: Constants.cpp:1827
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:109
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:115
void preserveSet()
Mark an analysis set as preserved.
Definition: Analysis.h:144
bool empty() const
Determine if the SetVector is empty or not.
Definition: SetVector.h:93
bool insert(const value_type &X)
Insert a new element into the SetVector.
Definition: SetVector.h:162
This instruction constructs a fixed permutation of two input vectors.
static void getShuffleMask(const Constant *Mask, SmallVectorImpl< int > &Result)
Convert the input shuffle mask operand to a vector of integers.
bool isInterleave(unsigned Factor)
Return if this shuffle interleaves its two input vectors together.
A SetVector that performs no allocations if smaller than a certain size.
Definition: SetVector.h:370
bool empty() const
Definition: SmallVector.h:94
size_t size() const
Definition: SmallVector.h:91
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:586
void push_back(const T &Elt)
Definition: SmallVector.h:426
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
An instruction for storing to memory.
Definition: Instructions.h:317
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:76
virtual const TargetSubtargetInfo * getSubtargetImpl(const Function &) const
Virtual method implemented by subclasses that returns a reference to that target's TargetSubtargetInf...
virtual const TargetLowering * getTargetLowering() const
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
Value * getOperand(unsigned i) const
Definition: User.h:169
Type * getType() const
All values are typed, get the type of this value.
Definition: Value.h:255
bool hasOneUse() const
Return true if there is exactly one use of this value.
Definition: Value.h:434
iterator_range< user_iterator > users()
Definition: Value.h:421
StringRef getName() const
Return a constant reference to the value's name.
Definition: Value.cpp:309
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
Definition: BitmaskEnum.h:121
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void initializeInterleavedAccessPass(PassRegistry &)
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1722
bool RecursivelyDeleteTriviallyDeadInstructions(Value *V, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, std::function< void(Value *)> AboutToDeleteCallback=std::function< void(Value *)>())
If the specified value is a trivially dead instruction, delete it.
Definition: Local.cpp:539
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition: STLExtras.h:2073
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
FunctionPass * createInterleavedAccessPass()
InterleavedAccess Pass - This pass identifies and matches interleaved memory accesses to target speci...