Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / include / llvm / Transforms / Vectorize / SLPVectorizer.h
blob9be70557b5b9ece3135f73c37970ba3130f34179
1 //===- SLPVectorizer.h ------------------------------------------*- C++ -*-===//
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 // This pass implements the Bottom Up SLP vectorizer. It detects consecutive
9 // stores that can be put together into vector-stores. Next, it attempts to
10 // construct vectorizable tree using the use-def chains. If a profitable tree
11 // was found, the SLP vectorizer performs vectorization on the tree.
13 // The pass is inspired by the work described in the paper:
14 // "Loop-Aware SLP in GCC" by Ira Rosen, Dorit Nuzman, Ayal Zaks.
16 //===----------------------------------------------------------------------===//
18 #ifndef LLVM_TRANSFORMS_VECTORIZE_SLPVECTORIZER_H
19 #define LLVM_TRANSFORMS_VECTORIZE_SLPVECTORIZER_H
21 #include "llvm/ADT/ArrayRef.h"
22 #include "llvm/ADT/MapVector.h"
23 #include "llvm/ADT/None.h"
24 #include "llvm/ADT/SmallVector.h"
25 #include "llvm/Analysis/AliasAnalysis.h"
26 #include "llvm/IR/PassManager.h"
27 #include "llvm/IR/ValueHandle.h"
29 namespace llvm {
31 class AssumptionCache;
32 class BasicBlock;
33 class CmpInst;
34 class DataLayout;
35 class DemandedBits;
36 class DominatorTree;
37 class Function;
38 class InsertElementInst;
39 class InsertValueInst;
40 class Instruction;
41 class LoopInfo;
42 class OptimizationRemarkEmitter;
43 class PHINode;
44 class ScalarEvolution;
45 class StoreInst;
46 class TargetLibraryInfo;
47 class TargetTransformInfo;
48 class Value;
50 /// A private "module" namespace for types and utilities used by this pass.
51 /// These are implementation details and should not be used by clients.
52 namespace slpvectorizer {
54 class BoUpSLP;
56 } // end namespace slpvectorizer
58 struct SLPVectorizerPass : public PassInfoMixin<SLPVectorizerPass> {
59 using StoreList = SmallVector<StoreInst *, 8>;
60 using StoreListMap = MapVector<Value *, StoreList>;
61 using WeakTrackingVHList = SmallVector<WeakTrackingVH, 8>;
62 using WeakTrackingVHListMap = MapVector<Value *, WeakTrackingVHList>;
64 ScalarEvolution *SE = nullptr;
65 TargetTransformInfo *TTI = nullptr;
66 TargetLibraryInfo *TLI = nullptr;
67 AliasAnalysis *AA = nullptr;
68 LoopInfo *LI = nullptr;
69 DominatorTree *DT = nullptr;
70 AssumptionCache *AC = nullptr;
71 DemandedBits *DB = nullptr;
72 const DataLayout *DL = nullptr;
74 public:
75 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
77 // Glue for old PM.
78 bool runImpl(Function &F, ScalarEvolution *SE_, TargetTransformInfo *TTI_,
79 TargetLibraryInfo *TLI_, AliasAnalysis *AA_, LoopInfo *LI_,
80 DominatorTree *DT_, AssumptionCache *AC_, DemandedBits *DB_,
81 OptimizationRemarkEmitter *ORE_);
83 private:
84 /// Collect store and getelementptr instructions and organize them
85 /// according to the underlying object of their pointer operands. We sort the
86 /// instructions by their underlying objects to reduce the cost of
87 /// consecutive access queries.
88 ///
89 /// TODO: We can further reduce this cost if we flush the chain creation
90 /// every time we run into a memory barrier.
91 void collectSeedInstructions(BasicBlock *BB);
93 /// Try to vectorize a chain that starts at two arithmetic instrs.
94 bool tryToVectorizePair(Value *A, Value *B, slpvectorizer::BoUpSLP &R);
96 /// Try to vectorize a list of operands.
97 /// \param UserCost Cost of the user operations of \p VL if they may affect
98 /// the cost of the vectorization.
99 /// \returns true if a value was vectorized.
100 bool tryToVectorizeList(ArrayRef<Value *> VL, slpvectorizer::BoUpSLP &R,
101 int UserCost = 0, bool AllowReorder = false);
103 /// Try to vectorize a chain that may start at the operands of \p I.
104 bool tryToVectorize(Instruction *I, slpvectorizer::BoUpSLP &R);
106 /// Vectorize the store instructions collected in Stores.
107 bool vectorizeStoreChains(slpvectorizer::BoUpSLP &R);
109 /// Vectorize the index computations of the getelementptr instructions
110 /// collected in GEPs.
111 bool vectorizeGEPIndices(BasicBlock *BB, slpvectorizer::BoUpSLP &R);
113 /// Try to find horizontal reduction or otherwise vectorize a chain of binary
114 /// operators.
115 bool vectorizeRootInstruction(PHINode *P, Value *V, BasicBlock *BB,
116 slpvectorizer::BoUpSLP &R,
117 TargetTransformInfo *TTI);
119 /// Try to vectorize trees that start at insertvalue instructions.
120 bool vectorizeInsertValueInst(InsertValueInst *IVI, BasicBlock *BB,
121 slpvectorizer::BoUpSLP &R);
123 /// Try to vectorize trees that start at insertelement instructions.
124 bool vectorizeInsertElementInst(InsertElementInst *IEI, BasicBlock *BB,
125 slpvectorizer::BoUpSLP &R);
127 /// Try to vectorize trees that start at compare instructions.
128 bool vectorizeCmpInst(CmpInst *CI, BasicBlock *BB, slpvectorizer::BoUpSLP &R);
130 /// Tries to vectorize constructs started from CmpInst, InsertValueInst or
131 /// InsertElementInst instructions.
132 bool vectorizeSimpleInstructions(SmallVectorImpl<WeakVH> &Instructions,
133 BasicBlock *BB, slpvectorizer::BoUpSLP &R);
135 /// Scan the basic block and look for patterns that are likely to start
136 /// a vectorization chain.
137 bool vectorizeChainsInBlock(BasicBlock *BB, slpvectorizer::BoUpSLP &R);
139 bool vectorizeStoreChain(ArrayRef<Value *> Chain, slpvectorizer::BoUpSLP &R,
140 unsigned VecRegSize);
142 bool vectorizeStores(ArrayRef<StoreInst *> Stores, slpvectorizer::BoUpSLP &R);
144 /// The store instructions in a basic block organized by base pointer.
145 StoreListMap Stores;
147 /// The getelementptr instructions in a basic block organized by base pointer.
148 WeakTrackingVHListMap GEPs;
151 } // end namespace llvm
153 #endif // LLVM_TRANSFORMS_VECTORIZE_SLPVECTORIZER_H