xref: /llvm-project/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp (revision 71acce68daf4987529bf08d81a9c5d396536d7c4)
1 //===----------------------- AlignmentFromAssumptions.cpp -----------------===//
2 //                  Set Load/Store Alignments From Assumptions
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements a ScalarEvolution-based transformation to set
11 // the alignments of load, stores and memory intrinsics based on the truth
12 // expressions of assume intrinsics. The primary motivation is to handle
13 // complex alignment assumptions that apply to vector loads and stores that
14 // appear after vectorization and unrolling.
15 //
16 //===----------------------------------------------------------------------===//
17 
18 #include "llvm/IR/Instructions.h"
19 #include "llvm/InitializePasses.h"
20 #include "llvm/Transforms/Scalar/AlignmentFromAssumptions.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/ADT/Statistic.h"
23 #include "llvm/Analysis/AliasAnalysis.h"
24 #include "llvm/Analysis/AssumptionCache.h"
25 #include "llvm/Analysis/GlobalsModRef.h"
26 #include "llvm/Analysis/LoopInfo.h"
27 #include "llvm/Analysis/ScalarEvolutionExpressions.h"
28 #include "llvm/Analysis/ValueTracking.h"
29 #include "llvm/IR/Constant.h"
30 #include "llvm/IR/Dominators.h"
31 #include "llvm/IR/Instruction.h"
32 #include "llvm/IR/IntrinsicInst.h"
33 #include "llvm/IR/Intrinsics.h"
34 #include "llvm/IR/Module.h"
35 #include "llvm/Support/Debug.h"
36 #include "llvm/Support/raw_ostream.h"
37 #include "llvm/Transforms/Scalar.h"
38 
39 #define AA_NAME "alignment-from-assumptions"
40 #define DEBUG_TYPE AA_NAME
41 using namespace llvm;
42 
43 STATISTIC(NumLoadAlignChanged,
44   "Number of loads changed by alignment assumptions");
45 STATISTIC(NumStoreAlignChanged,
46   "Number of stores changed by alignment assumptions");
47 STATISTIC(NumMemIntAlignChanged,
48   "Number of memory intrinsics changed by alignment assumptions");
49 
50 namespace {
51 struct AlignmentFromAssumptions : public FunctionPass {
52   static char ID; // Pass identification, replacement for typeid
53   AlignmentFromAssumptions() : FunctionPass(ID) {
54     initializeAlignmentFromAssumptionsPass(*PassRegistry::getPassRegistry());
55   }
56 
57   bool runOnFunction(Function &F) override;
58 
59   void getAnalysisUsage(AnalysisUsage &AU) const override {
60     AU.addRequired<AssumptionCacheTracker>();
61     AU.addRequired<ScalarEvolutionWrapperPass>();
62     AU.addRequired<DominatorTreeWrapperPass>();
63 
64     AU.setPreservesCFG();
65     AU.addPreserved<AAResultsWrapperPass>();
66     AU.addPreserved<GlobalsAAWrapperPass>();
67     AU.addPreserved<LoopInfoWrapperPass>();
68     AU.addPreserved<DominatorTreeWrapperPass>();
69     AU.addPreserved<ScalarEvolutionWrapperPass>();
70   }
71 
72   AlignmentFromAssumptionsPass Impl;
73 };
74 }
75 
76 char AlignmentFromAssumptions::ID = 0;
77 static const char aip_name[] = "Alignment from assumptions";
78 INITIALIZE_PASS_BEGIN(AlignmentFromAssumptions, AA_NAME,
79                       aip_name, false, false)
80 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
81 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
82 INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
83 INITIALIZE_PASS_END(AlignmentFromAssumptions, AA_NAME,
84                     aip_name, false, false)
85 
86 FunctionPass *llvm::createAlignmentFromAssumptionsPass() {
87   return new AlignmentFromAssumptions();
88 }
89 
90 // Given an expression for the (constant) alignment, AlignSCEV, and an
91 // expression for the displacement between a pointer and the aligned address,
92 // DiffSCEV, compute the alignment of the displaced pointer if it can be reduced
93 // to a constant. Using SCEV to compute alignment handles the case where
94 // DiffSCEV is a recurrence with constant start such that the aligned offset
95 // is constant. e.g. {16,+,32} % 32 -> 16.
96 static MaybeAlign getNewAlignmentDiff(const SCEV *DiffSCEV,
97                                       const SCEV *AlignSCEV,
98                                       ScalarEvolution *SE) {
99   // DiffUnits = Diff % int64_t(Alignment)
100   const SCEV *DiffUnitsSCEV = SE->getURemExpr(DiffSCEV, AlignSCEV);
101 
102   LLVM_DEBUG(dbgs() << "\talignment relative to " << *AlignSCEV << " is "
103                     << *DiffUnitsSCEV << " (diff: " << *DiffSCEV << ")\n");
104 
105   if (const SCEVConstant *ConstDUSCEV =
106       dyn_cast<SCEVConstant>(DiffUnitsSCEV)) {
107     int64_t DiffUnits = ConstDUSCEV->getValue()->getSExtValue();
108 
109     // If the displacement is an exact multiple of the alignment, then the
110     // displaced pointer has the same alignment as the aligned pointer, so
111     // return the alignment value.
112     if (!DiffUnits)
113       return cast<SCEVConstant>(AlignSCEV)->getValue()->getAlignValue();
114 
115     // If the displacement is not an exact multiple, but the remainder is a
116     // constant, then return this remainder (but only if it is a power of 2).
117     uint64_t DiffUnitsAbs = std::abs(DiffUnits);
118     if (isPowerOf2_64(DiffUnitsAbs))
119       return Align(DiffUnitsAbs);
120   }
121 
122   return None;
123 }
124 
125 // There is an address given by an offset OffSCEV from AASCEV which has an
126 // alignment AlignSCEV. Use that information, if possible, to compute a new
127 // alignment for Ptr.
128 static Align getNewAlignment(const SCEV *AASCEV, const SCEV *AlignSCEV,
129                              const SCEV *OffSCEV, Value *Ptr,
130                              ScalarEvolution *SE) {
131   const SCEV *PtrSCEV = SE->getSCEV(Ptr);
132   // On a platform with 32-bit allocas, but 64-bit flat/global pointer sizes
133   // (*cough* AMDGPU), the effective SCEV type of AASCEV and PtrSCEV
134   // may disagree. Trunc/extend so they agree.
135   PtrSCEV = SE->getTruncateOrZeroExtend(
136       PtrSCEV, SE->getEffectiveSCEVType(AASCEV->getType()));
137   const SCEV *DiffSCEV = SE->getMinusSCEV(PtrSCEV, AASCEV);
138 
139   // On 32-bit platforms, DiffSCEV might now have type i32 -- we've always
140   // sign-extended OffSCEV to i64, so make sure they agree again.
141   DiffSCEV = SE->getNoopOrSignExtend(DiffSCEV, OffSCEV->getType());
142 
143   // What we really want to know is the overall offset to the aligned
144   // address. This address is displaced by the provided offset.
145   DiffSCEV = SE->getAddExpr(DiffSCEV, OffSCEV);
146 
147   LLVM_DEBUG(dbgs() << "AFI: alignment of " << *Ptr << " relative to "
148                     << *AlignSCEV << " and offset " << *OffSCEV
149                     << " using diff " << *DiffSCEV << "\n");
150 
151   if (MaybeAlign NewAlignment = getNewAlignmentDiff(DiffSCEV, AlignSCEV, SE)) {
152     LLVM_DEBUG(dbgs() << "\tnew alignment: " << DebugStr(NewAlignment) << "\n");
153     return *NewAlignment;
154   }
155 
156   if (const SCEVAddRecExpr *DiffARSCEV = dyn_cast<SCEVAddRecExpr>(DiffSCEV)) {
157     // The relative offset to the alignment assumption did not yield a constant,
158     // but we should try harder: if we assume that a is 32-byte aligned, then in
159     // for (i = 0; i < 1024; i += 4) r += a[i]; not all of the loads from a are
160     // 32-byte aligned, but instead alternate between 32 and 16-byte alignment.
161     // As a result, the new alignment will not be a constant, but can still
162     // be improved over the default (of 4) to 16.
163 
164     const SCEV *DiffStartSCEV = DiffARSCEV->getStart();
165     const SCEV *DiffIncSCEV = DiffARSCEV->getStepRecurrence(*SE);
166 
167     LLVM_DEBUG(dbgs() << "\ttrying start/inc alignment using start "
168                       << *DiffStartSCEV << " and inc " << *DiffIncSCEV << "\n");
169 
170     // Now compute the new alignment using the displacement to the value in the
171     // first iteration, and also the alignment using the per-iteration delta.
172     // If these are the same, then use that answer. Otherwise, use the smaller
173     // one, but only if it divides the larger one.
174     MaybeAlign NewAlignment = getNewAlignmentDiff(DiffStartSCEV, AlignSCEV, SE);
175     MaybeAlign NewIncAlignment =
176         getNewAlignmentDiff(DiffIncSCEV, AlignSCEV, SE);
177 
178     LLVM_DEBUG(dbgs() << "\tnew start alignment: " << DebugStr(NewAlignment)
179                       << "\n");
180     LLVM_DEBUG(dbgs() << "\tnew inc alignment: " << DebugStr(NewIncAlignment)
181                       << "\n");
182 
183     if (!NewAlignment || !NewIncAlignment)
184       return Align(1);
185 
186     const Align NewAlign = *NewAlignment;
187     const Align NewIncAlign = *NewIncAlignment;
188     if (NewAlign > NewIncAlign) {
189       LLVM_DEBUG(dbgs() << "\tnew start/inc alignment: "
190                         << DebugStr(NewIncAlign) << "\n");
191       return NewIncAlign;
192     }
193     if (NewIncAlign > NewAlign) {
194       LLVM_DEBUG(dbgs() << "\tnew start/inc alignment: " << DebugStr(NewAlign)
195                         << "\n");
196       return NewAlign;
197     }
198     assert(NewIncAlign == NewAlign);
199     LLVM_DEBUG(dbgs() << "\tnew start/inc alignment: " << DebugStr(NewAlign)
200                       << "\n");
201     return NewAlign;
202   }
203 
204   return Align(1);
205 }
206 
207 bool AlignmentFromAssumptionsPass::extractAlignmentInfo(CallInst *I,
208                                                         unsigned Idx,
209                                                         Value *&AAPtr,
210                                                         const SCEV *&AlignSCEV,
211                                                         const SCEV *&OffSCEV) {
212   Type *Int64Ty = Type::getInt64Ty(I->getContext());
213   OperandBundleUse AlignOB = I->getOperandBundleAt(Idx);
214   if (AlignOB.getTagName() != "align")
215     return false;
216   assert(AlignOB.Inputs.size() >= 2);
217   AAPtr = AlignOB.Inputs[0].get();
218   // TODO: Consider accumulating the offset to the base.
219   AAPtr = AAPtr->stripPointerCastsSameRepresentation();
220   AlignSCEV = SE->getSCEV(AlignOB.Inputs[1].get());
221   AlignSCEV = SE->getTruncateOrZeroExtend(AlignSCEV, Int64Ty);
222   if (AlignOB.Inputs.size() == 3)
223     OffSCEV = SE->getSCEV(AlignOB.Inputs[2].get());
224   else
225     OffSCEV = SE->getZero(Int64Ty);
226   OffSCEV = SE->getTruncateOrZeroExtend(OffSCEV, Int64Ty);
227   return true;
228 }
229 
230 bool AlignmentFromAssumptionsPass::processAssumption(CallInst *ACall,
231                                                      unsigned Idx) {
232   Value *AAPtr;
233   const SCEV *AlignSCEV, *OffSCEV;
234   if (!extractAlignmentInfo(ACall, Idx, AAPtr, AlignSCEV, OffSCEV))
235     return false;
236 
237   // Skip ConstantPointerNull and UndefValue.  Assumptions on these shouldn't
238   // affect other users.
239   if (isa<ConstantData>(AAPtr))
240     return false;
241 
242   const SCEV *AASCEV = SE->getSCEV(AAPtr);
243 
244   // Apply the assumption to all other users of the specified pointer.
245   SmallPtrSet<Instruction *, 32> Visited;
246   SmallVector<Instruction*, 16> WorkList;
247   for (User *J : AAPtr->users()) {
248     if (J == ACall)
249       continue;
250 
251     if (Instruction *K = dyn_cast<Instruction>(J))
252         WorkList.push_back(K);
253   }
254 
255   while (!WorkList.empty()) {
256     Instruction *J = WorkList.pop_back_val();
257     if (LoadInst *LI = dyn_cast<LoadInst>(J)) {
258       if (!isValidAssumeForContext(ACall, J, DT))
259         continue;
260       Align NewAlignment = getNewAlignment(AASCEV, AlignSCEV, OffSCEV,
261                                            LI->getPointerOperand(), SE);
262       if (NewAlignment > LI->getAlign()) {
263         LI->setAlignment(NewAlignment);
264         ++NumLoadAlignChanged;
265       }
266     } else if (StoreInst *SI = dyn_cast<StoreInst>(J)) {
267       if (!isValidAssumeForContext(ACall, J, DT))
268         continue;
269       Align NewAlignment = getNewAlignment(AASCEV, AlignSCEV, OffSCEV,
270                                            SI->getPointerOperand(), SE);
271       if (NewAlignment > SI->getAlign()) {
272         SI->setAlignment(NewAlignment);
273         ++NumStoreAlignChanged;
274       }
275     } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(J)) {
276       if (!isValidAssumeForContext(ACall, J, DT))
277         continue;
278       Align NewDestAlignment =
279           getNewAlignment(AASCEV, AlignSCEV, OffSCEV, MI->getDest(), SE);
280 
281       LLVM_DEBUG(dbgs() << "\tmem inst: " << DebugStr(NewDestAlignment)
282                         << "\n";);
283       if (NewDestAlignment > *MI->getDestAlign()) {
284         MI->setDestAlignment(NewDestAlignment);
285         ++NumMemIntAlignChanged;
286       }
287 
288       // For memory transfers, there is also a source alignment that
289       // can be set.
290       if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI)) {
291         Align NewSrcAlignment =
292             getNewAlignment(AASCEV, AlignSCEV, OffSCEV, MTI->getSource(), SE);
293 
294         LLVM_DEBUG(dbgs() << "\tmem trans: " << DebugStr(NewSrcAlignment)
295                           << "\n";);
296 
297         if (NewSrcAlignment > *MTI->getSourceAlign()) {
298           MTI->setSourceAlignment(NewSrcAlignment);
299           ++NumMemIntAlignChanged;
300         }
301       }
302     }
303 
304     // Now that we've updated that use of the pointer, look for other uses of
305     // the pointer to update.
306     Visited.insert(J);
307     for (User *UJ : J->users()) {
308       Instruction *K = cast<Instruction>(UJ);
309       if (!Visited.count(K))
310         WorkList.push_back(K);
311     }
312   }
313 
314   return true;
315 }
316 
317 bool AlignmentFromAssumptions::runOnFunction(Function &F) {
318   if (skipFunction(F))
319     return false;
320 
321   auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
322   ScalarEvolution *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
323   DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
324 
325   return Impl.runImpl(F, AC, SE, DT);
326 }
327 
328 bool AlignmentFromAssumptionsPass::runImpl(Function &F, AssumptionCache &AC,
329                                            ScalarEvolution *SE_,
330                                            DominatorTree *DT_) {
331   SE = SE_;
332   DT = DT_;
333 
334   bool Changed = false;
335   for (auto &AssumeVH : AC.assumptions())
336     if (AssumeVH) {
337       CallInst *Call = cast<CallInst>(AssumeVH);
338       for (unsigned Idx = 0; Idx < Call->getNumOperandBundles(); Idx++)
339         Changed |= processAssumption(Call, Idx);
340     }
341 
342   return Changed;
343 }
344 
345 PreservedAnalyses
346 AlignmentFromAssumptionsPass::run(Function &F, FunctionAnalysisManager &AM) {
347 
348   AssumptionCache &AC = AM.getResult<AssumptionAnalysis>(F);
349   ScalarEvolution &SE = AM.getResult<ScalarEvolutionAnalysis>(F);
350   DominatorTree &DT = AM.getResult<DominatorTreeAnalysis>(F);
351   if (!runImpl(F, AC, &SE, &DT))
352     return PreservedAnalyses::all();
353 
354   PreservedAnalyses PA;
355   PA.preserveSet<CFGAnalyses>();
356   PA.preserve<ScalarEvolutionAnalysis>();
357   return PA;
358 }
359